pollymc/logic/tasks/Task.cpp

73 lines
1.4 KiB
C++
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 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-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.
*/
#include "Task.h"
#include "logger/QsLog.h"
2013-02-06 01:10:43 +05:30
Task::Task(QObject *parent) : ProgressProvider(parent)
2013-02-06 01:10:43 +05:30
{
}
void Task::setStatus(const QString &new_status)
2013-02-06 01:10:43 +05:30
{
emit status(new_status);
2013-02-06 01:10:43 +05:30
}
void Task::setProgress(int new_progress)
2013-02-06 01:10:43 +05:30
{
emit progress(new_progress, 100);
2013-02-06 01:10:43 +05:30
}
void Task::start()
{
m_running = true;
emit started();
executeTask();
}
void Task::emitFailed(QString reason)
{
m_running = false;
m_succeeded = false;
m_failReason = reason;
2013-10-06 04:43:40 +05:30
QLOG_ERROR() << "Task failed: " << reason;
emit failed(reason);
}
void Task::emitSucceeded()
{
2014-09-06 21:46:56 +05:30
if (!m_running) { return; } // Don't succeed twice.
m_running = false;
m_succeeded = true;
QLOG_INFO() << "Task succeeded";
emit succeeded();
}
2013-08-05 06:59:50 +05:30
bool Task::isRunning() const
{
return m_running;
2013-02-06 01:10:43 +05:30
}
bool Task::successful() const
{
return m_succeeded;
}
QString Task::failReason() const
{
return m_failReason;
}