283ade6f8fb3e285ab3801c335f7002e329273e1
[senf.git] / senf / Scheduler / FdManager.hh
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 FdManager public header */
25
26 #ifndef HH_SENF_Scheduler_FdManager_
27 #define HH_SENF_Scheduler_FdManager_ 1
28
29 // Custom includes
30 #include "Poller.hh"
31 #include "ClockService.hh"
32 #include <senf/Utils/singleton.hh>
33
34 //#include "FdManager.mpp"
35 ///////////////////////////////hh.p////////////////////////////////////////
36
37 namespace senf {
38 namespace scheduler {
39
40     void restart();
41
42 namespace detail {
43
44     class FdManager
45         : public singleton<FdManager>
46     {
47     public:
48         ///< Event baseclass
49         struct Event {
50             virtual ~Event();
51             virtual void signal(int events) = 0; ///< Called when the given event is posted
52         };
53
54         enum Events {
55             EV_READ = Poller<Event>::EV_READ, EV_PRIO = Poller<Event>::EV_PRIO, EV_WRITE = Poller<Event>::EV_WRITE,
56             EV_HUP = Poller<Event>::EV_HUP, EV_ERR = Poller<Event>::EV_ERR
57         };
58
59         using singleton<FdManager>::instance;
60         using singleton<FdManager>::alive;
61
62         bool set(int fd, int events, Event * entry);
63         void remove(int fd);
64
65         // Called by FileDispatcher
66         void timeout(int t);
67         int timeout() const;
68
69         void processOnce();             ///< Wait for events
70                                         /**< This call waits until at least one event is posted but
71                                              no longer than the current timeout(). */
72         ClockService::clock_type eventTime() const; ///< Time of last event
73
74     protected:
75
76     private:
77         FdManager();
78
79         Poller<Event> poller_;
80         senf::ClockService::clock_type eventTime_;
81
82         friend void senf::scheduler::restart();
83         friend class singleton<FdManager>;
84     };
85
86 }}}
87
88 ///////////////////////////////hh.e////////////////////////////////////////
89 #include "FdManager.cci"
90 //#include "FdManager.ct"
91 //#include "FdManager.cti"
92 #endif
93
94 \f
95 // Local Variables:
96 // mode: c++
97 // fill-column: 100
98 // comment-column: 40
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // End: