Utils/Console: Add 'sys/backtrace' command
[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 namespace {
52     
53     // We don't want try { } catch(...) { ... throw; } since that will make debugging more
54     // difficult: the stack backtrace for an unexpected exception would always end here.
55     struct SchedulerScopedInit
56     {
57         SchedulerScopedInit() 
58             {
59                 senf::scheduler::detail::FIFORunner::instance().startWatchdog();
60                 senf::scheduler::detail::SignalDispatcher::instance().unblockSignals();
61                 senf::scheduler::detail::TimerDispatcher::instance().unblockSignals();
62             }
63
64         ~SchedulerScopedInit()
65             {
66                 senf::scheduler::detail::TimerDispatcher::instance().blockSignals();
67                 senf::scheduler::detail::SignalDispatcher::instance().blockSignals();
68                 senf::scheduler::detail::FIFORunner::instance().stopWatchdog();
69             }
70     };
71 }
72
73 prefix_ void senf::scheduler::process()
74 {
75     SchedulerScopedInit initScheduler;
76     terminate_ = false;
77     while(! terminate_ && ! (detail::FdDispatcher::instance().empty() &&
78                              detail::TimerDispatcher::instance().empty() &&
79                              detail::FileDispatcher::instance().empty())) {
80         detail::FdManager::instance().processOnce();
81         detail::FileDispatcher::instance().prepareRun();
82         detail::EventHookDispatcher::instance().prepareRun();
83         detail::FIFORunner::instance().run();
84     }
85 }
86
87 prefix_ void senf::scheduler::restart()
88 {
89     detail::FdManager*            fdm (&detail::FdManager::instance());
90     detail::FIFORunner*           ffr (&detail::FIFORunner::instance());
91     detail::FdDispatcher*         fdd (&detail::FdDispatcher::instance());
92     detail::TimerDispatcher*      tdd (&detail::TimerDispatcher::instance());
93     detail::SignalDispatcher*     sdd (&detail::SignalDispatcher::instance());
94     detail::FileDispatcher*       fld (&detail::FileDispatcher::instance());
95     detail::EventHookDispatcher*  eed (&detail::EventHookDispatcher::instance());
96
97     eed->~EventHookDispatcher();
98     fld->~FileDispatcher();
99     sdd->~SignalDispatcher();
100     tdd->~TimerDispatcher();
101     fdd->~FdDispatcher();
102     ffr->~FIFORunner();
103     fdm->~FdManager();
104     
105     new (fdm) detail::FdManager();
106     new (ffr) detail::FIFORunner();
107     new (fdd) detail::FdDispatcher();
108     new (tdd) detail::TimerDispatcher();
109     new (sdd) detail::SignalDispatcher();
110     new (fld) detail::FileDispatcher();
111     new (eed) detail::EventHookDispatcher();
112 }
113
114 prefix_ bool senf::scheduler::empty()
115 {
116     return detail::FdDispatcher::instance().empty() 
117         && detail::TimerDispatcher::instance().empty()
118         && detail::FileDispatcher::instance().empty()
119         && detail::SignalDispatcher::instance().empty()
120         && detail::EventHookDispatcher::instance().empty();
121 }
122
123 ///////////////////////////////////////////////////////////////////////////
124 // senf::schedulerLogTimeSource
125
126 prefix_ senf::log::time_type senf::scheduler::LogTimeSource::operator()()
127     const
128 {
129     return eventTime();
130 }
131
132 ///////////////////////////////cc.e////////////////////////////////////////
133 #undef prefix_
134
135 \f
136 // Local Variables:
137 // mode: c++
138 // fill-column: 100
139 // c-file-style: "senf"
140 // indent-tabs-mode: nil
141 // ispell-local-dictionary: "american"
142 // compile-command: "scons -u test"
143 // comment-column: 40
144 // End: