Some fixes to connection manager.
[jenirok] / src / gui / daemon.cpp
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #include <QtCore/QProcess>
20 #include "daemon.h"
21
22 namespace
23 {
24     const QString DAEMON_NAME = "jenirokd";
25     const QString INIT_DIR = "/etc/init.d";
26 }
27
28 bool Daemon::start()
29 {
30     QProcess proc;
31     proc.start(INIT_DIR + "/" + DAEMON_NAME, QStringList() << "start");
32
33     proc.waitForStarted();
34     proc.waitForFinished();
35
36     if(proc.exitCode() != 0)
37     {
38         return false;
39     }
40
41     return true;
42 }
43
44 bool Daemon::stop()
45 {
46     QProcess proc;
47     proc.start(INIT_DIR + "/" + DAEMON_NAME, QStringList() << "stop");
48
49     proc.waitForStarted();
50     proc.waitForFinished();
51
52     if(proc.exitCode() != 0)
53     {
54         return false;
55     }
56
57     return true;
58 }
59
60 bool Daemon::restart()
61 {
62     stop();
63     return start();
64 }
65
66 bool Daemon::isRunning()
67 {
68     QProcess proc;
69
70     proc.start("pgrep", QStringList() << "-n" << DAEMON_NAME);
71
72     if(!proc.waitForStarted())
73     {
74         return false;
75     }
76
77     if(!proc.waitForFinished())
78     {
79         return false;
80     }
81
82     QString result = proc.readAll();
83
84     return !result.isEmpty();
85 }
86
87 Daemon::Daemon()
88 {
89 }