8bae8d17ab106b7e91c647d0cdfc6795057f5546
[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
36     class Scheduler;
37
38 namespace scheduler {
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 FdManager::Event,
48           public singleton<TimerDispatcher>
49     {
50         SENF_LOG_CLASS_AREA();
51         
52         typedef boost::intrusive::imultiset< TimerSetBase::value_traits<TimerEvent>,
53                                              TimerSetCompare,
54                                              false > TimerSet;
55
56     public:
57         using singleton<TimerDispatcher>::instance;
58         using singleton<TimerDispatcher>::alive;
59
60         void add(TimerEvent & event);
61         void remove(TimerEvent & event);
62
63         void unblockSignals();
64         void blockSignals();
65         
66         bool empty() const;
67
68     protected:
69
70     private:
71         TimerDispatcher();
72         ~TimerDispatcher();
73
74         virtual void signal(int events);
75         static void sigHandler(int signal, ::siginfo_t * siginfo, void *);
76         void reschedule();
77
78         TimerSet timers_;
79
80         int timerPipe_[2];
81         sigset_t sigSet_;
82         bool blocked_;
83         timer_t timerId_;
84
85         friend class senf::Scheduler;
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: