mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 05:13:04 +03:00
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) by Olivier Goffart <ogoffart@owncloud.com>
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "owncloudpropagator.h"
|
|
#include <QFile>
|
|
#include <qdebug.h>
|
|
|
|
namespace OCC {
|
|
|
|
/**
|
|
* Tags for checksum headers.
|
|
* They are here for being shared between Upload- and Download Job
|
|
*/
|
|
|
|
// the header itself
|
|
static const char checkSumHeaderC[] = "OC-Checksum";
|
|
// ...and it's values
|
|
static const char checkSumMD5C[] = "MD5";
|
|
static const char checkSumSHA1C[] = "SHA1";
|
|
static const char checkSumAdlerC[] = "Adler32";
|
|
|
|
/**
|
|
* @brief Declaration of the other propagation jobs
|
|
* @ingroup libsync
|
|
*/
|
|
class PropagateLocalRemove : public PropagateItemJob {
|
|
Q_OBJECT
|
|
public:
|
|
PropagateLocalRemove (OwncloudPropagator* propagator,const SyncFileItemPtr& item) : PropagateItemJob(propagator, item) {}
|
|
void start() Q_DECL_OVERRIDE;
|
|
private:
|
|
bool removeRecursively(const QString &path);
|
|
QString _error;
|
|
};
|
|
|
|
/**
|
|
* @brief The PropagateLocalMkdir class
|
|
* @ingroup libsync
|
|
*/
|
|
class PropagateLocalMkdir : public PropagateItemJob {
|
|
Q_OBJECT
|
|
public:
|
|
PropagateLocalMkdir (OwncloudPropagator* propagator,const SyncFileItemPtr& item) : PropagateItemJob(propagator, item) {}
|
|
void start() Q_DECL_OVERRIDE;
|
|
|
|
};
|
|
|
|
/**
|
|
* @brief The PropagateLocalRename class
|
|
* @ingroup libsync
|
|
*/
|
|
class PropagateLocalRename : public PropagateItemJob {
|
|
Q_OBJECT
|
|
public:
|
|
PropagateLocalRename (OwncloudPropagator* propagator,const SyncFileItemPtr& item) : PropagateItemJob(propagator, item) {}
|
|
void start() Q_DECL_OVERRIDE;
|
|
JobParallelism parallelism() Q_DECL_OVERRIDE { return WaitForFinishedInParentDirectory; }
|
|
};
|
|
|
|
|
|
}
|