monero-gui/src/daemon/DaemonManager.h

47 lines
979 B
C
Raw Normal View History

2016-11-05 09:47:17 +00:00
#ifndef DAEMONMANAGER_H
#define DAEMONMANAGER_H
#include <QObject>
#include <QUrl>
#include <QProcess>
class DaemonManager : public QObject
{
Q_OBJECT
public:
static DaemonManager * instance(const QStringList *args);
2016-11-05 09:47:17 +00:00
2016-12-21 13:30:15 +00:00
Q_INVOKABLE bool start(const QString &flags);
2016-11-05 09:47:17 +00:00
Q_INVOKABLE bool stop();
// return true if daemon process is started
Q_INVOKABLE bool running() const;
Q_INVOKABLE bool sendCommand(const QString &cmd, bool testnet);
2016-11-05 09:47:17 +00:00
signals:
2016-11-25 20:09:32 +00:00
void daemonStarted();
2016-11-05 09:47:17 +00:00
void daemonStopped();
void daemonConsoleUpdated(QString message);
2016-11-05 09:47:17 +00:00
public slots:
void printOutput();
void printError();
2016-11-07 22:06:18 +00:00
void closing();
2016-11-26 10:54:06 +00:00
void stateChanged(QProcess::ProcessState state);
2016-11-05 09:47:17 +00:00
private:
explicit DaemonManager(QObject *parent = 0);
static DaemonManager * m_instance;
static QStringList m_clArgs;
2016-11-05 09:47:17 +00:00
QProcess *m_daemon;
bool initialized = false;
QString m_monerod;
bool m_has_daemon = true;
2016-11-05 09:47:17 +00:00
};
#endif // DAEMONMANAGER_H