|
|
|
#ifndef DAEMONQT_H
|
|
|
|
#define DAEMONQT_H
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QThread>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace qt
|
|
|
|
{
|
|
|
|
class DaemonQTImpl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
DaemonQTImpl ();
|
|
|
|
~DaemonQTImpl ();
|
|
|
|
|
|
|
|
typedef void (*runningChangedCallback)();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief init
|
|
|
|
* @param argc
|
|
|
|
* @param argv
|
|
|
|
* @return success
|
|
|
|
*/
|
|
|
|
bool init(int argc, char* argv[], std::shared_ptr<std::ostream> logstream);
|
|
|
|
void start();
|
|
|
|
void stop();
|
|
|
|
void restart();
|
|
|
|
void setRunningCallback(runningChangedCallback cb);
|
|
|
|
bool isRunning();
|
|
|
|
private:
|
|
|
|
void setRunning(bool running);
|
|
|
|
void showError(std::string errorMsg);
|
|
|
|
private:
|
|
|
|
QMutex* mutex;
|
|
|
|
bool m_IsRunning;
|
|
|
|
runningChangedCallback m_RunningChangedCallback;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Worker : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
|
|
|
|
Worker (DaemonQTImpl& daemon);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
DaemonQTImpl& m_Daemon;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void startDaemon();
|
|
|
|
void restartDaemon();
|
|
|
|
void stopDaemon();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void resultReady(bool failed, QString failureMessage);
|
|
|
|
};
|
|
|
|
|
|
|
|
class Controller : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
QThread workerThread;
|
|
|
|
public:
|
|
|
|
Controller(DaemonQTImpl& daemon);
|
|
|
|
~Controller();
|
|
|
|
private:
|
|
|
|
DaemonQTImpl& m_Daemon;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void handleResults(bool failed, QString failureMessage){
|
|
|
|
if(failed){
|
|
|
|
QMessageBox::critical(0, QObject::tr("Error"), failureMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
signals:
|
|
|
|
void startDaemon();
|
|
|
|
void stopDaemon();
|
|
|
|
void restartDaemon();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DAEMONQT_H
|