nextcloud-desktop/src/mirall/owncloudpropagator.h

102 lines
3.1 KiB
C
Raw Normal View History

/*
* Copyright (C) by Olivier Goffart <ogoffart@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.
*/
#ifndef OWNCLOUDPROPAGATOR_H
#define OWNCLOUDPROPAGATOR_H
#include <neon/ne_request.h>
#include <QHash>
2013-05-16 15:54:22 +04:00
#include <QObject>
2013-08-14 21:59:16 +04:00
#include <qelapsedtimer.h>
#include "syncfileitem.h"
2013-08-14 21:59:16 +04:00
#include "progressdispatcher.h"
struct ne_session_s;
struct ne_decompress_s;
namespace Mirall {
class SyncJournalDb;
2013-05-16 15:54:22 +04:00
class OwncloudPropagator : public QObject {
Q_OBJECT
2013-08-14 17:36:34 +04:00
ne_session_s *_session;
QString _localDir; // absolute path to the local directory. ends with '/'
QString _remoteDir; // path to the root of the remote. ends with '/'
SyncJournalDb *_journal;
QString _errorString;
SyncFileItem::Status _status;
bool check_neon_session();
csync_instructions_e localRemove(const SyncFileItem &);
csync_instructions_e localMkdir(const SyncFileItem &);
csync_instructions_e remoteRemove(const SyncFileItem &);
csync_instructions_e remoteMkdir(const SyncFileItem &);
csync_instructions_e downloadFile(const SyncFileItem &, bool isConflict = false);
csync_instructions_e uploadFile(const SyncFileItem &);
csync_instructions_e remoteRename(const SyncFileItem &);
2013-05-04 17:32:11 +04:00
void updateMTimeAndETag(const char *uri, time_t);
/* fetch the error code and string from the session
* updates _status, _httpStatusCode and _errorString. and httpStatusCode
* Returns true if there was an error.
*/
bool updateErrorFromSession(int neon_code = 0, ne_request *req = 0, int *httpStatusCode = 0);
2013-08-14 21:59:16 +04:00
QElapsedTimer _lastTime;
quint64 _lastProgress;
quint64 _chunked_total_size;
quint64 _chunked_done;
QString _currentFile;
2013-08-14 21:59:16 +04:00
static void notify_status_cb (void *userdata, ne_session_status status,
const ne_session_status_info *info);
public:
OwncloudPropagator(ne_session_s *session, const QString &localDir, const QString &remoteDir,
SyncJournalDb *progressDb, QAtomicInt *abortRequested)
: _session(session)
, _localDir(localDir)
, _remoteDir(remoteDir)
, _journal(progressDb)
, _abortRequested(abortRequested)
2013-05-08 15:30:30 +04:00
{
if (!localDir.endsWith(QChar('/'))) _localDir+='/';
if (!remoteDir.endsWith(QChar('/'))) _remoteDir+='/';
}
void propagate(const SyncFileItem &);
QByteArray _etag;
2013-05-16 15:54:22 +04:00
2013-08-14 21:59:16 +04:00
int _downloadLimit;
int _uploadLimit;
QAtomicInt *_abortRequested; // boolean set by the main thread to abort.
2013-05-16 15:54:22 +04:00
signals:
void completed(const SyncFileItem &);
2013-08-14 21:59:16 +04:00
void progress(Progress::Kind, const QString &filename, quint64 bytes, quint64 total);
};
}
#endif