Scheduler: Fix TimerEvent unit test reliability
[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         void setTimerSource(std::auto_ptr<TimerSource> timerSource);
69
70     protected:
71
72     private:
73         TimerDispatcher();
74         ~TimerDispatcher();
75
76         typedef boost::intrusive::imultiset< TimerSetBase::value_traits<TimerEvent>,
77                                              TimerSetCompare,
78                                              false > TimerSet;
79
80         TimerSet timers_;
81
82         boost::scoped_ptr<TimerSource> source_;
83
84         friend void senf::scheduler::restart();
85         friend class singleton<TimerDispatcher>;
86     };
87
88 }}}
89
90 ///////////////////////////////ih.e////////////////////////////////////////
91 #endif
92
93 \f
94 // Local Variables:
95 // mode: c++
96 // fill-column: 100
97 // comment-column: 40
98 // c-file-style: "senf"
99 // indent-tabs-mode: nil
100 // ispell-local-dictionary: "american"
101 // compile-command: "scons -u test"
102 // End: