calamares/src/libcalamares/JobQueue.cpp

220 lines
5.7 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 "CalamaresConfig.h"
#include "GlobalStorage.h"
#include "Job.h"
2014-07-23 12:04:27 +02:00
#include "utils/Logger.h"
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( JobList&& jobs )
2014-07-08 17:04:39 +02:00
{
m_jobs = jobs;
2019-06-28 19:32:35 +02:00
qreal totalJobsWeight = 0.0;
for ( auto job : m_jobs )
2019-06-28 19:32:35 +02:00
{
totalJobsWeight += job->getJobWeight();
}
for ( auto job : m_jobs )
2019-06-28 19:32:35 +02:00
{
qreal jobWeight = qreal( job->getJobWeight() / totalJobsWeight );
m_jobWeights.append( jobWeight );
2019-06-28 19:32:35 +02:00
}
2014-07-08 17:04:39 +02:00
}
void run() override
{
bool anyFailed = false;
QString message;
QString details;
2014-07-23 12:04:27 +02:00
m_jobIndex = 0;
for ( auto job : m_jobs )
2014-07-08 17:04:39 +02:00
{
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() << " (there are" << m_jobs.count() << " left)";
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;
2019-06-28 19:32:35 +02:00
QList< qreal > m_jobWeights;
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 ? m_jobs.at( m_jobIndex )->prettyStatusMessage() : tr( "Done" );
2014-07-23 12:04:27 +02:00
2019-06-28 19:32:35 +02:00
qreal cumulativeProgress = 0.0;
for ( auto jobWeight : m_jobWeights.mid( 0, m_jobIndex ) )
2019-06-28 19:32:35 +02:00
{
cumulativeProgress += jobWeight;
}
qreal percent
= m_jobIndex < jobCount ? cumulativeProgress + ( ( m_jobWeights.at( m_jobIndex ) ) * jobPercent ) : 1.0;
2014-07-23 12:04:27 +02:00
if ( m_jobIndex < jobCount )
2019-06-28 19:32:35 +02:00
{
Logger::CDebug( Logger::LOGVERBOSE ) << "[JOBQUEUE]: Progress for Job[" << m_jobIndex
<< "]: " << ( jobPercent * 100 ) << "% completed";
Logger::CDebug( Logger::LOGVERBOSE ) << "[JOBQUEUE]: Progress Overall: " << ( cumulativeProgress * 100 )
<< "% (accumulated) + "
<< ( ( ( m_jobWeights.at( m_jobIndex ) ) * jobPercent ) * 100 )
<< "% (this job) = " << ( percent * 100 ) << "% (total)";
2019-06-28 19:32:35 +02:00
}
QMetaObject::invokeMethod(
m_queue, "progress", Qt::QueuedConnection, Q_ARG( qreal, percent ), 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 ) );
2014-07-10 14:46:08 +02:00
}
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()
{
if ( m_thread->isRunning() )
{
m_thread->terminate();
if ( !m_thread->wait( 300 ) )
{
cError() << "Could not terminate job thread (expect a crash now).";
}
delete m_thread;
}
delete m_storage;
}
2014-07-08 17:04:39 +02:00
void
JobQueue::start()
{
Q_ASSERT( !m_thread->isRunning() );
m_thread->setJobs( std::move( 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 );
}
} // namespace Calamares