Bump version + updated changelog.
[simple-x264-launcher.git] / src / source_abstract.cpp
blob58031699f14ffd0df56283269803401239237049
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2018 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "source_abstract.h"
24 //Internal
25 #include "global.h"
26 #include "model_sysinfo.h"
27 #include "model_options.h"
28 #include "model_preferences.h"
30 //MUtils
31 #include <MUtils/Global.h>
32 #include <MUtils/Exception.h>
34 //Qt
35 #include <QProcess>
36 #include <QTextCodec>
37 #include <QDir>
38 #include <QPair>
40 // ------------------------------------------------------------
41 // Constructor & Destructor
42 // ------------------------------------------------------------
44 AbstractSource::AbstractSource(JobObject *jobObject, const OptionsModel *options, const SysinfoModel *const sysinfo, const PreferencesModel *const preferences, JobStatus &jobStatus, volatile bool *abort, volatile bool *pause, QSemaphore *semaphorePause, const QString &sourceFile)
46 AbstractTool(jobObject, options, sysinfo, preferences, jobStatus, abort, pause, semaphorePause),
47 m_sourceFile(sourceFile)
49 /*Nothing to do here*/
52 AbstractSource::~AbstractSource(void)
54 /*Nothing to do here*/
57 // ------------------------------------------------------------
58 // Check Source Properties
59 // ------------------------------------------------------------
61 bool AbstractSource::checkSourceProperties(ClipInfo &clipInfo)
63 QStringList cmdLine;
64 QList<QRegExp*> patterns;
65 QProcess process;
67 checkSourceProperties_init(patterns, cmdLine);
69 log("Creating process:");
70 if(!startProcess(process, getBinaryPath(), cmdLine, true, &getExtraPaths()))
72 return false;;
75 QTextCodec *localCodec = QTextCodec::codecForName("System");
77 bool bTimeout = false;
78 bool bAborted = false;
80 clipInfo.reset();
82 unsigned int waitCounter = 0;
84 while(process.state() != QProcess::NotRunning)
86 if(*m_abort)
88 process.kill();
89 bAborted = true;
90 break;
92 if(!process.waitForReadyRead(m_processTimeoutInterval))
94 if(process.state() == QProcess::Running)
96 if(++waitCounter > m_processTimeoutMaxCounter)
98 if(m_preferences->getAbortOnTimeout())
100 process.kill();
101 qWarning("Source process timed out <-- killing!");
102 log("\nPROCESS TIMEOUT !!!");
103 log("\nInput process has encountered a deadlock or your script takes EXTREMELY long to initialize!");
104 bTimeout = true;
105 break;
108 else if(waitCounter == m_processTimeoutWarning)
110 unsigned int timeOut = (waitCounter * m_processTimeoutInterval) / 1000U;
111 log(tr("Warning: Input process did not respond for %1 seconds, potential deadlock...").arg(QString::number(timeOut)));
114 continue;
117 waitCounter = 0;
118 PROCESS_PENDING_LINES(process, checkSourceProperties_parseLine, patterns, clipInfo);
121 if(!(bTimeout || bAborted))
123 PROCESS_PENDING_LINES(process, checkSourceProperties_parseLine, patterns, clipInfo);
126 process.waitForFinished();
127 if(process.state() != QProcess::NotRunning)
129 process.kill();
130 process.waitForFinished(-1);
133 while(!patterns.isEmpty())
135 QRegExp *pattern = patterns.takeFirst();
136 MUTILS_DELETE(pattern);
139 if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS)
141 if(!(bTimeout || bAborted))
143 const int exitCode = process.exitCode();
144 log(tr("\nPROCESS EXITED WITH ERROR CODE: %1").arg(QString::number(exitCode)));
145 if((exitCode < 0) || (exitCode >= 32))
147 log(tr("\nIMPORTANT: The Avs2YUV process terminated abnormally. This means Avisynth or one of your Avisynth-Plugin's just crashed."));
148 log(tr("IMPORTANT: Please fix your Avisynth script and try again! If you use Avisynth-MT, try using a *stable* Avisynth instead!"));
151 return false;
154 if(clipInfo.getFrameCount() < 1)
156 log(tr("\nFAILED TO DETERMINE CLIP PROPERTIES !!!"));
157 return false;
160 log("");
162 const QPair<quint32, quint32> frameSize = clipInfo.getFrameSize();
163 if((frameSize.first > 0) && (frameSize.second > 0))
165 log(tr("Resolution: %1 x %2").arg(QString::number(frameSize.first), QString::number(frameSize.second)));
168 const QPair<quint32, quint32> frameRate = clipInfo.getFrameRate();
169 if((frameRate.first > 0) && (frameRate.second > 0))
171 log(tr("Frame Rate: %1/%2").arg(QString::number(frameRate.first), QString::number(frameRate.second)));
173 else if(frameRate.first > 0)
175 log(tr("Frame Rate: %1").arg(QString::number(frameRate.first)));
178 log(tr("No. Frames: %1").arg(QString::number(clipInfo.getFrameCount())));
179 return true;
182 // ------------------------------------------------------------
183 // Source Processing
184 // ------------------------------------------------------------
186 bool AbstractSource::createProcess(QProcess &processEncode, QProcess&processInput)
188 processInput.setStandardOutputProcess(&processEncode);
190 QStringList cmdLine_Input;
191 buildCommandLine(cmdLine_Input);
193 log("Creating input process:");
194 if(!startProcess(processInput, getBinaryPath(), cmdLine_Input, false, &getExtraPaths()))
196 return false;
199 return true;
202 // ------------------------------------------------------------
203 // Source Info
204 // ------------------------------------------------------------
206 const AbstractSourceInfo& AbstractSource::getSourceInfo(void)
208 MUTILS_THROW("[getSourceInfo] This function must be overwritten in sub-classes!");