calamares/src/libcalamares/JobQueue.cpp

192 lines
4.3 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <https://github.com/calamares> ===
2014-06-27 15:34:05 +02:00
*
2015-03-06 18:55:02 +01:00
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
* Copyright 2018, Adriaan de Groot <groot@kde.org>
2014-06-27 15:34:05 +02:00
*
* Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Calamares is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#include "JobQueue.h"
2014-07-08 17:04:39 +02:00
#include "Job.h"
#include "GlobalStorage.h"
2014-07-23 12:04:27 +02:00
#include "utils/Logger.h"
2014-07-08 17:04:39 +02:00
#include "CalamaresConfig.h"
#ifdef WITH_PYTHON
#include "PythonHelper.h"
#endif
2014-07-08 17:04:39 +02:00
#include <QThread>
2014-06-27 15:34:05 +02:00
namespace Calamares
{
2014-07-08 17:04:39 +02:00
class JobThread : public QThread
{
public:
JobThread( JobQueue* queue )
: QThread( queue )
, m_queue( queue )
, m_jobIndex( 0 )
2014-07-08 17:04:39 +02:00
{
}
virtual ~JobThread() override;
void setJobs( const JobList& jobs )
2014-07-08 17:04:39 +02:00
{
m_jobs = jobs;
}
void run() override
{
bool anyFailed = false;
QString message;
QString details;
2014-07-23 12:04:27 +02:00
m_jobIndex = 0;
2014-07-08 17:04:39 +02:00
for( auto job : m_jobs )
{
if ( anyFailed && !job->isEmergency() )
{
cDebug() << "Skipping non-emergency job" << job->prettyName();
continue;
}
2014-07-23 12:04:27 +02:00
emitProgress();
cDebug() << "Starting" << ( anyFailed ? "EMERGENCY JOB" : "job" ) << job->prettyName();
2014-07-23 12:04:27 +02:00
connect( job.data(), &Job::progress, this, &JobThread::emitProgress );
2014-07-10 14:46:08 +02:00
JobResult result = job->exec();
if ( !anyFailed && !result )
2014-07-10 14:46:08 +02:00
{
anyFailed = true;
message = result.message();
details = result.details();
2014-07-10 14:46:08 +02:00
}
if ( !anyFailed )
++m_jobIndex;
2014-07-08 17:04:39 +02:00
}
if ( anyFailed )
emitFailed( message, details );
else
emitProgress();
emitFinished();
2014-07-08 17:04:39 +02:00
}
private:
JobList m_jobs;
2014-07-08 17:04:39 +02:00
JobQueue* m_queue;
2014-07-23 12:04:27 +02:00
int m_jobIndex;
2014-07-08 17:04:39 +02:00
2014-07-23 12:04:27 +02:00
void emitProgress( qreal jobPercent = 0 )
2014-07-08 17:04:39 +02:00
{
2014-07-23 12:04:27 +02:00
// Make sure jobPercent is reasonable, in case a job messed up its
// percentage computations.
jobPercent = qBound( qreal( 0 ), jobPercent, qreal( 1 ) );
int jobCount = m_jobs.size();
QString message = m_jobIndex < jobCount
2015-06-13 02:03:57 +02:00
? m_jobs.at( m_jobIndex )->prettyStatusMessage()
2014-07-23 12:04:27 +02:00
: tr( "Done" );
qreal percent = ( m_jobIndex + jobPercent ) / qreal( jobCount );
2014-07-08 17:04:39 +02:00
QMetaObject::invokeMethod( m_queue, "progress", Qt::QueuedConnection,
Q_ARG( qreal, percent ),
2014-07-23 12:04:27 +02:00
Q_ARG( QString, message )
2014-07-08 17:04:39 +02:00
);
}
2014-07-10 14:46:08 +02:00
void emitFailed( const QString& message, const QString& details )
{
QMetaObject::invokeMethod( m_queue, "failed", Qt::QueuedConnection,
Q_ARG( QString, message ),
Q_ARG( QString, details )
);
}
void emitFinished()
{
QMetaObject::invokeMethod( m_queue, "finished", Qt::QueuedConnection );
}
2014-07-08 17:04:39 +02:00
};
JobThread::~JobThread()
{
}
JobQueue* JobQueue::s_instance = nullptr;
JobQueue*
JobQueue::instance()
{
return s_instance;
}
GlobalStorage*
JobQueue::globalStorage() const
{
return m_storage;
}
2014-06-27 15:34:05 +02:00
JobQueue::JobQueue( QObject* parent )
: QObject( parent )
2014-07-08 17:04:39 +02:00
, m_thread( new JobThread( this ) )
, m_storage( new GlobalStorage() )
2014-06-27 15:34:05 +02:00
{
2014-07-08 17:04:39 +02:00
Q_ASSERT( !s_instance );
s_instance = this;
}
JobQueue::~JobQueue()
{
delete m_storage;
}
2014-07-08 17:04:39 +02:00
void
JobQueue::start()
{
Q_ASSERT( !m_thread->isRunning() );
m_thread->setJobs( m_jobs );
m_jobs.clear();
2014-07-08 17:04:39 +02:00
m_thread->start();
2014-06-27 15:34:05 +02:00
}
void
2015-09-09 18:59:31 +02:00
JobQueue::enqueue( const job_ptr& job )
{
2014-07-08 17:04:39 +02:00
Q_ASSERT( !m_thread->isRunning() );
m_jobs.append( job );
2015-03-06 18:55:02 +01:00
emit queueChanged( m_jobs );
}
void
JobQueue::enqueue( const JobList& jobs )
{
2014-07-08 17:04:39 +02:00
Q_ASSERT( !m_thread->isRunning() );
m_jobs.append( jobs );
2015-03-06 18:55:02 +01:00
emit queueChanged( m_jobs );
}
2014-06-27 15:34:05 +02:00
} // namespace Calamares