2012-01-28 18:55:40 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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>
|
2012-01-29 21:31:09 +01:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QStringList>
|
2012-02-02 02:13:02 +01:00
|
|
|
#include <QSemaphore>
|
2012-01-28 18:55:40 +01:00
|
|
|
|
2012-01-29 19:14:46 +01:00
|
|
|
class OptionsModel;
|
2012-01-29 21:31:09 +01:00
|
|
|
class QProcess;
|
2012-01-29 19:14:46 +01:00
|
|
|
|
2012-01-28 18:55:40 +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,
|
2012-01-29 00:57:47 +01:00
|
|
|
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,
|
2012-02-02 22:53:40 +01:00
|
|
|
JobStatus_Aborted = 12,
|
|
|
|
JobStatus_Undefined = 666
|
2012-01-28 18:55:40 +01:00
|
|
|
};
|
|
|
|
|
2012-01-30 17:50:19 +01:00
|
|
|
EncodeThread(const QString &sourceFileName, const QString &outputFileName, const OptionsModel *options, const QString &binDir, bool x64);
|
2012-01-28 18:55:40 +01:00
|
|
|
~EncodeThread(void);
|
|
|
|
|
|
|
|
QUuid getId(void) { return this->m_jobId; };
|
2012-02-04 01:12:21 +01:00
|
|
|
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();
|
|
|
|
}
|
2012-01-28 18:55:40 +01:00
|
|
|
|
|
|
|
protected:
|
2012-01-29 21:31:09 +01:00
|
|
|
static QMutex m_mutex_startProcess;
|
2012-02-02 02:13:02 +01:00
|
|
|
static const int m_processTimeoutCounter = 24;
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-30 04:58:42 +01:00
|
|
|
//Constants
|
2012-01-28 18:55:40 +01:00
|
|
|
const QUuid m_jobId;
|
2012-01-29 15:57:23 +01:00
|
|
|
const QString m_sourceFileName;
|
|
|
|
const QString m_outputFileName;
|
2012-01-29 19:14:46 +01:00
|
|
|
const OptionsModel *m_options;
|
2012-01-29 21:31:09 +01:00
|
|
|
const QString m_binDir;
|
2012-01-30 17:50:19 +01:00
|
|
|
const bool m_x64;
|
2012-01-29 15:57:23 +01:00
|
|
|
|
2012-01-30 04:58:42 +01:00
|
|
|
//Flags
|
2012-01-28 23:24:41 +01:00
|
|
|
volatile bool m_abort;
|
2012-02-02 02:13:02 +01:00
|
|
|
volatile bool m_pause;
|
2012-01-30 04:58:42 +01:00
|
|
|
|
2012-02-02 02:13:02 +01:00
|
|
|
//Synchronization
|
|
|
|
QSemaphore m_semaphorePaused;
|
|
|
|
|
2012-01-31 00:13:32 +01:00
|
|
|
//Job handle
|
|
|
|
void *m_handle_jobObject;
|
|
|
|
|
2012-01-30 04:58:42 +01:00
|
|
|
//Internal status values
|
|
|
|
JobStatus m_status;
|
|
|
|
unsigned int m_progress;
|
|
|
|
|
|
|
|
//Entry point
|
2012-01-28 18:55:40 +01:00
|
|
|
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);
|
2012-02-04 01:12:21 +01:00
|
|
|
bool runEncodingPass(bool 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);
|
2012-01-31 20:28:40 +01:00
|
|
|
unsigned int checkVersionAvs2yuv(void);
|
2012-01-31 00:13:32 +01:00
|
|
|
bool checkProperties(unsigned int &frames);
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-29 19:14:46 +01:00
|
|
|
//Auxiallary Stuff
|
|
|
|
void log(const QString &text) { emit messageLogged(m_jobId, text); }
|
2012-01-30 04:58:42 +01:00
|
|
|
inline void setStatus(JobStatus newStatus);
|
|
|
|
inline void setProgress(unsigned int newProgress);
|
|
|
|
inline void setDetails(const QString &text);
|
2012-01-31 15:15:15 +01:00
|
|
|
bool startProcess(QProcess &process, const QString &program, const QStringList &args, bool mergeChannels = true);
|
2012-01-29 21:31:09 +01:00
|
|
|
|
|
|
|
static QString commandline2string(const QString &program, const QStringList &arguments);
|
2012-01-28 18:55:40 +01:00
|
|
|
|
|
|
|
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);
|
2012-01-28 23:24:41 +01:00
|
|
|
void detailsChanged(const QUuid &jobId, const QString &details);
|
2012-02-02 02:13:02 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void start(Priority priority = InheritPriority);
|
2012-01-28 18:55:40 +01:00
|
|
|
};
|
|
|
|
|