Scheduler: Remove obsolete 'Scheduler' class
[senf.git] / Scheduler / TimerEvent.ih
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 TimerDispatcher internal header */
25
26 #ifndef IH_TimerDispatcher_
27 #define IH_TimerDispatcher_ 1
28
29 // Custom includes
30 #include "../boost/intrusive/iset.hpp"
31
32 ///////////////////////////////ih.p////////////////////////////////////////
33
34 namespace senf {
35 namespace scheduler {
36
37     void restart();
38
39 namespace detail {
40
41     struct TimerSetCompare {
42         bool operator()(TimerEvent const & a, TimerEvent const & b) const
43             { return a.timeout_ < b.timeout_; }
44     };
45
46     class TimerDispatcher
47         : public detail::FdManager::Event,
48           public singleton<TimerDispatcher>
49     {
50         SENF_LOG_CLASS_AREA();
51         
52     public:
53         using singleton<TimerDispatcher>::instance;
54         using singleton<TimerDispatcher>::alive;
55
56         void add(TimerEvent & event);
57         void remove(TimerEvent & event);
58
59         void unblockSignals();
60         void blockSignals();
61         
62         bool empty() const;
63
64     protected:
65
66     private:
67         TimerDispatcher();
68         ~TimerDispatcher();
69
70         virtual void signal(int events);
71         static void sigHandler(int signal, ::siginfo_t * siginfo, void *);
72         void reschedule();
73
74         typedef boost::intrusive::imultiset< TimerSetBase::value_traits<TimerEvent>,
75                                              TimerSetCompare,
76                                              false > TimerSet;
77
78         TimerSet timers_;
79
80         int timerPipe_[2];
81         sigset_t sigSet_;
82         bool blocked_;
83         timer_t timerId_;
84
85         friend void senf::scheduler::restart();
86         friend class singleton<TimerDispatcher>;
87     };
88
89 }}}
90
91 ///////////////////////////////ih.e////////////////////////////////////////
92 #endif
93
94 \f
95 // Local Variables:
96 // mode: c++
97 // fill-column: 100
98 // comment-column: 40
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // End: