OSDN Git Service

Moved translation support into MUtilities library + make clean-up of temporary files...
[lamexp/LameXP.git] / src / Decoder_Vorbis.cpp
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.
10 //
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.
15 //
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.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include "Decoder_Vorbis.h"
24
25 //Internal
26 #include "Global.h"
27
28 //MUtils
29 #include <MUtils/Exception.h>
30
31 //Qt
32 #include <QDir>
33 #include <QProcess>
34 #include <QRegExp>
35
36 VorbisDecoder::VorbisDecoder(void)
37 :
38         m_binary(lamexp_tools_lookup("oggdec.exe"))
39 {
40         if(m_binary.isEmpty())
41         {
42                 MUTILS_THROW("Error initializing Vorbis decoder. Tool 'oggdec.exe' is not registred!");
43         }
44 }
45
46 VorbisDecoder::~VorbisDecoder(void)
47 {
48 }
49
50 bool VorbisDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag)
51 {
52         QProcess process;
53         QStringList args;
54
55         args << "-w" << QDir::toNativeSeparators(outputFile);
56         args << QDir::toNativeSeparators(sourceFile);
57
58         if(!startProcess(process, m_binary, args))
59         {
60                 return false;
61         }
62
63         bool bTimeout = false;
64         bool bAborted = false;
65         int prevProgress = -1;
66
67         QRegExp regExp(" (\\d+)% decoded.");
68
69         while(process.state() != QProcess::NotRunning)
70         {
71                 if(*abortFlag)
72                 {
73                         process.kill();
74                         bAborted = true;
75                         emit messageLogged("\nABORTED BY USER !!!");
76                         break;
77                 }
78                 process.waitForReadyRead(m_processTimeoutInterval);
79                 if(!process.bytesAvailable() && process.state() == QProcess::Running)
80                 {
81                         process.kill();
82                         qWarning("OggDec process timed out <-- killing!");
83                         emit messageLogged("\nPROCESS TIMEOUT !!!");
84                         bTimeout = true;
85                         break;
86                 }
87                 while(process.bytesAvailable() > 0)
88                 {
89                         QByteArray line = process.readLine();
90                         QString text = QString::fromUtf8(line.constData()).simplified();
91                         if(regExp.lastIndexIn(text) >= 0)
92                         {
93                                 bool ok = false;
94                                 int progress = regExp.cap(1).toInt(&ok);
95                                 if(ok && (progress > prevProgress))
96                                 {
97                                         emit statusUpdated(progress);
98                                         prevProgress = qMin(progress + 2, 99);
99                                 }
100                         }
101                         else if(!text.isEmpty())
102                         {
103                                 emit messageLogged(text);
104                         }
105                 }
106         }
107
108         process.waitForFinished();
109         if(process.state() != QProcess::NotRunning)
110         {
111                 process.kill();
112                 process.waitForFinished(-1);
113         }
114         
115         emit statusUpdated(100);
116         emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
117
118         if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS || QFileInfo(outputFile).size() == 0)
119         {
120                 return false;
121         }
122         
123         return true;
124 }
125
126 bool VorbisDecoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
127 {
128         if(containerType.compare("OGG", Qt::CaseInsensitive) == 0)
129         {
130                 if(formatType.compare("Vorbis", Qt::CaseInsensitive) == 0)
131                 {
132                         return true;
133                 }
134         }
135
136         return false;
137 }
138
139 QStringList VorbisDecoder::supportedTypes(void)
140 {
141         return QStringList() << "Ogg Vorbis (*.ogg *.ogm)";
142 }