mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-23 06:00:27 +03:00
83 lines
2.8 KiB
C++
83 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
* Copyright (C) by Jocelyn Turcotte <jturcotte@woboq.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
|
|
* the Free Software Foundation; either version 2 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.
|
|
*/
|
|
|
|
#ifndef SYNCFILESTATUSTRACKER_H
|
|
#define SYNCFILESTATUSTRACKER_H
|
|
|
|
// #include "ownsql.h"
|
|
#include "syncfileitem.h"
|
|
#include "syncfilestatus.h"
|
|
#include <map>
|
|
#include <QSet>
|
|
|
|
namespace OCC {
|
|
|
|
class SyncEngine;
|
|
|
|
/**
|
|
* @brief Takes care of tracking the status of individual files as they
|
|
* go through the SyncEngine, to be reported as overlay icons in the shell.
|
|
* @ingroup libsync
|
|
*/
|
|
class OWNCLOUDSYNC_EXPORT SyncFileStatusTracker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SyncFileStatusTracker(SyncEngine *syncEngine);
|
|
SyncFileStatus fileStatus(const QString &relativePath);
|
|
|
|
public slots:
|
|
void slotPathTouched(const QString &fileName);
|
|
|
|
signals:
|
|
void fileStatusChanged(const QString &systemFileName, SyncFileStatus fileStatus);
|
|
|
|
private slots:
|
|
void slotAboutToPropagate(SyncFileItemVector &items);
|
|
void slotItemCompleted(const SyncFileItemPtr &item);
|
|
void slotSyncFinished();
|
|
void slotSyncEngineRunningChanged();
|
|
|
|
private:
|
|
struct PathComparator {
|
|
bool operator()( const QString& lhs, const QString& rhs ) const;
|
|
};
|
|
typedef std::map<QString, SyncFileStatus::SyncFileStatusTag, PathComparator> ProblemsMap;
|
|
SyncFileStatus::SyncFileStatusTag lookupProblem(const QString &pathToMatch, const ProblemsMap &problemMap);
|
|
|
|
enum SharedFlag { UnknownShared,
|
|
NotShared,
|
|
Shared };
|
|
enum PathKnownFlag { PathUnknown = 0,
|
|
PathKnown };
|
|
SyncFileStatus resolveSyncAndErrorStatus(const QString &relativePath, SharedFlag sharedState, PathKnownFlag isPathKnown = PathKnown);
|
|
|
|
void invalidateParentPaths(const QString &path);
|
|
QString getSystemDestination(const QString &relativePath);
|
|
void incSyncCountAndEmitStatusChanged(const QString &relativePath, SharedFlag sharedState);
|
|
void decSyncCountAndEmitStatusChanged(const QString &relativePath, SharedFlag sharedState);
|
|
|
|
SyncEngine *_syncEngine;
|
|
|
|
ProblemsMap _syncProblems;
|
|
QSet<QString> _dirtyPaths;
|
|
// Counts the number direct children currently being synced (has unfinished propagation jobs).
|
|
// We'll show a file/directory as SYNC as long as its sync count is > 0.
|
|
// A directory that starts/ends propagation will in turn increase/decrease its own parent by 1.
|
|
QHash<QString, int> _syncCount;
|
|
};
|
|
}
|
|
|
|
#endif
|