65 lines
1.7 KiB
C
65 lines
1.7 KiB
C
|
/*
|
||
|
* Copyright (C) 2022, KylinSoft Co., Ltd.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
* Authors: iaom <zhangpengfei@kylinos.cn>
|
||
|
*
|
||
|
*/
|
||
|
#ifndef FILESYSTEMWATCHERPRIVATE_H
|
||
|
#define FILESYSTEMWATCHERPRIVATE_H
|
||
|
|
||
|
#endif // FILESYSTEMWATCHERPRIVATE_H
|
||
|
#include "file-system-watcher.h"
|
||
|
|
||
|
#include <QHash>
|
||
|
#include <QByteArray>
|
||
|
#include <QSocketNotifier>
|
||
|
#include <QThreadPool>
|
||
|
|
||
|
#include "traverse-bfs.h"
|
||
|
|
||
|
namespace UkuiSearch {
|
||
|
class FileSystemWatcherPrivate
|
||
|
{
|
||
|
friend class FileSystemWatcher;
|
||
|
public:
|
||
|
FileSystemWatcherPrivate(FileSystemWatcher *parent);
|
||
|
~FileSystemWatcherPrivate();
|
||
|
|
||
|
void addWatch(const QStringList &pathList);
|
||
|
QStringList removeWatch(const QString &path);
|
||
|
QString removeWatch(int wd);
|
||
|
|
||
|
private:
|
||
|
void init();
|
||
|
void traverse(QStringList pathList);
|
||
|
void addWatch(const QString &path);
|
||
|
|
||
|
FileSystemWatcher::WatchEvents m_watchEvents;
|
||
|
FileSystemWatcher::WatchFlags m_watchFlags;
|
||
|
|
||
|
int m_inotifyFd = -1;
|
||
|
QSocketNotifier* m_notifier = nullptr;
|
||
|
// wd -> url
|
||
|
QHash<int, QString> m_watchPathHash;
|
||
|
|
||
|
QThreadPool *m_pool = nullptr;
|
||
|
FileSystemWatcher *q = nullptr;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
}
|