7cf2c3be0f
This allows us to emit all the necessary stuff when we're finished in the case of starting a task with no subtasks. In particular, this caused the mod updater to not work properly :) Signed-off-by: flow <flowlnlnln@gmail.com>
152 lines
3.6 KiB
C++
152 lines
3.6 KiB
C++
#include "ConcurrentTask.h"
|
|
|
|
#include <QDebug>
|
|
#include <QCoreApplication>
|
|
|
|
ConcurrentTask::ConcurrentTask(QObject* parent, QString task_name, int max_concurrent)
|
|
: Task(parent), m_name(task_name), m_total_max_size(max_concurrent)
|
|
{ setObjectName(task_name); }
|
|
|
|
ConcurrentTask::~ConcurrentTask()
|
|
{
|
|
for (auto task : m_queue) {
|
|
if (task)
|
|
task->deleteLater();
|
|
}
|
|
}
|
|
|
|
auto ConcurrentTask::getStepProgress() const -> qint64
|
|
{
|
|
return m_stepProgress;
|
|
}
|
|
|
|
auto ConcurrentTask::getStepTotalProgress() const -> qint64
|
|
{
|
|
return m_stepTotalProgress;
|
|
}
|
|
|
|
void ConcurrentTask::addTask(Task::Ptr task)
|
|
{
|
|
if (!isRunning())
|
|
m_queue.append(task);
|
|
else
|
|
qWarning() << "Tried to add a task to a running concurrent task!";
|
|
}
|
|
|
|
void ConcurrentTask::executeTask()
|
|
{
|
|
m_total_size = m_queue.size();
|
|
|
|
// Start the least amount of tasks needed, but at least one
|
|
int num_starts = std::max(1, std::min(m_total_max_size, m_total_size));
|
|
for (int i = 0; i < num_starts; i++) {
|
|
QMetaObject::invokeMethod(this, &ConcurrentTask::startNext, Qt::QueuedConnection);
|
|
}
|
|
}
|
|
|
|
bool ConcurrentTask::abort()
|
|
{
|
|
m_queue.clear();
|
|
m_aborted = true;
|
|
|
|
if (m_doing.isEmpty()) {
|
|
// Don't call emitAborted() here, we want to bypass the 'is the task running' check
|
|
emit aborted();
|
|
emit finished();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool suceedeed = true;
|
|
|
|
QMutableHashIterator<Task*, Task::Ptr> doing_iter(m_doing);
|
|
while (doing_iter.hasNext()) {
|
|
auto task = doing_iter.next();
|
|
suceedeed &= (task.value())->abort();
|
|
}
|
|
|
|
if (suceedeed)
|
|
emitAborted();
|
|
else
|
|
emitFailed(tr("Failed to abort all running tasks."));
|
|
|
|
return suceedeed;
|
|
}
|
|
|
|
void ConcurrentTask::startNext()
|
|
{
|
|
if (m_aborted || m_doing.count() > m_total_max_size)
|
|
return;
|
|
|
|
if (m_queue.isEmpty() && m_doing.isEmpty() && !wasSuccessful()) {
|
|
emitSucceeded();
|
|
return;
|
|
}
|
|
|
|
if (m_queue.isEmpty())
|
|
return;
|
|
|
|
Task::Ptr next = m_queue.dequeue();
|
|
|
|
connect(next.get(), &Task::succeeded, this, [this, next] { subTaskSucceeded(next); });
|
|
connect(next.get(), &Task::failed, this, [this, next](QString msg) { subTaskFailed(next, msg); });
|
|
|
|
connect(next.get(), &Task::status, this, &ConcurrentTask::subTaskStatus);
|
|
connect(next.get(), &Task::stepStatus, this, &ConcurrentTask::subTaskStatus);
|
|
|
|
connect(next.get(), &Task::progress, this, &ConcurrentTask::subTaskProgress);
|
|
|
|
m_doing.insert(next.get(), next);
|
|
|
|
setStepStatus(next->isMultiStep() ? next->getStepStatus() : next->getStatus());
|
|
updateState();
|
|
|
|
QCoreApplication::processEvents();
|
|
|
|
next->start();
|
|
}
|
|
|
|
void ConcurrentTask::subTaskSucceeded(Task::Ptr task)
|
|
{
|
|
m_done.insert(task.get(), task);
|
|
m_doing.remove(task.get());
|
|
|
|
disconnect(task.get(), 0, this, 0);
|
|
|
|
updateState();
|
|
|
|
startNext();
|
|
}
|
|
|
|
void ConcurrentTask::subTaskFailed(Task::Ptr task, const QString& msg)
|
|
{
|
|
m_done.insert(task.get(), task);
|
|
m_failed.insert(task.get(), task);
|
|
|
|
m_doing.remove(task.get());
|
|
|
|
disconnect(task.get(), 0, this, 0);
|
|
|
|
updateState();
|
|
|
|
startNext();
|
|
}
|
|
|
|
void ConcurrentTask::subTaskStatus(const QString& msg)
|
|
{
|
|
setStepStatus(msg);
|
|
}
|
|
|
|
void ConcurrentTask::subTaskProgress(qint64 current, qint64 total)
|
|
{
|
|
m_stepProgress = current;
|
|
m_stepTotalProgress = total;
|
|
}
|
|
|
|
void ConcurrentTask::updateState()
|
|
{
|
|
setProgress(m_done.count(), m_total_size);
|
|
setStatus(tr("Executing %1 task(s) (%2 out of %3 are done)")
|
|
.arg(QString::number(m_doing.count()), QString::number(m_done.count()), QString::number(m_total_size)));
|
|
}
|