7d865230c912e1ddcbb3371b0fb91a936ef1af39
[senf.git] / Scheduler / Scheduler.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
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 Scheduler non-inline non-template implementation
25
26     \idea Multithreading support: To support multithreading, the
27     static member Scheduler::instance() must return a thread-local
28     value (that is Scheduler::instance() must allocate one Scheduler
29     instance per thread). Another possibility would be to distribute
30     the async load unto several threads (one scheduler for multiple
31     threads)
32  */
33
34 #include "Scheduler.hh"
35 //#include "Scheduler.ih"
36
37 // Custom includes
38
39 #define prefix_
40 ///////////////////////////////cc.p////////////////////////////////////////
41
42 namespace {
43     bool terminate_ (false);
44 }
45
46 prefix_ void senf::scheduler::terminate()
47 {
48     terminate_ = true;
49 }
50
51 prefix_ void senf::scheduler::process()
52 {
53     terminate_ = false;
54     while(! terminate_ && ! (detail::FdDispatcher::instance().empty() &&
55                              detail::TimerDispatcher::instance().empty() &&
56                              detail::FileDispatcher::instance().empty())) {
57         detail::SignalDispatcher::instance().unblockSignals();
58         detail::TimerDispatcher::instance().unblockSignals();
59         detail::FdManager::instance().processOnce();
60         detail::TimerDispatcher::instance().blockSignals();
61         detail::SignalDispatcher::instance().blockSignals();
62         detail::FileDispatcher::instance().prepareRun();
63         detail::EventHookDispatcher::instance().prepareRun();
64         detail::FIFORunner::instance().run();
65     }
66 }
67
68 prefix_ void senf::scheduler::restart()
69 {
70     detail::FdManager*            fdm (&detail::FdManager::instance());
71     detail::FIFORunner*           ffr (&detail::FIFORunner::instance());
72     detail::FdDispatcher*         fdd (&detail::FdDispatcher::instance());
73     detail::TimerDispatcher*      tdd (&detail::TimerDispatcher::instance());
74     detail::SignalDispatcher*     sdd (&detail::SignalDispatcher::instance());
75     detail::FileDispatcher*       fld (&detail::FileDispatcher::instance());
76     detail::EventHookDispatcher* eed (&detail::EventHookDispatcher::instance());
77
78     eed->~EventHookDispatcher();
79     fld->~FileDispatcher();
80     sdd->~SignalDispatcher();
81     tdd->~TimerDispatcher();
82     fdd->~FdDispatcher();
83     ffr->~FIFORunner();
84     fdm->~FdManager();
85     
86     new (fdm) detail::FdManager();
87     new (ffr) detail::FIFORunner();
88     new (fdd) detail::FdDispatcher();
89     new (tdd) detail::TimerDispatcher();
90     new (sdd) detail::SignalDispatcher();
91     new (fld) detail::FileDispatcher();
92     new (eed) detail::EventHookDispatcher();
93 }
94
95 prefix_ bool senf::scheduler::empty()
96 {
97     return detail::FdDispatcher::instance().empty() 
98         && detail::TimerDispatcher::instance().empty()
99         && detail::FileDispatcher::instance().empty()
100         && detail::SignalDispatcher::instance().empty()
101         && detail::EventHookDispatcher::instance().empty();
102 }
103
104 ///////////////////////////////////////////////////////////////////////////
105 // senf::schedulerLogTimeSource
106
107 prefix_ senf::log::time_type senf::scheduler::LogTimeSource::operator()()
108     const
109 {
110     return eventTime();
111 }
112
113 ///////////////////////////////cc.e////////////////////////////////////////
114 #undef prefix_
115
116 \f
117 // Local Variables:
118 // mode: c++
119 // fill-column: 100
120 // c-file-style: "senf"
121 // indent-tabs-mode: nil
122 // ispell-local-dictionary: "american"
123 // compile-command: "scons -u test"
124 // comment-column: 40
125 // End: