2010-11-06 23:04:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2011-01-01 17:04:25 +01:00
|
|
|
// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-11-06 23:04:47 +01:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Thread_Initialization.h"
|
|
|
|
|
|
|
|
#include "LockedFile.h"
|
2011-10-19 00:24:03 +02:00
|
|
|
#include "Tools.h"
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-11-11 22:58:02 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QCoreApplication>
|
2010-11-12 15:58:53 +01:00
|
|
|
#include <QProcess>
|
2010-12-12 01:49:07 +01:00
|
|
|
#include <QMap>
|
|
|
|
#include <QDir>
|
2010-12-12 13:44:11 +01:00
|
|
|
#include <QLibrary>
|
2011-01-04 19:58:18 +01:00
|
|
|
#include <QResource>
|
2011-01-25 01:41:57 +01:00
|
|
|
#include <QTime>
|
2010-12-12 13:44:11 +01:00
|
|
|
|
2011-10-19 00:24:03 +02:00
|
|
|
/* helper macros */
|
2011-10-18 18:54:56 +02:00
|
|
|
#define PRINT_CPU_TYPE(X) case X: qDebug("Selected CPU is: " #X)
|
2011-06-24 18:17:04 +02:00
|
|
|
static const double g_allowedExtractDelay = 10.0;
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Constructor
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
InitializationThread::InitializationThread(const lamexp_cpu_t *cpuFeatures)
|
2010-11-06 23:04:47 +01:00
|
|
|
{
|
|
|
|
m_bSuccess = false;
|
2011-04-11 02:53:29 +02:00
|
|
|
memset(&m_cpuFeatures, 0, sizeof(lamexp_cpu_t));
|
2011-06-24 18:17:04 +02:00
|
|
|
m_slowIndicator = false;
|
2011-04-11 02:53:29 +02:00
|
|
|
|
|
|
|
if(cpuFeatures)
|
|
|
|
{
|
|
|
|
memcpy(&m_cpuFeatures, cpuFeatures, sizeof(lamexp_cpu_t));
|
|
|
|
}
|
2010-11-06 23:04:47 +01:00
|
|
|
}
|
|
|
|
|
2010-11-12 15:58:53 +01:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Thread Main
|
|
|
|
////////////////////////////////////////////////////////////
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
void InitializationThread::run()
|
|
|
|
{
|
|
|
|
m_bSuccess = false;
|
2011-04-17 20:38:49 +02:00
|
|
|
bool bCustom = false;
|
2010-11-06 23:04:47 +01:00
|
|
|
delay();
|
2011-03-21 17:36:43 +01:00
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
//CPU type selection
|
2011-10-18 18:54:56 +02:00
|
|
|
unsigned int cpuSupport = 0;
|
|
|
|
if(m_cpuFeatures.sse && m_cpuFeatures.sse2 && m_cpuFeatures.intel)
|
|
|
|
{
|
|
|
|
cpuSupport = m_cpuFeatures.x64 ? CPU_TYPE_X64_SSE : CPU_TYPE_X86_SSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cpuSupport = m_cpuFeatures.x64 ? CPU_TYPE_X64_GEN : CPU_TYPE_X86_GEN;
|
|
|
|
}
|
|
|
|
|
2011-10-21 16:17:22 +02:00
|
|
|
//Hack to disable x64 on the Windows 8 Developer Preview
|
|
|
|
if(cpuSupport & CPU_TYPE_X64_ALL)
|
|
|
|
{
|
|
|
|
DWORD osVerNo = lamexp_get_os_version();
|
|
|
|
if((HIWORD(osVerNo) == 6) && (LOWORD(osVerNo) == 2))
|
|
|
|
{
|
|
|
|
qWarning("Windows 8 (x64) developer preview detected. Going to disable all x64 support!\n");
|
|
|
|
cpuSupport = (cpuSupport == CPU_TYPE_X64_SSE) ? CPU_TYPE_X86_SSE : CPU_TYPE_X86_GEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-18 18:54:56 +02:00
|
|
|
//Print selected CPU type
|
|
|
|
switch(cpuSupport)
|
|
|
|
{
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X86_GEN); break;
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X86_SSE); break;
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X64_GEN); break;
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X64_SSE); break;
|
|
|
|
default: throw "CPU support undefined!";
|
|
|
|
}
|
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
//Allocate maps
|
|
|
|
QMap<QString, QString> mapChecksum;
|
|
|
|
QMap<QString, unsigned int> mapVersion;
|
|
|
|
QMap<QString, unsigned int> mapCpuType;
|
2010-12-12 01:49:07 +01:00
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
//Init properties
|
2010-11-06 23:04:47 +01:00
|
|
|
for(int i = 0; i < INT_MAX; i++)
|
|
|
|
{
|
2010-12-18 15:15:17 +01:00
|
|
|
if(!g_lamexp_tools[i].pcName && !g_lamexp_tools[i].pcHash && !g_lamexp_tools[i].uiVersion)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if(g_lamexp_tools[i].pcName && g_lamexp_tools[i].pcHash && g_lamexp_tools[i].uiVersion)
|
2010-11-06 23:04:47 +01:00
|
|
|
{
|
2010-12-15 22:39:18 +01:00
|
|
|
const QString currentTool = QString::fromLatin1(g_lamexp_tools[i].pcName);
|
2011-04-11 02:53:29 +02:00
|
|
|
mapChecksum.insert(currentTool, QString::fromLatin1(g_lamexp_tools[i].pcHash));
|
|
|
|
mapCpuType.insert(currentTool, g_lamexp_tools[i].uiCpuType);
|
|
|
|
mapVersion.insert(currentTool, g_lamexp_tools[i].uiVersion);
|
2010-11-06 23:04:47 +01:00
|
|
|
}
|
2010-12-18 15:15:17 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
qFatal("Inconsistent checksum data detected. Take care!");
|
|
|
|
}
|
2010-12-12 01:49:07 +01:00
|
|
|
}
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-12-12 01:49:07 +01:00
|
|
|
QDir toolsDir(":/tools/");
|
|
|
|
QList<QFileInfo> toolsList = toolsDir.entryInfoList(QStringList("*.*"), QDir::Files, QDir::Name);
|
2011-04-17 20:38:49 +02:00
|
|
|
QDir appDir = QDir(QCoreApplication::applicationDirPath()).canonicalPath();
|
|
|
|
|
2011-01-25 01:41:57 +01:00
|
|
|
QTime timer;
|
|
|
|
timer.start();
|
2011-04-17 20:38:49 +02:00
|
|
|
|
2010-12-12 01:49:07 +01:00
|
|
|
//Extract all files
|
2011-04-11 02:53:29 +02:00
|
|
|
while(!toolsList.isEmpty())
|
2010-12-12 01:49:07 +01:00
|
|
|
{
|
2010-11-06 23:04:47 +01:00
|
|
|
try
|
|
|
|
{
|
2011-04-11 02:53:29 +02:00
|
|
|
QFileInfo currentTool = toolsList.takeFirst();
|
|
|
|
QString toolName = currentTool.fileName().toLower();
|
|
|
|
QString toolShortName = QString("%1.%2").arg(currentTool.baseName().toLower(), currentTool.suffix().toLower());
|
|
|
|
|
|
|
|
QByteArray toolHash = mapChecksum.take(toolName).toLatin1();
|
|
|
|
unsigned int toolCpuType = mapCpuType.take(toolName);
|
|
|
|
unsigned int toolVersion = mapVersion.take(toolName);
|
|
|
|
|
2011-07-06 23:30:43 +02:00
|
|
|
if(toolHash.size() != 72)
|
2010-12-12 01:49:07 +01:00
|
|
|
{
|
|
|
|
throw "The required checksum is missing, take care!";
|
|
|
|
}
|
2011-04-11 02:53:29 +02:00
|
|
|
|
|
|
|
if(toolCpuType & cpuSupport)
|
|
|
|
{
|
2011-04-17 20:38:49 +02:00
|
|
|
QFileInfo customTool(QString("%1/tools/%2/%3").arg(appDir.canonicalPath(), QString::number(lamexp_version_build()), toolShortName));
|
|
|
|
if(customTool.exists() && customTool.isFile())
|
|
|
|
{
|
|
|
|
bCustom = true;
|
|
|
|
qDebug("Setting up file: %s <- %s", toolShortName.toLatin1().constData(), appDir.relativeFilePath(customTool.canonicalFilePath()).toLatin1().constData());
|
|
|
|
LockedFile *lockedFile = new LockedFile(customTool.canonicalFilePath());
|
|
|
|
lamexp_register_tool(toolShortName, lockedFile, UINT_MAX);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("Extracting file: %s -> %s", toolName.toLatin1().constData(), toolShortName.toLatin1().constData());
|
|
|
|
LockedFile *lockedFile = new LockedFile(QString(":/tools/%1").arg(toolName), QString("%1/tool_%2").arg(lamexp_temp_folder2(), toolShortName), toolHash);
|
|
|
|
lamexp_register_tool(toolShortName, lockedFile, toolVersion);
|
|
|
|
}
|
2011-04-11 02:53:29 +02:00
|
|
|
}
|
2010-11-06 23:04:47 +01:00
|
|
|
}
|
|
|
|
catch(char *errorMsg)
|
|
|
|
{
|
2011-04-17 20:38:49 +02:00
|
|
|
qFatal("At least one of the required tools could not be initialized:\n%s", errorMsg);
|
2010-11-06 23:04:47 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
//Make sure all files were extracted
|
|
|
|
if(!mapChecksum.isEmpty())
|
2010-12-12 01:49:07 +01:00
|
|
|
{
|
2011-04-11 02:53:29 +02:00
|
|
|
qFatal("At least one required tool could not be found:\n%s", toolsDir.filePath(mapChecksum.keys().first()).toLatin1().constData());
|
2010-12-12 01:49:07 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-17 20:38:49 +02:00
|
|
|
qDebug("All extracted.\n");
|
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
//Clean-up
|
|
|
|
mapChecksum.clear();
|
|
|
|
mapVersion.clear();
|
|
|
|
mapCpuType.clear();
|
2011-04-17 20:38:49 +02:00
|
|
|
|
|
|
|
//Using any custom tools?
|
|
|
|
if(bCustom)
|
|
|
|
{
|
|
|
|
qWarning("Warning: Using custom tools, you might encounter unexpected problems!\n");
|
|
|
|
}
|
2010-11-11 22:58:02 +01:00
|
|
|
|
2011-01-25 01:41:57 +01:00
|
|
|
//Check delay
|
|
|
|
double delayExtract = static_cast<double>(timer.elapsed()) / 1000.0;
|
2011-06-24 18:17:04 +02:00
|
|
|
if(delayExtract > g_allowedExtractDelay)
|
2011-01-25 01:41:57 +01:00
|
|
|
{
|
2011-06-24 18:17:04 +02:00
|
|
|
m_slowIndicator = true;
|
2011-01-25 01:41:57 +01:00
|
|
|
qWarning("Extracting tools took %.3f seconds -> probably slow realtime virus scanner.", delayExtract);
|
|
|
|
qWarning("Please report performance problems to your anti-virus developer !!!\n");
|
|
|
|
}
|
|
|
|
|
2011-01-04 19:58:18 +01:00
|
|
|
//Register all translations
|
|
|
|
initTranslations();
|
|
|
|
|
2011-08-19 15:27:58 +02:00
|
|
|
//Look for Nero AAC encoder
|
2010-11-12 15:58:53 +01:00
|
|
|
initNeroAac();
|
2010-12-12 13:44:11 +01:00
|
|
|
|
2011-08-19 15:27:58 +02:00
|
|
|
//Look for FHG AAC encoder
|
|
|
|
initFhgAac();
|
|
|
|
|
2010-11-12 15:58:53 +01:00
|
|
|
delay();
|
|
|
|
m_bSuccess = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// PUBLIC FUNCTIONS
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void InitializationThread::delay(void)
|
|
|
|
{
|
|
|
|
const char *temp = "|/-\\";
|
|
|
|
printf("Thread is doing something important... ?\b", temp[4]);
|
|
|
|
|
|
|
|
for(int i = 0; i < 20; i++)
|
|
|
|
{
|
|
|
|
printf("%c\b", temp[i%4]);
|
2011-01-25 01:41:57 +01:00
|
|
|
msleep(25);
|
2010-11-12 15:58:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("Done\n\n");
|
|
|
|
}
|
|
|
|
|
2011-01-04 19:58:18 +01:00
|
|
|
void InitializationThread::initTranslations(void)
|
|
|
|
{
|
|
|
|
//Search for language files
|
|
|
|
QStringList qmFiles = QDir(":/localization").entryList(QStringList() << "LameXP_??.qm", QDir::Files, QDir::Name);
|
|
|
|
|
|
|
|
//Make sure we found at least one translation
|
|
|
|
if(qmFiles.count() < 1)
|
|
|
|
{
|
|
|
|
qFatal("Could not find any translation files!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Add all available translations
|
|
|
|
while(!qmFiles.isEmpty())
|
|
|
|
{
|
|
|
|
QString langId, langName;
|
|
|
|
unsigned int systemId = 0;
|
|
|
|
QString qmFile = qmFiles.takeFirst();
|
|
|
|
|
|
|
|
QRegExp langIdExp("LameXP_(\\w\\w)\\.qm", Qt::CaseInsensitive);
|
|
|
|
if(langIdExp.indexIn(qmFile) >= 0)
|
|
|
|
{
|
|
|
|
langId = langIdExp.cap(1).toLower();
|
|
|
|
}
|
|
|
|
|
|
|
|
QResource langRes = (QString(":/localization/%1.txt").arg(qmFile));
|
|
|
|
if(langRes.isValid() && langRes.size() > 0)
|
|
|
|
{
|
|
|
|
QStringList langInfo = QString::fromUtf8(reinterpret_cast<const char*>(langRes.data()), langRes.size()).simplified().split(",", QString::SkipEmptyParts);
|
|
|
|
if(langInfo.count() == 2)
|
|
|
|
{
|
|
|
|
systemId = langInfo.at(0).toUInt();
|
|
|
|
langName = langInfo.at(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lamexp_translation_register(langId, qmFile, langName, systemId))
|
|
|
|
{
|
2011-09-29 20:06:09 +02:00
|
|
|
qDebug("Registering translation: %s = %s (%u)", qmFile.toUtf8().constData(), langName.toUtf8().constData(), systemId);
|
2011-01-04 19:58:18 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qWarning("Failed to register: %s", qmFile.toLatin1().constData());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug("All registered.\n");
|
|
|
|
}
|
|
|
|
|
2010-11-12 15:58:53 +01:00
|
|
|
void InitializationThread::initNeroAac(void)
|
|
|
|
{
|
2011-04-17 20:38:49 +02:00
|
|
|
const QString appPath = QDir(QCoreApplication::applicationDirPath()).canonicalPath();
|
|
|
|
|
2010-11-11 22:58:02 +01:00
|
|
|
QFileInfo neroFileInfo[3];
|
2011-04-17 20:38:49 +02:00
|
|
|
neroFileInfo[0] = QFileInfo(QString("%1/neroAacEnc.exe").arg(appPath));
|
|
|
|
neroFileInfo[1] = QFileInfo(QString("%1/neroAacDec.exe").arg(appPath));
|
|
|
|
neroFileInfo[2] = QFileInfo(QString("%1/neroAacTag.exe").arg(appPath));
|
2010-11-11 22:58:02 +01:00
|
|
|
|
|
|
|
bool neroFilesFound = true;
|
|
|
|
for(int i = 0; i < 3; i++) { if(!neroFileInfo[i].exists()) neroFilesFound = false; }
|
|
|
|
|
|
|
|
//Lock the Nero binaries
|
2010-11-12 15:58:53 +01:00
|
|
|
if(!neroFilesFound)
|
2010-11-11 22:58:02 +01:00
|
|
|
{
|
2010-11-12 15:58:53 +01:00
|
|
|
qDebug("Nero encoder binaries not found -> AAC encoding support will be disabled!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-15 22:07:46 +01:00
|
|
|
qDebug("Found Nero AAC encoder binary:\n%s\n", neroFileInfo[0].canonicalFilePath().toUtf8().constData());
|
2010-11-12 15:58:53 +01:00
|
|
|
|
|
|
|
LockedFile *neroBin[3];
|
|
|
|
for(int i = 0; i < 3; i++) neroBin[i] = NULL;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
for(int i = 0; i < 3; i++)
|
|
|
|
{
|
2010-11-15 22:07:46 +01:00
|
|
|
neroBin[i] = new LockedFile(neroFileInfo[i].canonicalFilePath());
|
2010-11-12 15:58:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < 3; i++) LAMEXP_DELETE(neroBin[i]);
|
2010-11-20 19:16:04 +01:00
|
|
|
qWarning("Failed to get excluive lock to Nero encoder binary -> AAC encoding support will be disabled!");
|
2010-11-12 15:58:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
process.setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
process.setReadChannel(QProcess::StandardOutput);
|
2010-11-20 16:17:51 +01:00
|
|
|
process.start(neroFileInfo[0].canonicalFilePath(), QStringList() << "-help");
|
2010-11-12 15:58:53 +01:00
|
|
|
|
|
|
|
if(!process.waitForStarted())
|
|
|
|
{
|
|
|
|
qWarning("Nero process failed to create!");
|
2010-11-18 22:37:35 +01:00
|
|
|
qWarning("Error message: \"%s\"\n", process.errorString().toLatin1().constData());
|
2010-11-12 15:58:53 +01:00
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
for(int i = 0; i < 3; i++) LAMEXP_DELETE(neroBin[i]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int neroVersion = 0;
|
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
if(!process.waitForReadyRead())
|
2010-11-11 22:58:02 +01:00
|
|
|
{
|
2010-11-12 15:58:53 +01:00
|
|
|
if(process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
qWarning("Nero process time out -> killing!");
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
for(int i = 0; i < 3; i++) LAMEXP_DELETE(neroBin[i]);
|
|
|
|
return;
|
|
|
|
}
|
2010-11-11 22:58:02 +01:00
|
|
|
}
|
2010-11-12 15:58:53 +01:00
|
|
|
|
2010-11-18 22:37:35 +01:00
|
|
|
while(process.canReadLine())
|
2010-11-11 22:58:02 +01:00
|
|
|
{
|
2010-11-18 22:37:35 +01:00
|
|
|
QString line = QString::fromUtf8(process.readLine().constData()).simplified();
|
2010-11-12 15:58:53 +01:00
|
|
|
QStringList tokens = line.split(" ", QString::SkipEmptyParts, Qt::CaseInsensitive);
|
|
|
|
int index1 = tokens.indexOf("Package");
|
|
|
|
int index2 = tokens.indexOf("version:");
|
|
|
|
if(index1 >= 0 && index2 >= 0 && index1 + 1 == index2 && index2 < tokens.count() - 1)
|
|
|
|
{
|
|
|
|
QStringList versionTokens = tokens.at(index2 + 1).split(".", QString::SkipEmptyParts, Qt::CaseInsensitive);
|
|
|
|
if(versionTokens.count() == 4)
|
|
|
|
{
|
|
|
|
neroVersion = 0;
|
2011-11-08 15:12:31 +01:00
|
|
|
neroVersion += qMin(9, qMax(0, versionTokens.at(3).toInt()));
|
|
|
|
neroVersion += qMin(9, qMax(0, versionTokens.at(2).toInt())) * 10;
|
|
|
|
neroVersion += qMin(9, qMax(0, versionTokens.at(1).toInt())) * 100;
|
|
|
|
neroVersion += qMin(9, qMax(0, versionTokens.at(0).toInt())) * 1000;
|
2010-11-12 15:58:53 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-11 22:58:02 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-12 15:58:53 +01:00
|
|
|
|
|
|
|
if(!(neroVersion > 0))
|
2010-11-11 22:58:02 +01:00
|
|
|
{
|
2010-12-14 01:25:13 +01:00
|
|
|
qWarning("Nero AAC version could not be determined -> AAC encoding support will be disabled!");
|
2010-11-12 15:58:53 +01:00
|
|
|
for(int i = 0; i < 3; i++) LAMEXP_DELETE(neroBin[i]);
|
|
|
|
return;
|
2010-11-11 22:58:02 +01:00
|
|
|
}
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-11-12 15:58:53 +01:00
|
|
|
for(int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
lamexp_register_tool(neroFileInfo[i].fileName(), neroBin[i], neroVersion);
|
|
|
|
}
|
2010-11-06 23:04:47 +01:00
|
|
|
}
|
|
|
|
|
2011-08-19 15:27:58 +02:00
|
|
|
void InitializationThread::initFhgAac(void)
|
|
|
|
{
|
|
|
|
const QString appPath = QDir(QCoreApplication::applicationDirPath()).canonicalPath();
|
|
|
|
|
|
|
|
QFileInfo fhgFileInfo[4];
|
|
|
|
fhgFileInfo[0] = QFileInfo(QString("%1/fhgaacenc.exe").arg(appPath));
|
|
|
|
fhgFileInfo[1] = QFileInfo(QString("%1/enc_fhgaac.dll").arg(appPath));
|
|
|
|
fhgFileInfo[2] = QFileInfo(QString("%1/nsutil.dll").arg(appPath));
|
|
|
|
fhgFileInfo[3] = QFileInfo(QString("%1/libmp4v2.dll").arg(appPath));
|
|
|
|
|
|
|
|
bool fhgFilesFound = true;
|
|
|
|
for(int i = 0; i < 4; i++) { if(!fhgFileInfo[i].exists()) fhgFilesFound = false; }
|
|
|
|
|
|
|
|
//Lock the FhgAacEnc binaries
|
|
|
|
if(!fhgFilesFound)
|
|
|
|
{
|
|
|
|
qDebug("FhgAacEnc binaries not found -> FhgAacEnc support will be disabled!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-21 14:43:18 +02:00
|
|
|
qDebug("Found FhgAacEnc cli_exe:\n%s\n", fhgFileInfo[0].canonicalFilePath().toUtf8().constData());
|
|
|
|
qDebug("Found FhgAacEnc enc_dll:\n%s\n", fhgFileInfo[1].canonicalFilePath().toUtf8().constData());
|
2011-08-19 15:27:58 +02:00
|
|
|
|
|
|
|
LockedFile *fhgBin[4];
|
|
|
|
for(int i = 0; i < 4; i++) fhgBin[i] = NULL;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
fhgBin[i] = new LockedFile(fhgFileInfo[i].canonicalFilePath());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < 4; i++) LAMEXP_DELETE(fhgBin[i]);
|
|
|
|
qWarning("Failed to get excluive lock to FhgAacEnc binary -> FhgAacEnc support will be disabled!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
process.setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
process.setReadChannel(QProcess::StandardOutput);
|
|
|
|
process.start(fhgFileInfo[0].canonicalFilePath(), QStringList() << "--version");
|
|
|
|
|
|
|
|
if(!process.waitForStarted())
|
|
|
|
{
|
|
|
|
qWarning("FhgAacEnc process failed to create!");
|
|
|
|
qWarning("Error message: \"%s\"\n", process.errorString().toLatin1().constData());
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
for(int i = 0; i < 4; i++) LAMEXP_DELETE(fhgBin[i]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QRegExp fhgAacEncSig("fhgaacenc version (\\d+) by tmkk", Qt::CaseInsensitive);
|
|
|
|
unsigned int fhgVersion = 0;
|
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.waitForReadyRead();
|
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
qWarning("FhgAacEnc process time out -> killing!");
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
for(int i = 0; i < 4; i++) LAMEXP_DELETE(fhgBin[i]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while(process.bytesAvailable() > 0)
|
|
|
|
{
|
|
|
|
QString line = QString::fromUtf8(process.readLine().constData()).simplified();
|
|
|
|
if(fhgAacEncSig.lastIndexIn(line) >= 0)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
unsigned int temp = fhgAacEncSig.cap(1).toUInt(&ok);
|
|
|
|
if(ok) fhgVersion = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!(fhgVersion > 0))
|
|
|
|
{
|
|
|
|
qWarning("FhgAacEnc version couldn't be determined -> FhgAacEnc support will be disabled!");
|
|
|
|
for(int i = 0; i < 4; i++) LAMEXP_DELETE(fhgBin[i]);
|
|
|
|
return;
|
|
|
|
}
|
2011-08-21 14:43:18 +02:00
|
|
|
else if(fhgVersion < lamexp_toolver_fhgaacenc())
|
2011-08-19 15:27:58 +02:00
|
|
|
{
|
|
|
|
qWarning("FhgAacEnc version is too much outdated -> FhgAacEnc support will be disabled!");
|
|
|
|
for(int i = 0; i < 4; i++) LAMEXP_DELETE(fhgBin[i]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
lamexp_register_tool(fhgFileInfo[i].fileName(), fhgBin[i], fhgVersion);
|
|
|
|
}
|
|
|
|
}
|
2010-12-12 13:44:11 +01:00
|
|
|
|
2011-10-19 00:24:03 +02:00
|
|
|
void InitializationThread::selfTest(void)
|
|
|
|
{
|
|
|
|
const unsigned int cpu[4] = {CPU_TYPE_X86_GEN, CPU_TYPE_X86_SSE, CPU_TYPE_X64_GEN, CPU_TYPE_X64_SSE};
|
|
|
|
|
|
|
|
for(size_t k = 0; k < 4; k++)
|
|
|
|
{
|
|
|
|
qDebug("[TEST]");
|
|
|
|
switch(cpu[k])
|
|
|
|
{
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X86_GEN); break;
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X86_SSE); break;
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X64_GEN); break;
|
|
|
|
PRINT_CPU_TYPE(CPU_TYPE_X64_SSE); break;
|
|
|
|
default: throw "CPU support undefined!";
|
|
|
|
}
|
|
|
|
int n = 0;
|
|
|
|
for(int i = 0; i < INT_MAX; i++)
|
|
|
|
{
|
|
|
|
if(!g_lamexp_tools[i].pcName && !g_lamexp_tools[i].pcHash && !g_lamexp_tools[i].uiVersion)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(g_lamexp_tools[i].uiCpuType & cpu[k])
|
|
|
|
{
|
|
|
|
qDebug("%02i -> %s", ++n, g_lamexp_tools[i].pcName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(n != 24)
|
|
|
|
{
|
|
|
|
qFatal("Tool count mismatch !!!");
|
|
|
|
}
|
|
|
|
qDebug("Done.\n");
|
|
|
|
}
|
|
|
|
}
|
2010-12-12 13:44:11 +01:00
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// EVENTS
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*NONE*/
|