2013-02-06 01:10:43 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* 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"
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "logger/QsLog.h"
|
2013-02-06 01:10:43 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
Task::Task(QObject *parent) : ProgressProvider(parent)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Task::getStatus() const
|
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
return m_status;
|
2013-02-06 01:10:43 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void Task::setStatus(const QString &new_status)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_status = new_status;
|
|
|
|
emit status(new_status);
|
2013-02-06 01:10:43 +05:30
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void Task::setProgress(int new_progress)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_progress = new_progress;
|
|
|
|
emit progress(new_progress, 100);
|
2013-02-06 01:10:43 +05:30
|
|
|
}
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
void Task::getProgress(qint64 ¤t, qint64 &total)
|
2013-02-06 01:10:43 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
current = m_progress;
|
|
|
|
total = 100;
|
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();
|
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)
|
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_running = false;
|
2013-11-29 08:15:52 +05:30
|
|
|
m_succeeded = false;
|
|
|
|
m_failReason = reason;
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_ERROR() << "Task failed: " << reason;
|
2013-08-09 03:56:35 +05:30
|
|
|
emit failed(reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Task::emitSucceeded()
|
2013-05-07 03:49:20 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_running = false;
|
2013-11-29 08:15:52 +05:30
|
|
|
m_succeeded = true;
|
|
|
|
QLOG_INFO() << "Task succeeded";
|
2013-08-09 03:56:35 +05:30
|
|
|
emit succeeded();
|
2013-05-07 03:49:20 +05:30
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
bool Task::successful() const
|
|
|
|
{
|
|
|
|
return m_succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Task::failReason() const
|
|
|
|
{
|
|
|
|
return m_failReason;
|
|
|
|
}
|
|
|
|
|