switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Scheduler / SignalEvent.ih
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief SignalDispatcher internal header */
30
31 #ifndef IH_SENF_Scheduler_SignalEvent_
32 #define IH_SENF_Scheduler_SignalEvent_ 1
33
34 // Custom includes
35 #include "FdManager.hh"
36 #include <senf/boost_intrusive/iset.hpp>
37 #include <senf/Utils/Exception.hh>
38 #include <senf/Utils/singleton.hh>
39
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41
42 namespace senf {
43 namespace scheduler {
44
45     void restart();
46
47 namespace detail {
48
49     struct SignalSetCompare {
50         bool operator()(SignalEvent const & a, SignalEvent const & b) const
51             { return a.signal_ < b.signal_; }
52     };
53
54     struct FindNumericSignal {
55         bool operator()(SignalEvent const & a, int b) const
56             { return a.signal_ < b; }
57         bool operator()(int a, SignalEvent const & b) const
58             { return a < b.signal_; }
59     };
60
61     class SignalDispatcher
62         : public detail::FdManager::Event,
63           public singleton<SignalDispatcher>
64     {
65         typedef boost::intrusive::iset< SignalSetBase::value_traits<SignalEvent>,
66                                         SignalSetCompare,
67                                         false > SignalSet;
68     public:
69         using singleton<SignalDispatcher>::instance;
70         using singleton<SignalDispatcher>::alive;
71
72         void add(SignalEvent & event);
73         void remove(SignalEvent & event);
74
75         void unblockSignals();
76         void blockSignals();
77
78         bool empty() const;
79
80         struct DuplicateSignalRegistrationException : public Exception
81         { DuplicateSignalRegistrationException()
82               : Exception("duplicate signal registration") {} };
83
84     protected:
85
86     private:
87         SignalDispatcher();
88         ~SignalDispatcher();
89
90         virtual void signal(int events);
91         static void sigHandler(int signal, ::siginfo_t * siginfo, void *);
92
93         SignalSet handlers_;
94
95         int sigPipe_[2];
96
97         bool blocked_;
98         sigset_t sigSet_;
99
100         friend void senf::scheduler::restart();
101         friend class senf::scheduler::SignalEvent;
102         friend class singleton<SignalDispatcher>;
103     };
104
105 }}}
106
107 //-/////////////////////////////////////////////////////////////////////////////////////////////////
108 #endif
109
110 \f
111 // Local Variables:
112 // mode: c++
113 // fill-column: 100
114 // comment-column: 40
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // End: