4dd2bb5ac05331c228fbf61bee0000c900666aa2
[senf.git] / senf / 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 <senf/boost_intrusive/iset.hpp>
32 #include "TimerSource.hh"
33
34 //-/////////////////////////////////////////////////////////////////////////////////////////////////
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         void timerSource(std::auto_ptr<TimerSource> timerSource);
69         TimerSource * timerSource();
70
71     protected:
72
73     private:
74         TimerDispatcher();
75         ~TimerDispatcher();
76
77         typedef boost::intrusive::imultiset< TimerSetBase::value_traits<TimerEvent>,
78                                              TimerSetCompare,
79                                              false > TimerSet;
80
81         TimerSet timers_;
82
83         boost::scoped_ptr<TimerSource> source_;
84
85         friend void senf::scheduler::restart();
86         friend class singleton<TimerDispatcher>;
87     };
88
89 }}}
90
91 //-/////////////////////////////////////////////////////////////////////////////////////////////////
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: