2014-01-23 16:16:08 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-01-23 16:16:08 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MIRALL_FOLDERWATCHER_LINUX_H
|
|
|
|
#define MIRALL_FOLDERWATCHER_LINUX_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QSocketNotifier>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QDir>
|
|
|
|
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "folderwatcher.h"
|
2014-01-23 16:16:08 +04:00
|
|
|
|
2018-10-12 12:03:10 +03:00
|
|
|
class QTimer;
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2015-06-26 18:07:47 +03:00
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief Linux (inotify) API implementation of FolderWatcher
|
|
|
|
* @ingroup gui
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2014-01-23 16:16:08 +04:00
|
|
|
class FolderWatcherPrivate : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-08-12 18:19:49 +03:00
|
|
|
FolderWatcherPrivate() = default;
|
2014-01-23 16:16:08 +04:00
|
|
|
FolderWatcherPrivate(FolderWatcher *p, const QString &path);
|
2021-08-17 13:39:31 +03:00
|
|
|
~FolderWatcherPrivate() override;
|
2014-01-23 16:16:08 +04:00
|
|
|
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] int testWatchCount() const { return _pathToWatch.size(); }
|
2014-01-23 16:16:08 +04:00
|
|
|
|
2019-07-11 14:31:54 +03:00
|
|
|
/// On linux the watcher is ready when the ctor finished.
|
|
|
|
bool _ready = true;
|
|
|
|
|
2014-01-23 16:16:08 +04:00
|
|
|
protected slots:
|
|
|
|
void slotReceivedNotification(int fd);
|
|
|
|
void slotAddFolderRecursive(const QString &path);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool findFoldersBelow(const QDir &dir, QStringList &fullList);
|
|
|
|
void inotifyRegisterPath(const QString &path);
|
2019-03-05 15:20:09 +03:00
|
|
|
void removeFoldersBelow(const QString &path);
|
2018-10-12 12:03:10 +03:00
|
|
|
|
2014-01-23 16:16:08 +04:00
|
|
|
private:
|
2023-02-06 11:14:48 +03:00
|
|
|
FolderWatcher *_parent = nullptr;
|
2014-01-23 16:16:08 +04:00
|
|
|
|
|
|
|
QString _folder;
|
2019-03-05 15:20:09 +03:00
|
|
|
QHash<int, QString> _watchToPath;
|
|
|
|
QMap<QString, int> _pathToWatch;
|
2014-01-23 16:16:08 +04:00
|
|
|
QScopedPointer<QSocketNotifier> _socket;
|
2023-02-06 11:14:48 +03:00
|
|
|
int _fd = 0;
|
2014-01-23 16:16:08 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|