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);
|
|
|
|
~FolderWatcherPrivate();
|
|
|
|
|
|
|
|
void addPath(const QString &path);
|
|
|
|
void removePath(const QString &);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotReceivedNotification(int fd);
|
|
|
|
void slotAddFolderRecursive(const QString &path);
|
|
|
|
|
2018-10-12 12:03:10 +03:00
|
|
|
/// Remove all half-built renames. Called by timer when idle for a bit.
|
|
|
|
void wipePotentialRenames();
|
|
|
|
|
2014-01-23 16:16:08 +04:00
|
|
|
protected:
|
2018-10-12 12:03:10 +03:00
|
|
|
struct Rename
|
|
|
|
{
|
|
|
|
QString from;
|
|
|
|
QString to;
|
|
|
|
};
|
|
|
|
|
2014-01-23 16:16:08 +04:00
|
|
|
bool findFoldersBelow(const QDir &dir, QStringList &fullList);
|
|
|
|
void inotifyRegisterPath(const QString &path);
|
|
|
|
|
2018-10-12 12:03:10 +03:00
|
|
|
/// Adjusts the paths in _watches when directories are renamed.
|
|
|
|
void applyDirectoryRename(const Rename &rename);
|
|
|
|
|
2014-01-23 16:16:08 +04:00
|
|
|
private:
|
|
|
|
FolderWatcher *_parent;
|
|
|
|
|
|
|
|
QString _folder;
|
|
|
|
QHash<int, QString> _watches;
|
|
|
|
QScopedPointer<QSocketNotifier> _socket;
|
|
|
|
int _fd;
|
2018-10-12 12:03:10 +03:00
|
|
|
|
|
|
|
/** Maps inotify event cookie to rename data.
|
|
|
|
*
|
|
|
|
* For moves two independent inotify events will be seen and they
|
|
|
|
* can be matched via the event cookie. This field stores partial
|
|
|
|
* information as it is received. When both sides have arrived,
|
|
|
|
* directory moves can be processed with applyDirectoryRename().
|
|
|
|
*
|
|
|
|
* If we don't receive both sides (if something moves away from
|
|
|
|
* the watched folder tree, or into it from an unwatched location)
|
|
|
|
* the _wipePotentialRenamesSoon will eventually discard the
|
|
|
|
* incomplete data.
|
|
|
|
*
|
|
|
|
* These events can even be emitted by different watches if the
|
|
|
|
* directory parent folder changed.
|
|
|
|
*/
|
|
|
|
QHash<quint32, Rename> _potentialRenames;
|
|
|
|
|
|
|
|
QTimer *_wipePotentialRenamesSoon;
|
2014-01-23 16:16:08 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|