2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-02-06 01:10:43 +05:30
|
|
|
*
|
|
|
|
* 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 07:23:05 +05:30
|
|
|
*
|
2013-02-06 01:10:43 +05:30
|
|
|
* 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 04:29:35 +05:30
|
|
|
#include "Task.h"
|
2015-05-28 23:08:29 +05:30
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2013-02-06 01:10:43 +05:30
|
|
|
|
2015-04-27 02:34:50 +05:30
|
|
|
Task::Task(QObject *parent) : QObject(parent)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-05-04 02:41:52 +05:30
|
|
|
void Task::setStatus(const QString &new_status)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
2017-05-04 02:41:52 +05:30
|
|
|
if(m_status != new_status)
|
2015-07-26 21:25:29 +05:30
|
|
|
{
|
2017-05-04 02:41:52 +05:30
|
|
|
m_status = new_status;
|
|
|
|
emit status(m_status);
|
2015-07-26 21:25:29 +05:30
|
|
|
}
|
2013-02-06 01:10:43 +05:30
|
|
|
}
|
|
|
|
|
2015-07-26 21:25:29 +05:30
|
|
|
void Task::setProgress(qint64 current, qint64 total)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
2015-07-26 21:25:29 +05:30
|
|
|
m_progress = current;
|
|
|
|
m_progressTotal = total;
|
|
|
|
emit progress(m_progress, m_progressTotal);
|
2013-02-06 01:10:43 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void Task::start()
|
2013-05-07 03:49:20 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_running = true;
|
2013-05-07 03:49:20 +05:30
|
|
|
emit started();
|
2017-07-07 23:16:56 +05:30
|
|
|
qDebug() << "Task" << describe() << "started";
|
2013-09-18 03:30:35 +05:30
|
|
|
executeTask();
|
2013-05-07 03:49:20 +05:30
|
|
|
}
|
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
void Task::emitFailed(QString reason)
|
|
|
|
{
|
2017-07-07 23:16:56 +05:30
|
|
|
// Don't fail twice.
|
|
|
|
if (!m_running)
|
|
|
|
{
|
|
|
|
qCritical() << "Task" << describe() << "failed while not running!!!!: " << reason;
|
|
|
|
return;
|
|
|
|
}
|
2013-09-18 03:30:35 +05:30
|
|
|
m_running = false;
|
2015-07-26 21:25:29 +05:30
|
|
|
m_finished = true;
|
2013-11-29 08:15:52 +05:30
|
|
|
m_succeeded = false;
|
|
|
|
m_failReason = reason;
|
2017-07-07 23:16:56 +05:30
|
|
|
qCritical() << "Task" << describe() << "failed: " << reason;
|
2013-08-09 03:56:35 +05:30
|
|
|
emit failed(reason);
|
2015-05-03 03:12:33 +05:30
|
|
|
emit finished();
|
2013-08-09 03:56:35 +05:30
|
|
|
}
|
|
|
|
|
2017-07-07 23:16:56 +05:30
|
|
|
void Task::emitAborted()
|
|
|
|
{
|
|
|
|
// Don't abort twice.
|
|
|
|
if (!m_running)
|
|
|
|
{
|
|
|
|
qCritical() << "Task" << describe() << "aborted while not running!!!!";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_running = false;
|
|
|
|
m_finished = true;
|
|
|
|
m_succeeded = false;
|
|
|
|
m_failReason = "Aborted.";
|
|
|
|
qDebug() << "Task" << describe() << "aborted.";
|
|
|
|
emit failed(m_failReason);
|
|
|
|
emit finished();
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:56:35 +05:30
|
|
|
void Task::emitSucceeded()
|
2013-05-07 03:49:20 +05:30
|
|
|
{
|
2017-07-07 23:16:56 +05:30
|
|
|
// Don't succeed twice.
|
|
|
|
if (!m_running)
|
|
|
|
{
|
|
|
|
qCritical() << "Task" << describe() << "succeeded while not running!!!!";
|
|
|
|
return;
|
|
|
|
}
|
2013-09-18 03:30:35 +05:30
|
|
|
m_running = false;
|
2015-07-26 21:25:29 +05:30
|
|
|
m_finished = true;
|
2013-11-29 08:15:52 +05:30
|
|
|
m_succeeded = true;
|
2017-07-07 23:16:56 +05:30
|
|
|
qDebug() << "Task" << describe() << "succeeded";
|
2013-08-09 03:56:35 +05:30
|
|
|
emit succeeded();
|
2015-05-03 03:12:33 +05:30
|
|
|
emit finished();
|
2013-05-07 03:49:20 +05:30
|
|
|
}
|
|
|
|
|
2017-07-07 23:16:56 +05:30
|
|
|
QString Task::describe()
|
|
|
|
{
|
|
|
|
QString outStr;
|
|
|
|
QTextStream out(&outStr);
|
|
|
|
out << metaObject()->className() << QChar('(');
|
|
|
|
auto name = objectName();
|
|
|
|
if(name.isEmpty())
|
|
|
|
{
|
|
|
|
out << QString("0x%1").arg((quintptr)this, 0, 16);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << name;
|
|
|
|
}
|
|
|
|
out << QChar(')');
|
|
|
|
out.flush();
|
|
|
|
return outStr;
|
|
|
|
}
|
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
bool Task::isRunning() const
|
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
return m_running;
|
2013-02-06 01:10:43 +05:30
|
|
|
}
|
2013-11-29 08:15:52 +05:30
|
|
|
|
2015-07-26 21:25:29 +05:30
|
|
|
bool Task::isFinished() const
|
|
|
|
{
|
|
|
|
return m_finished;
|
|
|
|
}
|
|
|
|
|
2017-06-26 04:44:32 +05:30
|
|
|
bool Task::wasSuccessful() const
|
2013-11-29 08:15:52 +05:30
|
|
|
{
|
|
|
|
return m_succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Task::failReason() const
|
|
|
|
{
|
|
|
|
return m_failReason;
|
|
|
|
}
|
|
|
|
|