2015-02-02 22:25:30 +00:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-02-05 19:40:43 +00: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 01:53:05 +00:00
|
|
|
*
|
2013-02-05 19:40:43 +00: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-28 23:59:35 +01:00
|
|
|
#include "Task.h"
|
2015-02-02 01:14:14 +00:00
|
|
|
#include <QDebug>
|
2013-02-05 19:40:43 +00:00
|
|
|
|
2015-04-26 22:04:50 +01:00
|
|
|
Task::Task(QObject *parent) : QObject(parent)
|
2013-02-05 19:40:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-09-17 23:00:35 +01:00
|
|
|
void Task::setStatus(const QString &new_status)
|
2013-02-05 19:40:43 +00:00
|
|
|
{
|
2013-09-17 23:00:35 +01:00
|
|
|
emit status(new_status);
|
2013-02-05 19:40:43 +00:00
|
|
|
}
|
|
|
|
|
2013-09-17 23:00:35 +01:00
|
|
|
void Task::setProgress(int new_progress)
|
2013-02-05 19:40:43 +00:00
|
|
|
{
|
2013-09-17 23:00:35 +01:00
|
|
|
emit progress(new_progress, 100);
|
2013-02-05 19:40:43 +00:00
|
|
|
}
|
|
|
|
|
2013-09-17 23:00:35 +01:00
|
|
|
void Task::start()
|
2013-05-06 23:19:20 +01:00
|
|
|
{
|
2013-09-17 23:00:35 +01:00
|
|
|
m_running = true;
|
2013-05-06 23:19:20 +01:00
|
|
|
emit started();
|
2013-09-17 23:00:35 +01:00
|
|
|
executeTask();
|
2013-05-06 23:19:20 +01:00
|
|
|
}
|
|
|
|
|
2013-08-08 23:26:35 +01:00
|
|
|
void Task::emitFailed(QString reason)
|
|
|
|
{
|
2013-09-17 23:00:35 +01:00
|
|
|
m_running = false;
|
2013-11-29 02:45:52 +00:00
|
|
|
m_succeeded = false;
|
|
|
|
m_failReason = reason;
|
2015-02-02 01:14:14 +00:00
|
|
|
qCritical() << "Task failed: " << reason;
|
2013-08-08 23:26:35 +01:00
|
|
|
emit failed(reason);
|
2015-05-02 22:42:33 +01:00
|
|
|
emit finished();
|
2013-08-08 23:26:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Task::emitSucceeded()
|
2013-05-06 23:19:20 +01:00
|
|
|
{
|
2014-09-06 17:16:56 +01:00
|
|
|
if (!m_running) { return; } // Don't succeed twice.
|
2013-09-17 23:00:35 +01:00
|
|
|
m_running = false;
|
2013-11-29 02:45:52 +00:00
|
|
|
m_succeeded = true;
|
2015-02-02 01:14:14 +00:00
|
|
|
qDebug() << "Task succeeded";
|
2013-08-08 23:26:35 +01:00
|
|
|
emit succeeded();
|
2015-05-02 22:42:33 +01:00
|
|
|
emit finished();
|
2013-05-06 23:19:20 +01:00
|
|
|
}
|
|
|
|
|
2013-08-05 02:29:50 +01:00
|
|
|
bool Task::isRunning() const
|
|
|
|
{
|
2013-09-17 23:00:35 +01:00
|
|
|
return m_running;
|
2013-02-05 19:40:43 +00:00
|
|
|
}
|
2013-11-29 02:45:52 +00:00
|
|
|
|
|
|
|
bool Task::successful() const
|
|
|
|
{
|
|
|
|
return m_succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Task::failReason() const
|
|
|
|
{
|
|
|
|
return m_failReason;
|
|
|
|
}
|
|
|
|
|