2011-01-21 00:10:51 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2017-03-12 12:12:49 +01:00
|
|
|
// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
|
2011-01-21 00:10:51 +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
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2011-01-21 00:10:51 +01:00
|
|
|
//
|
|
|
|
// 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 "Decoder_ALAC.h"
|
|
|
|
|
2014-11-30 21:32:23 +01:00
|
|
|
//Internal
|
2011-01-21 00:10:51 +01:00
|
|
|
#include "Global.h"
|
|
|
|
|
2014-11-30 21:32:23 +01:00
|
|
|
//MUtils
|
|
|
|
#include <MUtils/Exception.h>
|
|
|
|
|
|
|
|
//Qt
|
2011-01-21 00:10:51 +01:00
|
|
|
#include <QDir>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QRegExp>
|
|
|
|
#include <QUuid>
|
|
|
|
|
|
|
|
ALACDecoder::ALACDecoder(void)
|
|
|
|
:
|
2014-12-20 23:44:43 +01:00
|
|
|
m_binary(lamexp_tools_lookup("refalac.exe"))
|
2011-01-21 00:10:51 +01:00
|
|
|
{
|
|
|
|
if(m_binary.isEmpty())
|
|
|
|
{
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Error initializing ALAC decoder. Tool 'refalac.exe' is not registred!");
|
2011-01-21 00:10:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ALACDecoder::~ALACDecoder(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-18 21:05:28 +02:00
|
|
|
bool ALACDecoder::decode(const QString &sourceFile, const QString &outputFile, QAtomicInt &abortFlag)
|
2011-01-21 00:10:51 +01:00
|
|
|
{
|
|
|
|
QProcess process;
|
|
|
|
QStringList args;
|
|
|
|
|
2012-10-29 20:47:49 +01:00
|
|
|
args << "--decode";
|
|
|
|
args << "-o" << QDir::toNativeSeparators(outputFile);
|
2011-01-21 00:10:51 +01:00
|
|
|
args << QDir::toNativeSeparators(sourceFile);
|
|
|
|
|
|
|
|
if(!startProcess(process, m_binary, args))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bTimeout = false;
|
|
|
|
bool bAborted = false;
|
2012-10-29 20:47:49 +01:00
|
|
|
int prevProgress = -1;
|
2011-01-21 00:10:51 +01:00
|
|
|
|
|
|
|
//The ALAC Decoder doesn't actually send any status updates :-[
|
2012-10-29 20:47:49 +01:00
|
|
|
//emit statusUpdated(20 + (QUuid::createUuid().data1 % 60));
|
|
|
|
QRegExp regExp("\\[(\\d+)\\.(\\d)%\\]");
|
2011-01-21 00:10:51 +01:00
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
2017-04-18 21:05:28 +02:00
|
|
|
if(checkFlag(abortFlag))
|
2011-01-21 00:10:51 +01:00
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
bAborted = true;
|
|
|
|
emit messageLogged("\nABORTED BY USER !!!");
|
|
|
|
break;
|
|
|
|
}
|
2011-06-14 13:06:27 +02:00
|
|
|
process.waitForReadyRead(m_processTimeoutInterval);
|
2011-01-21 00:10:51 +01:00
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
process.kill();
|
2011-06-14 13:06:27 +02:00
|
|
|
qWarning("ALAC process timed out <-- killing!");
|
2011-02-28 17:53:17 +01:00
|
|
|
emit messageLogged("\nPROCESS TIMEOUT !!!");
|
2011-01-21 00:10:51 +01:00
|
|
|
bTimeout = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while(process.bytesAvailable() > 0)
|
|
|
|
{
|
|
|
|
QByteArray line = process.readLine();
|
|
|
|
QString text = QString::fromUtf8(line.constData()).simplified();
|
2012-10-29 20:47:49 +01:00
|
|
|
if(regExp.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
bool ok[2] = {false, false};
|
|
|
|
int intVal[2] = {0, 0};
|
|
|
|
intVal[0] = regExp.cap(1).toInt(&ok[0]);
|
|
|
|
intVal[1] = regExp.cap(2).toInt(&ok[1]);
|
|
|
|
if(ok[0] && ok[1])
|
|
|
|
{
|
|
|
|
int progress = qRound(static_cast<double>(intVal[0]) + (static_cast<double>(intVal[1]) / 10.0));
|
|
|
|
if(progress > prevProgress)
|
|
|
|
{
|
|
|
|
emit statusUpdated(progress);
|
|
|
|
prevProgress = qMin(progress + 2, 99);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(!text.isEmpty())
|
2011-01-21 00:10:51 +01:00
|
|
|
{
|
|
|
|
emit messageLogged(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.waitForFinished();
|
|
|
|
if(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
emit statusUpdated(100);
|
|
|
|
emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
|
|
|
|
|
2011-12-22 00:06:34 +01:00
|
|
|
if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS || QFileInfo(outputFile).size() == 0)
|
2011-01-21 00:10:51 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ALACDecoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
|
|
|
|
{
|
|
|
|
if(containerType.compare("MPEG-4", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
if(formatType.compare("ALAC", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-05-18 18:56:33 +02:00
|
|
|
const AbstractDecoder::supportedType_t *ALACDecoder::supportedTypes(void)
|
2011-01-21 00:10:51 +01:00
|
|
|
{
|
2015-05-18 18:56:33 +02:00
|
|
|
static const char *exts[] =
|
|
|
|
{
|
|
|
|
"mp4", "m4a", NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const supportedType_t s_supportedTypes[] =
|
|
|
|
{
|
|
|
|
{ "Apple Lossless", exts },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
return s_supportedTypes;
|
2011-01-21 00:10:51 +01:00
|
|
|
}
|