2013-12-20 19:17:26 +05:30
|
|
|
#include "SequentialTask.h"
|
|
|
|
|
2022-05-09 19:23:52 +05:30
|
|
|
#include <QDebug>
|
|
|
|
|
2022-06-12 22:00:09 +05:30
|
|
|
SequentialTask::SequentialTask(QObject* parent, QString task_name) : ConcurrentTask(parent, task_name, 1) {}
|
2022-04-01 17:40:51 +05:30
|
|
|
|
2013-12-20 19:17:26 +05:30
|
|
|
void SequentialTask::startNext()
|
|
|
|
{
|
2022-06-12 22:00:09 +05:30
|
|
|
if (m_failed.size() > 0) {
|
|
|
|
emitFailed(tr("One of the tasks failed!"));
|
|
|
|
qWarning() << m_failed.constBegin()->get()->failReason();
|
2018-07-15 18:21:05 +05:30
|
|
|
return;
|
|
|
|
}
|
2022-04-01 17:40:51 +05:30
|
|
|
|
2022-06-12 22:00:09 +05:30
|
|
|
ConcurrentTask::startNext();
|
2013-12-20 19:17:26 +05:30
|
|
|
}
|
|
|
|
|
2022-06-12 22:00:09 +05:30
|
|
|
void SequentialTask::updateState()
|
2013-12-20 19:17:26 +05:30
|
|
|
{
|
2022-06-12 22:00:09 +05:30
|
|
|
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)));
|
2013-12-20 19:17:26 +05:30
|
|
|
}
|