aboutsummaryrefslogtreecommitdiff
path: root/launcher/tasks/SequentialTask.cpp
blob: a34137cbf811929238d2a41797899f10ed5700e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "SequentialTask.h"

#include <QDebug>

SequentialTask::SequentialTask(QObject* parent, QString task_name) : ConcurrentTask(parent, task_name, 1) {}

void SequentialTask::startNext()
{
    if (m_failed.size() > 0) {
        emitFailed(tr("One of the tasks failed!"));
        qWarning() << m_failed.constBegin()->get()->failReason();
        return;
    }

    ConcurrentTask::startNext();
}

void SequentialTask::updateState()
{
    setProgress(m_done.count(), m_total_size);
    setStatus(tr("Executing task %1 out of %2").arg(QString::number(m_doing.count() + m_done.count()), QString::number(m_total_size)));
}