-
Notifications
You must be signed in to change notification settings - Fork 4
/
Wrapper.h
55 lines (42 loc) · 862 Bytes
/
Wrapper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once
#include <stdio.h>
#include <QObject>
#include <QProcess>
#include <QFile>
#include <QTimer>
#include "Pump.h"
class Wrapper : public QObject
{
Q_OBJECT
enum Status {
STARTING,
RUNNING,
KILLING
};
public:
QString command;
QString name;
int ourpid;
int timeout;
Wrapper();
public slots:
void start();
private slots:
// void handle_stdin();
void handle_stderr();
void handle_stdout();
void handle_finished(int, QProcess::ExitStatus);
void handle_error();
void handle_started();
void handle_timeout();
void handle_pump_error(QString const&);
private:
QProcess proc;
QTimer timer;
char buf[1024*8];
int pid;
void log(const char*);
void quit();
Status status;
Pump pump;
};