switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Scheduler / TimerEvent.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief TimerDispatcher non-inline non-template implementation */
30
31 #include "TimerEvent.hh"
32 #include "TimerEvent.ih"
33
34 // Custom includes
35 #include <sstream>
36
37 //#include "TimerEvent.mpp"
38 #define prefix_
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 prefix_ senf::scheduler::detail::TimerDispatcher::TimerDispatcher()
42     : source_ (new PollTimerSource())
43 {}
44
45 prefix_ senf::scheduler::detail::TimerDispatcher::~TimerDispatcher()
46 {
47     TimerSet::iterator i (timers_.begin());
48     TimerSet::iterator const i_end (timers_.end());
49     for (; i != i_end; ++i)
50         FIFORunner::instance().dequeue(&(*i));
51 }
52
53 void senf::scheduler::detail::TimerDispatcher::add(TimerEvent & event)
54 {
55     TimerSet::iterator i (timers_.insert(event));
56     FIFORunner::instance().enqueue(&(*i));
57 }
58
59 prefix_ void senf::scheduler::detail::TimerDispatcher::remove(TimerEvent & event)
60 {
61     TimerSet::iterator i (TimerSet::current(event));
62     if (i == timers_.end())
63         return;
64     FIFORunner::instance().dequeue(&(*i));
65     timers_.erase(i);
66 }
67
68 prefix_ void senf::scheduler::detail::TimerDispatcher::prepareRun()
69 {
70     TimerSet::iterator i (timers_.begin());
71     TimerSet::iterator const i_end (timers_.end());
72     ClockService::clock_type now (FdManager::instance().eventTime());
73     for (; i != i_end && i->timeout_ <= now ; ++i)
74         i->setRunnable();
75 }
76
77 prefix_ void senf::scheduler::detail::TimerDispatcher::reschedule()
78 {
79     if (timers_.empty())
80         source_->notimeout();
81     else
82         source_->timeout(timers_.begin()->timeout_);
83 }
84
85 //-/////////////////////////////////////////////////////////////////////////////////////////////////
86 // senf::scheduler::detail::TimerDispatcher::TimerEvent
87
88 prefix_ void senf::scheduler::TimerEvent::v_run()
89 {
90     disable();
91     cb_();
92 }
93
94 prefix_ char const * senf::scheduler::TimerEvent::v_type()
95     const
96 {
97     return "tm";
98 }
99
100 prefix_ std::string senf::scheduler::TimerEvent::v_info()
101     const
102 {
103     std::stringstream ss;
104     ss.imbue( std::locale(ss.getloc(),
105                           new boost::posix_time::time_facet("%Y-%m-%d %H:%M:%S.%f-0000")) );
106     ss << "expire " << ClockService::abstime(timeout_);
107     return ss.str();
108 }
109
110 //-/////////////////////////////////////////////////////////////////////////////////////////////////
111 #undef prefix_
112 //#include "TimerEvent.mpp"
113
114 \f
115 // Local Variables:
116 // mode: c++
117 // fill-column: 100
118 // comment-column: 40
119 // c-file-style: "senf"
120 // indent-tabs-mode: nil
121 // ispell-local-dictionary: "american"
122 // compile-command: "scons -u test"
123 // End: