Make sure the "queued" slots in the FileAnalyzer thread are really executed in the...
[LameXP.git] / src / Decoder_Musepack.cpp
blob2f8d0cd51c4b3a817f37f1d591818288e9772be5
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2014 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, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #include "Decoder_Musepack.h"
25 #include "Global.h"
27 #include <QDir>
28 #include <QProcess>
29 #include <QRegExp>
30 #include <QUuid>
32 MusepackDecoder::MusepackDecoder(void)
34 m_binary(lamexp_lookup_tool("mpcdec.exe"))
36 if(m_binary.isEmpty())
38 THROW("Error initializing Musepack decoder. Tool 'mpcdec.exe' is not registred!");
42 MusepackDecoder::~MusepackDecoder(void)
46 bool MusepackDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag)
48 QProcess process;
49 QStringList args;
51 args << "-v";
52 args << QDir::toNativeSeparators(sourceFile);
53 args << QDir::toNativeSeparators(outputFile);
55 if(!startProcess(process, m_binary, args))
57 return false;
60 bool bTimeout = false;
61 bool bAborted = false;
62 int prevProgress = -1;
64 QRegExp regExp("Decoding progress: (\\d+)\\.(\\d+)%");
66 while(process.state() != QProcess::NotRunning)
68 if(*abortFlag)
70 process.kill();
71 bAborted = true;
72 emit messageLogged("\nABORTED BY USER !!!");
73 break;
75 process.waitForReadyRead(m_processTimeoutInterval);
76 if(!process.bytesAvailable() && process.state() == QProcess::Running)
78 process.kill();
79 qWarning("MpcDec process timed out <-- killing!");
80 emit messageLogged("\nPROCESS TIMEOUT !!!");
81 bTimeout = true;
82 break;
84 while(process.bytesAvailable() > 0)
86 QByteArray line = process.readLine();
87 QString text = QString::fromUtf8(line.constData()).simplified();
88 if(regExp.lastIndexIn(text) >= 0)
90 bool ok = false;
91 int progress = regExp.cap(1).toInt(&ok);
92 if(ok && (progress > prevProgress))
94 emit statusUpdated(progress);
95 prevProgress = qMin(progress + 2, 99);
98 else if(!text.isEmpty())
100 emit messageLogged(text);
105 process.waitForFinished();
106 if(process.state() != QProcess::NotRunning)
108 process.kill();
109 process.waitForFinished(-1);
112 emit statusUpdated(100);
113 emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
115 if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS || QFileInfo(outputFile).size() == 0)
117 return false;
120 return true;
123 bool MusepackDecoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
125 if(containerType.compare("Musepack SV8", Qt::CaseInsensitive) == 0 || containerType.compare("Musepack SV7", Qt::CaseInsensitive) == 0)
127 if(formatType.compare("Musepack SV8", Qt::CaseInsensitive) == 0 || formatType.compare("Musepack SV7", Qt::CaseInsensitive) == 0)
129 return true;
133 return false;
136 QStringList MusepackDecoder::supportedTypes(void)
138 return QStringList() << "Musepack (*.mpc *.mpp *.mp+)";