Code refactoring.
[LameXP.git] / src / Tool_Abstract.h
blob610a722b836b6f1cb9e63c2ee95ddc79e5cfec11
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2017 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 #pragma once
25 #include <MUtils\Global.h>
26 #include <QObject>
27 #include <functional>
29 class QMutex;
30 class QProcess;
31 class QElapsedTimer;
33 namespace MUtils
35 class JobObject;
38 class AbstractTool : public QObject
40 Q_OBJECT
42 public:
43 AbstractTool(void);
44 ~AbstractTool(void);
46 signals:
47 void statusUpdated(int progress);
48 void messageLogged(const QString &line);
50 protected:
51 static const int m_processTimeoutInterval = 600000;
53 typedef enum
55 RESULT_ABORTED = -2,
56 RESULT_TIMEOUT = -1,
57 RESULT_FAILURE = 0,
58 RESULT_SUCCESS = 1
60 result_t;
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);
78 private:
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;
87 bool m_firstLaunch;