Fixed some inconsistencies in code indentation
[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 <QDebug>
21 #include "daemon.h"
22
23 namespace
24 {
25     const QString DAEMON_NAME = "jenirokd";
26     const QString INIT_DIR = "/etc/init.d";
27     const QString AUTOSTART_ENABLE = "update-rc.d jenirokd defaults 99";
28     const QString AUTOSTART_DISABLE = "update-rc.d -f jenirokd remove";
29 }
30
31 bool Daemon::start()
32 {
33     QProcess proc;
34     proc.start(INIT_DIR + "/" + DAEMON_NAME, QStringList() << "start");
35
36     proc.waitForStarted();
37     proc.waitForFinished();
38
39     if(proc.exitCode() != 0)
40     {
41         return false;
42     }
43
44     return true;
45 }
46
47 bool Daemon::stop()
48 {
49     QProcess proc;
50     proc.start(INIT_DIR + "/" + DAEMON_NAME, QStringList() << "stop");
51
52     proc.waitForStarted();
53     proc.waitForFinished();
54
55     if(proc.exitCode() != 0)
56     {
57         return false;
58     }
59
60     return true;
61 }
62
63 bool Daemon::restart()
64 {
65     stop();
66     return start();
67 }
68
69 bool Daemon::isRunning()
70 {
71     QProcess proc;
72
73     proc.start("pgrep", QStringList() << "-n" << DAEMON_NAME);
74
75     if(!proc.waitForStarted())
76     {
77         return false;
78     }
79
80     if(!proc.waitForFinished())
81     {
82         return false;
83     }
84
85     QString result = proc.readAll();
86
87     return !result.isEmpty();
88 }
89
90 bool Daemon::setAutostart(bool enabled)
91 {
92     QProcess proc;
93
94     if(enabled)
95     {
96         proc.start(AUTOSTART_ENABLE);
97     }
98     else
99     {
100         proc.start(AUTOSTART_DISABLE);
101     }
102
103     proc.waitForStarted();
104     proc.waitForFinished();
105
106     if(proc.exitCode() != 0)
107     {
108         return false;
109     }
110
111     return true;
112
113 }
114
115 Daemon::Daemon()
116 {
117 }