2010-12-01 23:14:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2013-02-08 23:50:51 +01:00
|
|
|
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-12-01 23:14:47 +01:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class QMutex;
|
|
|
|
class QProcess;
|
2013-10-07 00:01:15 +02:00
|
|
|
class JobObject;
|
2010-12-01 23:14:47 +01:00
|
|
|
|
|
|
|
class AbstractTool : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
AbstractTool(void);
|
|
|
|
~AbstractTool(void);
|
|
|
|
|
|
|
|
bool startProcess(QProcess &process, const QString &program, const QStringList &args);
|
|
|
|
static QString commandline2string(const QString &program, const QStringList &arguments);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void statusUpdated(int progress);
|
|
|
|
void messageLogged(const QString &line);
|
|
|
|
|
2011-06-14 13:06:27 +02:00
|
|
|
protected:
|
2011-07-26 22:23:32 +02:00
|
|
|
static const int m_processTimeoutInterval = 600000;
|
2011-06-14 13:06:27 +02:00
|
|
|
|
2010-12-01 23:14:47 +01:00
|
|
|
private:
|
2012-04-06 23:15:58 +02:00
|
|
|
static quint64 s_lastLaunchTime;
|
|
|
|
static QMutex s_mutex_startProcess;
|
|
|
|
static unsigned int s_jobObjRefCount;
|
2013-10-07 00:01:15 +02:00
|
|
|
static JobObject *s_jobObject;
|
2012-03-01 02:45:21 +01:00
|
|
|
|
2010-12-05 23:11:03 +01:00
|
|
|
bool m_firstLaunch;
|
2010-12-01 23:14:47 +01:00
|
|
|
};
|