nextcloud-desktop/src/mirall/syncengine.h

166 lines
4.7 KiB
C
Raw Normal View History

/*
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
* 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
* 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.
*/
2013-02-13 20:13:25 +04:00
#ifndef CSYNCTHREAD_H
#define CSYNCTHREAD_H
2012-03-01 19:11:56 +04:00
#include <stdint.h>
#include <QMutex>
#include <QThread>
#include <QString>
2013-05-16 15:54:22 +04:00
#include <qelapsedtimer.h>
2012-04-14 14:16:30 +04:00
#include <csync.h>
2013-01-15 23:41:52 +04:00
#include "mirall/syncfileitem.h"
#include "mirall/progressdispatcher.h"
#include "mirall/utility.h"
2013-01-15 23:41:52 +04:00
class QProcess;
namespace Mirall {
2013-10-03 22:00:58 +04:00
class SyncJournalFileRecord;
class SyncJournalDb;
2013-05-16 15:54:22 +04:00
class OwncloudPropagator;
2014-04-25 01:57:42 +04:00
void OWNCLOUDSYNC_EXPORT csyncLogCatcher(int /*verbosity*/,
2013-09-24 17:56:03 +04:00
const char */*function*/,
const char *buffer,
void */*userdata*/);
2013-05-16 15:54:22 +04:00
class OWNCLOUDSYNC_EXPORT SyncEngine : public QObject
{
Q_OBJECT
public:
SyncEngine(CSYNC *, const QString &localPath, const QString &remoteURL, const QString &remotePath, SyncJournalDb *journal);
~SyncEngine();
static QString csyncErrorToString( CSYNC_STATUS);
Q_INVOKABLE void startSync();
Q_INVOKABLE void setNetworkLimits();
/* Abort the sync. Called from the main thread */
void abort();
2014-03-28 12:39:32 +04:00
Utility::StopWatch &stopWatch() { return _stopWatch; }
signals:
void csyncError( const QString& );
void csyncUnavailable();
// before actual syncing (after update+reconcile) for each item
2014-03-27 18:19:02 +04:00
void syncItemDiscovered(const SyncFileItem&);
// after the above signals. with the items that actually need propagating
void aboutToPropagate(const SyncFileItemVector&);
// after each job (successful or not)
void jobCompleted(const SyncFileItem&);
// after sync is done
2013-01-15 23:41:52 +04:00
void treeWalkResult(const SyncFileItemVector&);
void transmissionProgress( const Progress::Info& progress );
void csyncStateDbFile( const QString& );
void wipeDb();
void finished();
void started();
void aboutToRemoveAllFiles(SyncFileItem::Direction direction, bool *cancel);
2013-05-16 15:54:22 +04:00
private slots:
void slotJobCompleted(const SyncFileItem& item);
void slotFinished();
void slotProgress(const SyncFileItem& item, quint64 curent);
void slotAdjustTotalTransmissionSize(qint64 change);
void slotUpdateFinished(int updateResult);
2013-05-16 15:54:22 +04:00
private:
void handleSyncError(CSYNC *ctx, const char *state);
2013-01-15 23:41:52 +04:00
static int treewalkLocal( TREE_WALK_FILE*, void *);
static int treewalkRemote( TREE_WALK_FILE*, void *);
int treewalkFile( TREE_WALK_FILE*, bool );
bool checkBlacklisting( SyncFileItem *item );
2013-01-15 23:41:52 +04:00
// cleanup and emit the finished signal
void finalize();
static bool _syncRunning; //true when one sync is running somewhere (for debugging)
2013-01-15 23:41:52 +04:00
SyncFileItemVector _syncedItems;
CSYNC *_csync_ctx;
bool _needsUpdate;
QString _localPath;
QString _remoteUrl;
QString _remotePath;
2013-10-03 22:00:58 +04:00
SyncJournalDb *_journal;
2013-05-16 15:54:22 +04:00
QScopedPointer <OwncloudPropagator> _propagator;
QString _lastDeleted; // if the last item was a path and it has been deleted
QHash <QString, QString> _seenFiles;
QThread _thread;
2013-05-16 15:54:22 +04:00
Progress::Info _progressInfo;
Utility::StopWatch _stopWatch;
// maps the origin and the target of the folders that have been renamed
QHash<QString, QString> _renamedFolders;
QString adjustRenamedPath(const QString &original);
bool _hasFiles; // true if there is at least one file that is not ignored or removed
2013-08-14 21:59:16 +04:00
int _downloadLimit;
int _uploadLimit;
};
class UpdateJob : public QObject {
Q_OBJECT
CSYNC *_csync_ctx;
csync_log_callback _log_callback;
int _log_level;
void* _log_userdata;
Q_INVOKABLE void start() {
csync_set_log_callback(_log_callback);
csync_set_log_level(_log_level);
csync_set_log_userdata(_log_userdata);
emit finished(csync_update(_csync_ctx));
deleteLater();
}
public:
explicit UpdateJob(CSYNC *ctx, QObject* parent = 0)
: QObject(parent), _csync_ctx(ctx) {
// We need to forward the log property as csync uses thread local
// and updates run in another thread
_log_callback = csync_get_log_callback();
_log_level = csync_get_log_level();
_log_userdata = csync_get_log_userdata();
}
signals:
void finished(int result);
};
}
#endif // CSYNCTHREAD_H