Bump version.
[LameXP.git] / src / Filter_ToneAdjust.cpp
blob60ba67ea3f5373ee1217cb7a55989fa88dce060f
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2015 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 "Filter_ToneAdjust.h"
25 //Internal
26 #include "Global.h"
28 //MUtils
29 #include <MUtils/Exception.h>
31 //Qt
32 #include <QDir>
33 #include <QProcess>
34 #include <QRegExp>
35 #include <QFileInfo>
37 ToneAdjustFilter::ToneAdjustFilter(int bass, int treble)
39 m_binary(lamexp_tools_lookup("sox.exe"))
41 if(m_binary.isEmpty())
43 MUTILS_THROW("Error initializing SoX filter. Tool 'sox.exe' is not registred!");
46 m_bass = qMax(-2000, qMin(2000, bass));
47 m_treble = qMax(-2000, qMin(2000, treble));
50 ToneAdjustFilter::~ToneAdjustFilter(void)
54 bool ToneAdjustFilter::apply(const QString &sourceFile, const QString &outputFile, AudioFileModel_TechInfo *formatInfo, volatile bool *abortFlag)
56 QProcess process;
57 QStringList args;
59 process.setWorkingDirectory(QFileInfo(outputFile).canonicalPath());
61 args << "-V3" << "-S";
62 args << "--guard" << "--temp" << ".";
63 args << QDir::toNativeSeparators(sourceFile);
64 args << QDir::toNativeSeparators(outputFile);
66 if(m_bass != 0)
68 args << "bass" << QString().sprintf("%s%.2f", ((m_bass < 0) ? "-" : "+"), static_cast<double>(abs(m_bass)) / 100.0);
70 if(m_treble != 0)
72 args << "treble" << QString().sprintf("%s%.2f", ((m_treble < 0) ? "-" : "+"), static_cast<double>(abs(m_treble)) / 100.0);
75 if(!startProcess(process, m_binary, args))
77 return false;
80 bool bTimeout = false;
81 bool bAborted = false;
83 QRegExp regExp("In:(\\d+)(\\.\\d+)*%");
85 while(process.state() != QProcess::NotRunning)
87 if(*abortFlag)
89 process.kill();
90 bAborted = true;
91 emit messageLogged("\nABORTED BY USER !!!");
92 break;
94 process.waitForReadyRead(m_processTimeoutInterval);
95 if(!process.bytesAvailable() && process.state() == QProcess::Running)
97 process.kill();
98 qWarning("SoX process timed out <-- killing!");
99 emit messageLogged("\nPROCESS TIMEOUT !!!");
100 bTimeout = true;
101 break;
103 while(process.bytesAvailable() > 0)
105 QByteArray line = process.readLine();
106 QString text = QString::fromUtf8(line.constData()).simplified();
107 if(regExp.lastIndexIn(text) >= 0)
109 bool ok = false;
110 int progress = regExp.cap(1).toInt(&ok);
111 if(ok) emit statusUpdated(progress);
113 else if(!text.isEmpty())
115 emit messageLogged(text);
120 process.waitForFinished();
121 if(process.state() != QProcess::NotRunning)
123 process.kill();
124 process.waitForFinished(-1);
127 emit statusUpdated(100);
128 emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
130 if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS || QFileInfo(outputFile).size() == 0)
132 return false;
135 return true;