Simple-x264-Launcher/src/thread_encode.h

143 lines
4.4 KiB
C
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////
// Simple x264 Launcher
// Copyright (C) 2004-2012 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
#include <QThread>
#include <QUuid>
#include <QMutex>
#include <QStringList>
2012-02-02 02:13:02 +01:00
#include <QSemaphore>
2012-01-29 19:14:46 +01:00
class OptionsModel;
class QProcess;
2012-01-29 19:14:46 +01:00
class EncodeThread : public QThread
{
Q_OBJECT
public:
enum JobStatus
{
2012-01-28 19:59:04 +01:00
JobStatus_Enqueued = 0,
JobStatus_Starting = 1,
JobStatus_Indexing = 2,
JobStatus_Running = 3,
JobStatus_Running_Pass1 = 4,
JobStatus_Running_Pass2 = 5,
JobStatus_Completed = 6,
JobStatus_Failed = 7,
2012-02-02 02:13:02 +01:00
JobStatus_Pausing = 8,
JobStatus_Paused = 9,
JobStatus_Resuming = 10,
JobStatus_Aborting = 11,
JobStatus_Aborted = 12,
JobStatus_Undefined = 666
};
EncodeThread(const QString &sourceFileName, const QString &outputFileName, const OptionsModel *options, const QString &binDir, bool x264_x64, bool avs2yuv_x64);
~EncodeThread(void);
QUuid getId(void) { return this->m_jobId; };
const QString &sourceFileName(void) { return this->m_sourceFileName; }
const QString &outputFileName(void) { return this->m_outputFileName; }
const OptionsModel *options(void) { return m_options; }
2012-02-02 02:13:02 +01:00
void pauseJob(void)
{
m_pause = true;
}
void resumeJob(void)
{
m_pause = false;
m_semaphorePaused.release();
}
void abortJob(void)
{
m_abort = true;
m_pause = false;
m_semaphorePaused.release();
}
protected:
static QMutex m_mutex_startProcess;
static const unsigned int m_processTimeoutInterval = 2500;
static const unsigned int m_processTimeoutMaxCounter = 120;
static const unsigned int m_processTimeoutWarning = 24;
//Constants
const QUuid m_jobId;
const QString m_sourceFileName;
const QString m_outputFileName;
2012-01-29 19:14:46 +01:00
const OptionsModel *m_options;
const QString m_binDir;
const bool m_x264_x64;
const bool m_avs2yuv_x64;
//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 handle
void *m_handle_jobObject;
//Internal status values
JobStatus m_status;
unsigned int m_progress;
//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
//Encode functions
2012-01-28 19:59:04 +01:00
void encode(void);
bool runEncodingPass(bool x264_x64, bool avs2yuv_x64, bool usePipe, unsigned int frames, const QString &indexFile, int pass = 0, const QString &passLogFile = QString());
QStringList buildCommandLine(bool usePipe, unsigned int frames, const QString &indexFile, int pass = 0, const QString &passLogFile = QString());
2012-02-02 04:00:05 +01:00
unsigned int checkVersionX264(bool x64, bool &modified);
unsigned int checkVersionAvs2yuv(bool x64);
bool checkProperties(bool x64, unsigned int &frames);
2012-01-29 19:14:46 +01:00
//Auxiallary Stuff
void log(const QString &text) { emit messageLogged(m_jobId, text); }
inline void setStatus(JobStatus newStatus);
inline void setProgress(unsigned int newProgress);
inline void setDetails(const QString &text);
bool startProcess(QProcess &process, const QString &program, const QStringList &args, bool mergeChannels = true);
QString pathToLocal(const QString &longPath, bool create = false, bool keep = true);
QStringList splitParams(const QString &params);
//Static functions
static QString commandline2string(const QString &program, const QStringList &arguments);
signals:
void statusChanged(const QUuid &jobId, EncodeThread::JobStatus newStatus);
void progressChanged(const QUuid &jobId, unsigned int newProgress);
void messageLogged(const QUuid &jobId, const QString &text);
void detailsChanged(const QUuid &jobId, const QString &details);
2012-02-02 02:13:02 +01:00
public slots:
void start(Priority priority = InheritPriority);
};