NuriaProject Framework  0.1
The NuriaProject Framework
unixsignalhandler.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef UNIXSIGNALHANDLER_HPP
18 #define UNIXSIGNALHANDLER_HPP
19 
20 #include "callback.hpp"
21 #include <QObject>
22 
23 namespace Nuria {
24 
25 class UnixSignalHandlerPrivate;
26 
58 class NURIA_CORE_EXPORT UnixSignalHandler : public QObject {
59  Q_OBJECT
60 public:
61 
63  static UnixSignalHandler *get ();
64 
66  ~UnixSignalHandler () override;
67 
73  bool listenToUnixSignal (int signalId);
74 
80  bool ignoreUnixSignal (int signalId);
81 
86  bool isListeningTo (int signalId);
87 
96  void invokeOnSignal (int signalId, const Callback &callback);
97 
98 signals:
99 
104  void signalRaised (int signalId);
105 
107  void sigTerm ();
108 
110  void sigInterrupt ();
111 
113  void sigUser1 ();
114 
116  void sigUser2 ();
117 
118 private slots:
119 
120  void signalDelegate ();
121 
122 private:
123  explicit UnixSignalHandler (QObject *parent = 0);
124 
125  bool createInternalPipe ();
126  void printError (const char *message);
127  bool tryReadUnixSignal ();
128  void invokeSignalHandlers (int signalId);
129 
130  UnixSignalHandlerPrivate *d_ptr;
131 
132 };
133 
134 }
135 
136 #endif // UNIXSIGNALHANDLER_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Utility class to react to UNIX signals in a Qt fashion.
Definition: unixsignalhandler.hpp:58
Definition: abstractsessionmanager.hpp:24