Simple-x264-Launcher/src/thread_encode.h

126 lines
3.3 KiB
C
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////
// Simple x264 Launcher
2019-05-02 12:47:47 +02:00
// Copyright (C) 2004-2019 LoRd_MuldeR <MuldeR2@GMX.de>
//
// This program 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 2 of the License, or
// (at your option) any later version.
//
// This program 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 this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// http://www.gnu.org/licenses/gpl-2.0.txt
///////////////////////////////////////////////////////////////////////////////
#pragma once
2013-07-03 21:52:19 +02:00
#include "model_status.h"
#include <QThread>
#include <QUuid>
#include <QMutex>
#include <QStringList>
2012-02-02 02:13:02 +01:00
#include <QSemaphore>
class SysinfoModel;
class PreferencesModel;
2012-01-29 19:14:46 +01:00
class OptionsModel;
class QProcess;
class JobObject;
class AbstractEncoder;
class AbstractSource;
2012-01-29 19:14:46 +01:00
class EncodeThread : public QThread
{
Q_OBJECT
public:
EncodeThread(const QString &sourceFileName, const QString &outputFileName, const OptionsModel *options, const SysinfoModel *const sysinfo, const PreferencesModel *const m_preferences);
~EncodeThread(void);
QUuid getId(void) { return this->m_jobId; };
const QString &sourceFileName(void) const { return this->m_sourceFileName; }
const QString &outputFileName(void) const { return this->m_outputFileName; }
const OptionsModel *options(void) const { return m_options; }
2012-02-02 02:13:02 +01:00
void pauseJob(void)
{
m_pause = true;
}
2012-02-02 02:13:02 +01:00
void resumeJob(void)
{
m_pause = false;
m_semaphorePaused.release();
}
2012-02-02 02:13:02 +01:00
void abortJob(void)
{
m_abort = true;
m_pause = false;
m_semaphorePaused.release();
}
protected:
//Globals
const SysinfoModel *const m_sysinfo;
const PreferencesModel *const m_preferences;
//Constants
const QUuid m_jobId;
const OptionsModel *m_options;
const QString m_sourceFileName;
const QString m_outputFileName;
2013-08-02 20:44:47 +02:00
//Flags
volatile bool m_abort;
2012-02-02 02:13:02 +01:00
volatile bool m_pause;
2012-02-02 02:13:02 +01:00
//Synchronization
QSemaphore m_semaphorePaused;
//Job Object
JobObject *m_jobObject;
//Internal status values
JobStatus m_status;
unsigned int m_progress;
QString m_details;
//Encoder and Source objects
AbstractEncoder *m_encoder;
AbstractSource *m_pipedSource;
//Entry point
virtual void run(void);
2012-02-02 02:13:02 +01:00
virtual void checkedRun(void);
2012-01-29 19:14:46 +01:00
//Main encoding functions
2012-01-28 19:59:04 +01:00
void encode(void);
//Static functions
static QString getPasslogFile(const QString &outputFile);
signals:
void statusChanged(const QUuid &jobId, const JobStatus &newStatus);
void progressChanged(const QUuid &jobId, const unsigned int &newProgress);
void messageLogged(const QUuid &jobId, qint64, const QString &text);
void detailsChanged(const QUuid &jobId, const QString &details);
2012-02-02 02:13:02 +01:00
private slots:
void log(const QString &text);
void setStatus(const JobStatus &newStatus);
void setProgress(const unsigned int &newProgress);
void setDetails(const QString &text);
2012-02-02 02:13:02 +01:00
public slots:
void start(Priority priority = InheritPriority);
};