c0c02bca8dae3aa67cb9a918429e077ba634abd2
[senf.git] / Scheduler / Scheduler.hh
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 public header
25  */
26
27 #ifndef HH_Scheduler_
28 #define HH_Scheduler_ 1
29
30 // Custom includes
31 #include "../Utils/Logger/SenfLog.hh"
32 #include "FdDispatcher.hh"
33 #include "TimerEvent.hh"
34 #include "SignalEvent.hh"
35 #include "FileDispatcher.hh"
36 #include "../Utils/Logger/SenfLog.hh"
37
38 //#include "scheduler.mpp"
39 ///////////////////////////////hh.p////////////////////////////////////////
40
41 /** \brief SENF Project namespace */
42 namespace senf {
43
44     /** \brief Visible scheduler interface
45
46         The %scheduler singleton manages access to the %scheduler library. It provides access to
47         several event dispatchers:
48         \li File descriptor notifications
49         \li Timeouts
50         \li UNIX Signals
51
52         The %scheduler is entered by calling it's process() member. This call will continue to run as
53         long as there is something to do, or until one of the handlers calls terminate(). The
54         %scheduler has 'something to do' as long as there is any file descriptor or timeout active.
55
56         The %scheduler only provides low level primitive scheduling capability. Additional helpers
57         are defined on top of this functionality (e.g. ReadHelper or WriteHelper or the interval
58         timers of the PPI).
59
60
61         \section sched_handlers Specifying handlers
62
63         All handlers are passed as generic <a
64         href="http://www.boost.org/doc/html/function.html">Boost.Function</a> objects. This allows
65         to pass any callable as a handler. Depending on the type of handler, some additional
66         arguments may be passed to the handler by the %scheduler. 
67
68         If you need to pass additional information to your handler, use <a
69         href="http://www.boost.org/libs/bind/bind.html">Boost.Bind</a>:
70         \code
71         // Handle callback function
72         void callback(UDPv4ClientSocketHandle handle, senf::Scheduler::EventId event) {..}
73         // Pass 'handle' as additional first argument to callback()
74         Scheduler::instance().add(handle, boost::bind(&callback, handle, _1), EV_READ)
75          // Timeout function
76         void timeout( int n) {..}
77         // Call timeout() handler with argument 'n'
78         Scheduler::instance().timeout(boost::bind(&timeout, n))
79         \endcode
80
81         To use member-functions as callbacks, use either <a
82         href="http://www.boost.org/libs/bind/bind.html">Boost.Bind</a> or senf::membind()
83         \code
84         // e.g. in Foo::Foo() constructor:
85         Scheduler::instance().add(handle_, senf::membind(&Foo::callback, this)), EV_READ)
86         \endcode
87
88         The handler can also be identified by an arbitrary, user specified name. This name is used
89         in error messages to identify the failing handler.
90
91
92         \section sched_fd Registering file descriptors
93         
94         File descriptors are managed using add() or remove()
95         \code
96         Scheduler::instance().add(handle, &callback, EV_ALL);
97         Scheduler::instance().remove(handle);
98         \endcode 
99
100         The callback will be called with one additional argument. This argument is the event mask of
101         type EventId. This mask will tell, which of the registered events are signaled. The
102         additional flags EV_HUP or EV_ERR (on hangup or error condition) may be set additionally.
103
104         Only a single handler may be registered for any combination of file descriptor and event
105         (registering multiple callbacks for a single fd and event does not make sense).
106
107         The %scheduler will accept any object as \a handle argument as long as retrieve_filehandle()
108         may be called on that object
109         \code
110         int fd = retrieve_filehandle(handle);
111         \endcode 
112         to fetch the file handle given some abstract handle type. retrieve_filehandle() will be
113         found using ADL depending on the argument namespace. A default implementation is provided
114         for \c int arguments (file descriptors)
115
116
117         \section sched_timers Registering timers
118
119         The %scheduler has very simple timer support. There is only one type of timer: A single-shot
120         deadline timer. More complex timers are built based on this. Timers are managed using
121         timeout() and cancelTimeout()
122         \code
123         int id = Scheduler::instance().timeout(Scheduler::instance().eventTime() + ClockService::milliseconds(100),
124                                                &callback);
125         Scheduler::instance().cancelTimeout(id);
126         \endcode 
127         Timing is based on the ClockService, which provides a high resolution and strictly
128         monotonous time source which again is based on POSIX timers. Registering a timeout will fire
129         the callback when the target time is reached. The timer may be canceled by passing the
130         returned \a id to cancelTimeout().
131
132
133         \section sched_signals Registering POSIX/UNIX signals
134
135         The %scheduler also incorporates standard POSIX/UNIX signals. Signals registered with the
136         %scheduler will be handled \e synchronously within the event loop.
137         \code
138         Scheduler::instance().registerSignal(SIGUSR1, &callback);
139         Scheduler::instance().unregisterSignal(SIGUSR1);
140         \endcode
141         When registering a signal with the %scheduler, that signal will automatically be blocked so
142         it can be handled within the %scheduler. 
143
144         A registered signal does \e not count as 'something to do'. It is therefore not possible to
145         wait for signals \e only.
146
147         \todo Change the Scheduler API to use RAII. Additionally, this will remove all dynamic
148             memory allocations from the scheduler.
149         \todo Fix the file support to use threads (?) fork (?) and a pipe so it works reliably even
150             over e.g. NFS.
151       */
152     class Scheduler
153         : boost::noncopyable
154     {
155     public:
156
157         SENF_LOG_CLASS_AREA();
158
159         ///////////////////////////////////////////////////////////////////////////
160         // Types
161
162         /** \brief Types of file descriptor events 
163
164             These events are grouped into to classes:
165             \li Ordinary file descriptor events for which handlers may be registered. These are
166                 EV_READ, EV_PRIO and EV_WRITE. EV_ALL is a combination of these three.
167             \li Error flags. These additional flags may be passed to a handler to pass an error
168                 condition to the handler. 
169          */
170         enum EventId {
171             EV_NONE  = 0                              /**< No event */
172           , EV_READ  = scheduler::FdManager::EV_READ  /**< File descriptor is readable */
173           , EV_PRIO  = scheduler::FdManager::EV_PRIO  /**< File descriptor has OOB data */
174           , EV_WRITE = scheduler::FdManager::EV_WRITE /**< File descriptor is writable */
175           , EV_ALL   = scheduler::FdManager::EV_READ
176                      | scheduler::FdManager::EV_PRIO
177                      | scheduler::FdManager::EV_WRITE /**< Used to register all events at once
178                                                            (read/prio/write) */
179           , EV_HUP   = scheduler::FdManager::EV_HUP   /**< Hangup condition on file handle */
180           , EV_ERR   = scheduler::FdManager::EV_ERR   /**< Error condition on file handle */
181         };
182
183         /** \brief Callback type for file descriptor events */
184         typedef boost::function<void (int)> FdCallback;
185
186         /** \brief Callback type for timer events */
187         typedef boost::function<void ()> SimpleCallback;
188
189         /** \brief Callback type for signal events */
190         typedef boost::function<void (siginfo_t const &)> SignalCallback;
191
192         ///////////////////////////////////////////////////////////////////////////
193         ///\name Structors and default members
194         ///@{
195
196         // private default constructor
197         // no copy constructor
198         // no copy assignment
199         // default destructor
200         // no conversion constructors
201
202         /** \brief Return %scheduler instance
203
204             This static member is used to access the singleton instance. This member is save to
205             return a correctly initialized %scheduler instance even if called at global construction
206             time
207          */
208         static Scheduler & instance();
209
210         ///@}
211         ///////////////////////////////////////////////////////////////////////////
212
213         ///\name File Descriptors
214         ///\{
215
216         template <class Handle>
217         void add(std::string const & name, Handle const & handle, FdCallback const & cb,
218                  int eventMask = EV_ALL);  ///< Add file handle event callback
219                                         /**< add() will add a callback to the %scheduler. The
220                                              callback will be called for the given type of event on
221                                              the given  arbitrary file-descriptor or
222                                              handle-like object. If there already is a Callback
223                                              registered for one of the events requested, the new
224                                              handler will replace the old one.
225                                              \param[in] name descriptive name to identify the
226                                                  callback.
227                                              \param[in] handle file descriptor or handle providing
228                                                  the Handle interface defined above.
229                                              \param[in] cb callback
230                                              \param[in] eventMask arbitrary combination via '|'
231                                                  operator of \ref senf::Scheduler::EventId "EventId"
232                                                  designators. */
233  
234         template <class Handle>        
235         void add(Handle const & handle, FdCallback const & cb,
236                  int eventMask = EV_ALL); ///< Add file handle event callback
237                                         /**< \see add() */
238
239
240         template <class Handle>
241         void remove(Handle const & handle, int eventMask = EV_ALL); ///< Remove event callback
242                                         /**< remove() will remove any callback registered for any of
243                                              the given events on the given file descriptor or handle
244                                              like object.
245                                              \param[in] handle file descriptor or handle providing
246                                                  the Handle interface defined above.
247                                              \param[in] eventMask arbitrary combination via '|'
248                                                  operator of \ref senf::Scheduler::EventId "EventId"
249                                                  designators. */
250
251         ///\}
252
253         void process();                 ///< Event handler main loop
254                                         /**< This member must be called at some time to enter the
255                                              event handler main loop. Only while this function is
256                                              running any events are handled. The call will return
257                                              only, if any callback calls terminate(). */
258
259         void terminate();               ///< Called by callbacks to terminate the main loop
260                                         /**< This member may be called by any callback to tell the
261                                              main loop to terminate. The main loop will return to
262                                              it's caller after the currently running callback
263                                              returns. */
264         
265         ClockService::clock_type eventTime() const; ///< Return date/time of last event
266                                         /**< This is the timestamp, the last event has been
267                                              signaled. This is the real time at which the event is
268                                              delivered \e not the time it should have been delivered
269                                              (in the case of timers). */
270
271         void taskTimeout(unsigned ms);
272         unsigned taskTimeout() const;
273         unsigned hangCount() const;
274
275         void restart();
276
277     protected:
278
279     private:
280         Scheduler();
281
282         void do_add(int fd, FdCallback const & cb, int eventMask = EV_ALL);
283         void do_add(std::string const & name, int fd, FdCallback const & cb, 
284                     int eventMask = EV_ALL);
285         void do_remove(int fd, int eventMask);
286
287         bool terminate_;
288
289         scheduler::FdDispatcher fdDispatcher_;
290         scheduler::FileDispatcher fileDispatcher_;
291     };
292
293     /** \brief Default file descriptor accessor
294
295         retrieve_filehandle() provides the %scheduler with support for explicit file descriptors as
296         file handle argument.
297
298         \relates Scheduler
299      */
300     int retrieve_filehandle(int fd);
301
302     /** \brief %scheduler specific time source for Utils/Logger framework
303
304         This time source may be used to provide timing information for log messages within the
305         Utils/Logger framework. This time source will use Scheduler::eventTime() to provide timing
306         information.
307      */
308     struct SchedulerLogTimeSource : public senf::log::TimeSource
309     {
310         senf::log::time_type operator()() const;
311     };
312
313 }
314
315 ///////////////////////////////hh.e////////////////////////////////////////
316 #include "Scheduler.cci"
317 //#include "Scheduler.ct"
318 #include "Scheduler.cti"
319 #endif
320
321 \f
322 // Local Variables:
323 // mode: c++
324 // fill-column: 100
325 // c-file-style: "senf"
326 // indent-tabs-mode: nil
327 // ispell-local-dictionary: "american"
328 // compile-command: "scons -u test"
329 // comment-column: 40
330 // End: