nextcloud-desktop/src/mirall/folder.h

209 lines
4.6 KiB
C
Raw Normal View History

2011-04-06 13:48:02 +04:00
/*
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
2013-07-22 22:27:42 +04:00
* Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
2011-04-06 13:48:02 +04:00
*
* 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.
*/
2011-02-17 02:21:45 +03:00
#ifndef MIRALL_FOLDER_H
#define MIRALL_FOLDER_H
2013-07-22 22:27:42 +04:00
#include "mirall/syncresult.h"
#include "mirall/progressdispatcher.h"
#include "mirall/syncjournaldb.h"
#include "mirall/clientproxy.h"
#include "mirall/syncfilestatus.h"
#include <csync.h>
2013-07-22 22:27:42 +04:00
#include <QDir>
#include <QHash>
2011-02-17 02:21:45 +03:00
#include <QObject>
#include <QStringList>
2011-02-17 02:21:45 +03:00
2013-07-22 22:27:42 +04:00
#include <QDebug>
#include <QTimer>
2013-08-08 16:30:45 +04:00
#include <qelapsedtimer.h>
2011-04-08 13:36:53 +04:00
class QFileSystemWatcher;
class QThread;
2011-02-17 02:21:45 +03:00
namespace Mirall {
class SyncEngine;
2011-02-17 02:21:45 +03:00
class FolderWatcher;
2014-07-11 00:58:58 +04:00
class Folder : public QObject
2011-02-17 02:21:45 +03:00
{
Q_OBJECT
public:
Folder(const QString&, const QString&, const QString& , QObject*parent = 0L);
2013-07-22 22:27:42 +04:00
~Folder();
2011-02-17 02:21:45 +03:00
typedef QHash<QString, Folder*> Map;
typedef QHashIterator<QString, Folder*> MapIterator;
2011-04-06 11:52:02 +04:00
/**
* alias or nickname
*/
QString alias() const;
/**
* local folder path
*/
QString path() const;
2013-10-21 23:42:52 +04:00
2013-07-22 22:27:42 +04:00
/**
* remote folder path
*/
2013-10-21 23:42:52 +04:00
QString remotePath() const;
/**
* remote folder path with server url
*/
QUrl remoteUrl() const;
/**
* local folder path with native separators
*/
QString nativePath() const;
2013-07-22 22:27:42 +04:00
2011-10-13 18:41:24 +04:00
/**
* switch sync on or off
* If the sync is switched off, the startSync method is not going to
* be called.
*/
void setSyncEnabled( bool );
bool syncEnabled() const;
void prepareToSync();
/**
* True if the folder is busy and can't initiate
* a synchronization
*/
2013-07-22 22:27:42 +04:00
virtual bool isBusy() const;
2011-09-27 10:15:30 +04:00
2011-10-13 18:41:24 +04:00
/**
* return the last sync result with error message and status
*/
SyncResult syncResult() const;
/**
* set the config file name.
*/
void setConfigFile( const QString& );
QString configFile();
/**
* This is called if the sync folder definition is removed. Do cleanups here.
*/
virtual void wipe();
void setSyncState(SyncResult::Status state);
void setDirtyNetworkLimits();
// Used by the Socket API
SyncJournalDb *journalDb() { return &_journal; }
CSYNC *csyncContext() { return _csync_ctx; }
signals:
void syncStateChange();
void syncStarted();
void syncFinished(const SyncResult &result);
void scheduleToSync( const QString& );
2011-11-04 14:41:49 +04:00
public slots:
/**
* terminate the current sync run
*/
void slotTerminateSync();
2013-07-22 22:27:42 +04:00
void slotAboutToRemoveAllFiles(SyncFileItem::Direction, bool*);
2011-02-17 02:21:45 +03:00
2013-07-22 22:27:42 +04:00
/**
* Starts a sync operation
*
* If the list of changed files is known, it is passed.
*/
void startSync(const QStringList &pathList = QStringList());
void setProxyDirty(bool value);
bool proxyDirty();
int slotWipeBlacklist();
2013-12-03 17:47:32 +04:00
int blackListEntryCount();
2013-07-22 22:27:42 +04:00
private slots:
void slotSyncStarted();
void slotSyncError(const QString& );
2013-07-22 22:27:42 +04:00
void slotCsyncUnavailable();
void slotSyncFinished();
2013-07-22 22:27:42 +04:00
void slotTransmissionProgress(const Progress::Info& pi);
void slotJobCompleted(const SyncFileItem&);
void slotPollTimerTimeout();
void etagRetreived(const QString &);
void slotNetworkUnavailable();
2013-07-22 22:27:42 +04:00
void slotThreadTreeWalkResult(const SyncFileItemVector& );
void slotEmitFinishedDelayed();
private:
2013-07-22 22:27:42 +04:00
bool init();
void setIgnoredFiles();
void bubbleUpSyncResult();
2013-07-22 22:27:42 +04:00
void checkLocalPath();
void createGuiLog(const QString& filename, SyncFileStatus status, int count,
const QString& renameTarget = QString::null );
2011-11-04 14:41:49 +04:00
QString _path;
2013-10-21 23:42:52 +04:00
QString _remotePath;
2011-11-04 14:41:49 +04:00
QString _alias;
QString _configFile;
bool _enabled;
2013-07-22 22:27:42 +04:00
SyncResult _syncResult;
QScopedPointer<SyncEngine> _engine;
2013-07-22 22:27:42 +04:00
QStringList _errors;
bool _csyncError;
bool _csyncUnavail;
bool _wipeDb;
bool _proxyDirty;
QTimer _pollTimer;
QString _lastEtag;
2013-08-08 16:30:45 +04:00
QElapsedTimer _timeSinceLastSync;
2013-07-22 22:27:42 +04:00
SyncJournalDb _journal;
ClientProxy _clientProxy;
2013-07-22 22:27:42 +04:00
CSYNC *_csync_ctx;
2011-02-17 02:21:45 +03:00
};
}
#endif