fe94c3609e
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
97 lines
3.3 KiB
C++
97 lines
3.3 KiB
C++
// SPDX-FileCopyrightText: 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include "DataMigrationTask.h"
|
|
|
|
#include "FileSystem.h"
|
|
|
|
#include <QDirIterator>
|
|
#include <QFileInfo>
|
|
#include <QMap>
|
|
|
|
#include <QtConcurrent>
|
|
|
|
DataMigrationTask::DataMigrationTask(QObject* parent,
|
|
const QString& sourcePath,
|
|
const QString& targetPath,
|
|
const IPathMatcher::Ptr pathMatcher)
|
|
: Task(parent), m_sourcePath(sourcePath), m_targetPath(targetPath), m_pathMatcher(pathMatcher), m_copy(sourcePath, targetPath)
|
|
{
|
|
m_copy.matcher(m_pathMatcher.get()).whitelist(true);
|
|
}
|
|
|
|
void DataMigrationTask::executeTask()
|
|
{
|
|
setStatus(tr("Scanning files..."));
|
|
|
|
// 1. Scan
|
|
// Check how many files we gotta copy
|
|
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [&] {
|
|
return m_copy(true); // dry run to collect amount of files
|
|
});
|
|
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::finished, this, &DataMigrationTask::dryRunFinished);
|
|
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::canceled, this, &DataMigrationTask::dryRunAborted);
|
|
m_copyFutureWatcher.setFuture(m_copyFuture);
|
|
}
|
|
|
|
void DataMigrationTask::dryRunFinished()
|
|
{
|
|
disconnect(&m_copyFutureWatcher, &QFutureWatcher<bool>::finished, this, &DataMigrationTask::dryRunFinished);
|
|
disconnect(&m_copyFutureWatcher, &QFutureWatcher<bool>::canceled, this, &DataMigrationTask::dryRunAborted);
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
|
if (!m_copyFuture.isValid() || !m_copyFuture.result()) {
|
|
#else
|
|
if (!m_copyFuture.result()) {
|
|
#endif
|
|
emitFailed(tr("Failed to scan source path."));
|
|
return;
|
|
}
|
|
|
|
// 2. Copy
|
|
// Actually copy all files now.
|
|
m_toCopy = m_copy.totalCopied();
|
|
connect(&m_copy, &FS::copy::fileCopied, [&, this](const QString& relativeName) {
|
|
QString shortenedName = relativeName;
|
|
// shorten the filename to hopefully fit into one line
|
|
if (shortenedName.length() > 50)
|
|
shortenedName = relativeName.left(20) + "…" + relativeName.right(29);
|
|
setProgress(m_copy.totalCopied(), m_toCopy);
|
|
setStatus(tr("Copying %1…").arg(shortenedName));
|
|
});
|
|
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [&] {
|
|
return m_copy(false); // actually copy now
|
|
});
|
|
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::finished, this, &DataMigrationTask::copyFinished);
|
|
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::canceled, this, &DataMigrationTask::copyAborted);
|
|
m_copyFutureWatcher.setFuture(m_copyFuture);
|
|
}
|
|
|
|
void DataMigrationTask::dryRunAborted()
|
|
{
|
|
emitFailed(tr("Aborted"));
|
|
}
|
|
|
|
void DataMigrationTask::copyFinished()
|
|
{
|
|
disconnect(&m_copyFutureWatcher, &QFutureWatcher<bool>::finished, this, &DataMigrationTask::copyFinished);
|
|
disconnect(&m_copyFutureWatcher, &QFutureWatcher<bool>::canceled, this, &DataMigrationTask::copyAborted);
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
|
if (!m_copyFuture.isValid() || !m_copyFuture.result()) {
|
|
#else
|
|
if (!m_copyFuture.result()) {
|
|
#endif
|
|
emitFailed(tr("Some paths could not be copied!"));
|
|
return;
|
|
}
|
|
|
|
emitSucceeded();
|
|
}
|
|
|
|
void DataMigrationTask::copyAborted()
|
|
{
|
|
emitFailed(tr("Aborted"));
|
|
}
|