MultiMC5/launcher/tasks/SequentialTask.cpp

56 lines
1.3 KiB
C++
Raw Normal View History

#include "SequentialTask.h"
2014-09-06 16:16:56 +00:00
SequentialTask::SequentialTask(QObject *parent) : Task(parent), m_currentIndex(-1)
{
}
2021-11-21 22:36:55 +00:00
void SequentialTask::addTask(Task::Ptr task)
{
2018-07-15 12:51:05 +00:00
m_queue.append(task);
}
void SequentialTask::executeTask()
{
2018-07-15 12:51:05 +00:00
m_currentIndex = -1;
startNext();
}
void SequentialTask::startNext()
{
2018-07-15 12:51:05 +00:00
if (m_currentIndex != -1)
{
2021-11-21 22:36:55 +00:00
Task::Ptr previous = m_queue[m_currentIndex];
2018-07-15 12:51:05 +00:00
disconnect(previous.get(), 0, this, 0);
}
m_currentIndex++;
if (m_queue.isEmpty() || m_currentIndex >= m_queue.size())
{
emitSucceeded();
return;
}
2021-11-21 22:36:55 +00:00
Task::Ptr next = m_queue[m_currentIndex];
2018-07-15 12:51:05 +00:00
connect(next.get(), SIGNAL(failed(QString)), this, SLOT(subTaskFailed(QString)));
connect(next.get(), SIGNAL(status(QString)), this, SLOT(subTaskStatus(QString)));
connect(next.get(), SIGNAL(progress(qint64, qint64)), this, SLOT(subTaskProgress(qint64, qint64)));
connect(next.get(), SIGNAL(succeeded()), this, SLOT(startNext()));
next->start();
}
void SequentialTask::subTaskFailed(const QString &msg)
{
2018-07-15 12:51:05 +00:00
emitFailed(msg);
}
void SequentialTask::subTaskStatus(const QString &msg)
{
2018-07-15 12:51:05 +00:00
setStatus(msg);
}
2014-09-06 16:16:56 +00:00
void SequentialTask::subTaskProgress(qint64 current, qint64 total)
{
2018-07-15 12:51:05 +00:00
if(total == 0)
{
setProgress(0, 100);
return;
}
setProgress(current, total);
}