b2c44a4dd2b7740862605c70e6eda172291c83c9
[senf.git] / Scheduler / SignalDispatcher.hh
1 // $Id$
2 //
3 // Copyright (C) 2008 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief SignalDispatcher public header */
25
26 #ifndef HH_SignalDispatcher_
27 #define HH_SignalDispatcher_ 1
28
29 // Custom includes
30 #include <signal.h>
31 #include <map>
32 #include "FdManager.hh"
33 #include "FIFORunner.hh"
34
35 //#include "SignalDispatcher.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 namespace senf {
39 namespace scheduler {
40
41     /** \brief
42       */
43     class SignalDispatcher
44         : public FdManager::Event
45     {
46     public:
47         ///////////////////////////////////////////////////////////////////////////
48         // Types
49
50         typedef boost::function<void (siginfo_t const &)> Callback;
51
52         ///////////////////////////////////////////////////////////////////////////
53         ///\name Structors and default members
54         ///@{
55
56         SignalDispatcher(FdManager & manager, FIFORunner & runner);
57         ~SignalDispatcher();
58
59         ///@}
60         ///////////////////////////////////////////////////////////////////////////
61
62         void add(int signal, Callback const & cb);
63         void remove(int signal);
64
65         void blockSignals();
66         void unblockSignals();
67
68     protected:
69
70     private:
71         struct SignalEvent
72             : public FIFORunner::TaskInfo
73         {
74             explicit SignalEvent(Callback cb_);
75             virtual void run();
76
77             siginfo_t siginfo;
78             Callback cb;
79         };
80
81         virtual void signal(int events);
82         static void sigHandler(int signal, ::siginfo_t * siginfo, void *);
83
84         FdManager & manager_;
85         FIFORunner & runner_;
86
87         typedef std::map<int, SignalEvent> HandlerMap;
88         HandlerMap handlers_;
89
90         int sigPipe_[2];
91
92         bool blocked_;
93         sigset_t sigSet_;
94
95         static SignalDispatcher * instance_;
96     };
97
98
99 }}
100
101 ///////////////////////////////hh.e////////////////////////////////////////
102 #include "SignalDispatcher.cci"
103 //#include "SignalDispatcher.ct"
104 //#include "SignalDispatcher.cti"
105 #endif
106
107 \f
108 // Local Variables:
109 // mode: c++
110 // fill-column: 100
111 // comment-column: 40
112 // c-file-style: "senf"
113 // indent-tabs-mode: nil
114 // ispell-local-dictionary: "american"
115 // compile-command: "scons -u test"
116 // End: