2014-07-12 16:58:23 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDir>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QFileSystemWatcher>
|
2015-08-18 01:25:24 +01:00
|
|
|
#include "pathmatcher/IPathMatcher.h"
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class RecursiveFileSystemWatcher : public QObject {
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
RecursiveFileSystemWatcher(QObject* parent);
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void setRootDir(const QDir& root);
|
|
|
|
QDir rootDir() const { return m_root; }
|
2018-07-15 13:51:05 +01:00
|
|
|
|
|
|
|
// WARNING: setting this to true may be bad for performance
|
|
|
|
void setWatchFiles(const bool watchFiles);
|
2023-08-02 17:35:35 +01:00
|
|
|
bool watchFiles() const { return m_watchFiles; }
|
|
|
|
|
|
|
|
void setMatcher(IPathMatcher::Ptr matcher) { m_matcher = matcher; }
|
|
|
|
|
|
|
|
QStringList files() const { return m_files; }
|
|
|
|
|
|
|
|
signals:
|
2018-07-15 13:51:05 +01:00
|
|
|
void filesChanged();
|
2023-08-02 17:35:35 +01:00
|
|
|
void fileChanged(const QString& path);
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public slots:
|
2018-07-15 13:51:05 +01:00
|
|
|
void enable();
|
|
|
|
void disable();
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
QDir m_root;
|
|
|
|
bool m_watchFiles = false;
|
|
|
|
bool m_isEnabled = false;
|
|
|
|
IPathMatcher::Ptr m_matcher;
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QFileSystemWatcher* m_watcher;
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList m_files;
|
2023-08-02 17:35:35 +01:00
|
|
|
void setFiles(const QStringList& files);
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void addFilesToWatcherRecursive(const QDir& dir);
|
|
|
|
QStringList scanRecursive(const QDir& dir);
|
2014-07-12 16:58:23 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private slots:
|
|
|
|
void fileChange(const QString& path);
|
|
|
|
void directoryChange(const QString& path);
|
2014-07-12 16:58:23 +01:00
|
|
|
};
|