Scheduler: Factor out TimerSource from TimerDispatcher and implement POSIXTimerSource
[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_SENF_Scheduler_TimerEvent_
27 #define IH_SENF_Scheduler_TimerEvent_ 1
28
29 // Custom includes
30 #include <boost/scoped_ptr.hpp>
31 #include "../boost/intrusive/iset.hpp"
32 #include "TimerSource.hh"
33
34 ///////////////////////////////ih.p////////////////////////////////////////
35
36 namespace senf {
37 namespace scheduler {
38
39     void restart();
40
41 namespace detail {
42
43     struct TimerSetCompare {
44         bool operator()(TimerEvent const & a, TimerEvent const & b) const
45             { return a.timeout_ < b.timeout_; }
46     };
47
48     class TimerDispatcher
49         : public singleton<TimerDispatcher>
50     {
51         SENF_LOG_CLASS_AREA();
52         
53     public:
54         using singleton<TimerDispatcher>::instance;
55         using singleton<TimerDispatcher>::alive;
56
57         void add(TimerEvent & event);
58         void remove(TimerEvent & event);
59
60         void enable();
61         void disable();
62
63         void prepareRun();
64         void reschedule();
65
66         bool empty() const;
67
68     protected:
69
70     private:
71         TimerDispatcher();
72         ~TimerDispatcher();
73
74         typedef boost::intrusive::imultiset< TimerSetBase::value_traits<TimerEvent>,
75                                              TimerSetCompare,
76                                              false > TimerSet;
77
78         TimerSet timers_;
79
80         boost::scoped_ptr<TimerSource> source_;
81
82         friend void senf::scheduler::restart();
83         friend class singleton<TimerDispatcher>;
84     };
85
86 }}}
87
88 ///////////////////////////////ih.e////////////////////////////////////////
89 #endif
90
91 \f
92 // Local Variables:
93 // mode: c++
94 // fill-column: 100
95 // comment-column: 40
96 // c-file-style: "senf"
97 // indent-tabs-mode: nil
98 // ispell-local-dictionary: "american"
99 // compile-command: "scons -u test"
100 // End: