2014-06-27 15:34:05 +02:00
|
|
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
|
|
|
*
|
|
|
|
* 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 <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 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void setJobs( const QList< Calamares::job_ptr >& jobs )
|
|
|
|
{
|
|
|
|
m_jobs = jobs;
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
int total = m_jobs.size();
|
|
|
|
int current = 0;
|
|
|
|
for( auto job : m_jobs )
|
|
|
|
{
|
|
|
|
emitProgress( current, total, job->prettyName() );
|
|
|
|
job->exec();
|
|
|
|
++current;
|
|
|
|
}
|
|
|
|
emitProgress( total, total, QString() );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QList< Calamares::job_ptr > m_jobs;
|
|
|
|
JobQueue* m_queue;
|
|
|
|
|
|
|
|
void emitProgress( int current, int total, const QString& prettyName )
|
|
|
|
{
|
|
|
|
QMetaObject::invokeMethod( m_queue, "progress", Qt::QueuedConnection,
|
|
|
|
Q_ARG( int, current ),
|
|
|
|
Q_ARG( int, total ),
|
|
|
|
Q_ARG( QString, prettyName )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-07-03 18:00:40 +02:00
|
|
|
|
2014-06-27 16:21:45 +02:00
|
|
|
JobQueue* JobQueue::s_instance = nullptr;
|
|
|
|
|
2014-07-03 18:00:40 +02:00
|
|
|
|
2014-06-27 16:21:45 +02:00
|
|
|
JobQueue*
|
|
|
|
JobQueue::instance()
|
|
|
|
{
|
|
|
|
return s_instance;
|
|
|
|
}
|
|
|
|
|
2014-07-03 18:00:40 +02:00
|
|
|
|
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 ) )
|
2014-06-27 15:34:05 +02:00
|
|
|
{
|
2014-07-08 17:04:39 +02:00
|
|
|
Q_ASSERT( !s_instance );
|
|
|
|
s_instance = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
JobQueue::start()
|
|
|
|
{
|
|
|
|
Q_ASSERT( !m_thread->isRunning() );
|
|
|
|
m_thread->setJobs( m_jobs );
|
|
|
|
m_thread->start();
|
2014-06-27 15:34:05 +02:00
|
|
|
}
|
|
|
|
|
2014-07-03 18:00:40 +02:00
|
|
|
|
2014-06-30 18:02:19 +02:00
|
|
|
void
|
|
|
|
JobQueue::enqueue( const Calamares::job_ptr& job )
|
|
|
|
{
|
2014-07-08 17:04:39 +02:00
|
|
|
Q_ASSERT( !m_thread->isRunning() );
|
|
|
|
m_jobs.append( job );
|
2014-06-30 18:02:19 +02:00
|
|
|
}
|
|
|
|
|
2014-07-03 18:00:40 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
JobQueue::enqueue( const QList< job_ptr >& jobs )
|
|
|
|
{
|
2014-07-08 17:04:39 +02:00
|
|
|
Q_ASSERT( !m_thread->isRunning() );
|
|
|
|
m_jobs.append( jobs );
|
2014-07-03 18:00:40 +02:00
|
|
|
}
|
|
|
|
|
2014-06-27 15:34:05 +02:00
|
|
|
} // namespace Calamares
|