1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2020 LoRd_MuldeR <MuldeR2@GMX.de>
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; always including the non-optional
9 // LAMEXP GNU GENERAL PUBLIC LICENSE ADDENDUM. See "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 ///////////////////////////////////////////////////////////////////////////////
25 #include <MUtils\Global.h>
38 class AbstractTool
: public QObject
47 void statusUpdated(int progress
);
48 void messageLogged(const QString
&line
);
51 static const int m_processTimeoutInterval
= 600000;
62 static __forceinline
bool CHECK_FLAG(QAtomicInt
&flag
)
64 return MUTILS_BOOLIFY(flag
);
67 static __forceinline
int NEXT_PROGRESS(const int &progress
)
69 return (progress
< 99) ? qMax(0, progress
+ 1) : qMin(100, progress
);
72 static QString
commandline2string(const QString
&program
, const QStringList
&arguments
);
74 bool startProcess(QProcess
&process
, const QString
&program
, const QStringList
&args
, const QString
&workingDir
= QString());
75 result_t
awaitProcess(QProcess
&process
, QAtomicInt
&abortFlag
, int *const exitCode
= NULL
);
76 result_t
awaitProcess(QProcess
&process
, QAtomicInt
&abortFlag
, std::function
<bool(const QString
&text
)> &&handler
, int *const exitCode
= NULL
);
79 static QScopedPointer
<MUtils::JobObject
> s_jobObjectInstance
;
80 static QScopedPointer
<QElapsedTimer
> s_startProcessTimer
;
82 static QMutex s_startProcessMutex
;
83 static QMutex s_createObjectMutex
;
85 static quint64 s_referenceCounter
;