2015-02-02 14:25:30 -08:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-02-05 13:40:43 -06:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 02:53:05 +01:00
|
|
|
*
|
2013-02-05 13:40:43 -06:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 00:59:35 +02:00
|
|
|
#include "Task.h"
|
2015-05-28 19:38:29 +02:00
|
|
|
|
2015-02-02 02:14:14 +01:00
|
|
|
#include <QDebug>
|
2013-02-05 13:40:43 -06:00
|
|
|
|
2015-04-26 23:04:50 +02:00
|
|
|
Task::Task(QObject *parent) : QObject(parent)
|
2013-02-05 13:40:43 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-09-18 00:00:35 +02:00
|
|
|
void Task::setStatus(const QString &new_status)
|
2013-02-05 13:40:43 -06:00
|
|
|
{
|
2015-07-26 17:55:29 +02:00
|
|
|
if(m_status != new_status)
|
|
|
|
{
|
|
|
|
m_status = new_status;
|
|
|
|
emit status(m_status);
|
|
|
|
}
|
2013-02-05 13:40:43 -06:00
|
|
|
}
|
|
|
|
|
2015-07-26 17:55:29 +02:00
|
|
|
void Task::setProgress(qint64 current, qint64 total)
|
2013-02-05 13:40:43 -06:00
|
|
|
{
|
2015-07-26 17:55:29 +02:00
|
|
|
m_progress = current;
|
|
|
|
m_progressTotal = total;
|
|
|
|
emit progress(m_progress, m_progressTotal);
|
2013-02-05 13:40:43 -06:00
|
|
|
}
|
|
|
|
|
2013-09-18 00:00:35 +02:00
|
|
|
void Task::start()
|
2013-05-06 17:19:20 -05:00
|
|
|
{
|
2013-09-18 00:00:35 +02:00
|
|
|
m_running = true;
|
2013-05-06 17:19:20 -05:00
|
|
|
emit started();
|
2013-09-18 00:00:35 +02:00
|
|
|
executeTask();
|
2013-05-06 17:19:20 -05:00
|
|
|
}
|
|
|
|
|
2013-08-09 00:26:35 +02:00
|
|
|
void Task::emitFailed(QString reason)
|
|
|
|
{
|
2013-09-18 00:00:35 +02:00
|
|
|
m_running = false;
|
2015-07-26 17:55:29 +02:00
|
|
|
m_finished = true;
|
2013-11-28 20:45:52 -06:00
|
|
|
m_succeeded = false;
|
|
|
|
m_failReason = reason;
|
2015-02-02 02:14:14 +01:00
|
|
|
qCritical() << "Task failed: " << reason;
|
2013-08-09 00:26:35 +02:00
|
|
|
emit failed(reason);
|
2015-05-02 23:42:33 +02:00
|
|
|
emit finished();
|
2013-08-09 00:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Task::emitSucceeded()
|
2013-05-06 17:19:20 -05:00
|
|
|
{
|
2014-09-06 18:16:56 +02:00
|
|
|
if (!m_running) { return; } // Don't succeed twice.
|
2013-09-18 00:00:35 +02:00
|
|
|
m_running = false;
|
2015-07-26 17:55:29 +02:00
|
|
|
m_finished = true;
|
2013-11-28 20:45:52 -06:00
|
|
|
m_succeeded = true;
|
2015-02-02 02:14:14 +01:00
|
|
|
qDebug() << "Task succeeded";
|
2013-08-09 00:26:35 +02:00
|
|
|
emit succeeded();
|
2015-05-02 23:42:33 +02:00
|
|
|
emit finished();
|
2013-05-06 17:19:20 -05:00
|
|
|
}
|
|
|
|
|
2013-08-05 03:29:50 +02:00
|
|
|
bool Task::isRunning() const
|
|
|
|
{
|
2013-09-18 00:00:35 +02:00
|
|
|
return m_running;
|
2013-02-05 13:40:43 -06:00
|
|
|
}
|
2013-11-28 20:45:52 -06:00
|
|
|
|
2015-07-26 17:55:29 +02:00
|
|
|
bool Task::isFinished() const
|
|
|
|
{
|
|
|
|
return m_finished;
|
|
|
|
}
|
|
|
|
|
2013-11-28 20:45:52 -06:00
|
|
|
bool Task::successful() const
|
|
|
|
{
|
|
|
|
return m_succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Task::failReason() const
|
|
|
|
{
|
|
|
|
return m_failReason;
|
|
|
|
}
|
|
|
|
|