| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- * 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>
- namespace OCC {
- /**
- * Tags for checksum header.
- * It's here for being shared between Upload- and Download Job
- */
- static const char checkSumHeaderC[] = "OC-Checksum";
- static const char contentMd5HeaderC[] = "Content-MD5";
- static const char checksumRecalculateOnServer[] = "X-Recalculate-Hash";
- /**
- * @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() override;
- private:
- bool removeRecursively(const QString &path);
- QString _error;
- bool _moveToTrash;
- };
- /**
- * @brief The PropagateLocalMkdir class
- * @ingroup libsync
- */
- class PropagateLocalMkdir : public PropagateItemJob
- {
- Q_OBJECT
- public:
- PropagateLocalMkdir(OwncloudPropagator *propagator, const SyncFileItemPtr &item)
- : PropagateItemJob(propagator, item)
- , _deleteExistingFile(false)
- {
- }
- void start() override;
- /**
- * Whether an existing file with the same name may be deleted before
- * creating the directory.
- *
- * Default: false.
- */
- void setDeleteExistingFile(bool enabled);
- private:
- void startLocalMkdir();
- void startDemanglingName(const QString &parentPath);
- bool _deleteExistingFile;
- };
- /**
- * @brief The PropagateLocalRename class
- * @ingroup libsync
- */
- class PropagateLocalRename : public PropagateItemJob
- {
- Q_OBJECT
- public:
- PropagateLocalRename(OwncloudPropagator *propagator, const SyncFileItemPtr &item)
- : PropagateItemJob(propagator, item)
- {
- }
- void start() override;
- JobParallelism parallelism() override { return _item->isDirectory() ? WaitForFinished : FullParallelism; }
- };
- }
|