ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/iom.h
(Generate patch)

Comparing gvpe/src/iom.h (file contents):
Revision 1.1 by pcg, Fri Mar 21 20:33:36 2003 UTC vs.
Revision 1.11 by pcg, Fri Apr 4 05:26:45 2003 UTC

19#ifndef VPE_IOM_H__ 19#ifndef VPE_IOM_H__
20#define VPE_IOM_H__ 20#define VPE_IOM_H__
21 21
22#include <vector> 22#include <vector>
23 23
24#include <cassert>
25
24#include <sys/poll.h> 26#include <sys/poll.h>
25 27
28#include "callback.h"
26#include "slog.h" 29#include "slog.h"
27 30
28typedef double timestamp; 31typedef double tstamp;
29 32
30extern timestamp NOW; 33extern tstamp NOW;
31 34
32template<class R, class A> class callback;
33struct io_watcher; 35struct io_watcher;
34struct time_watcher; 36struct time_watcher;
35 37
36class io_manager { 38class io_manager {
37 vector<pollfd> pfs; 39 vector<pollfd> pfs;
38 vector<io_watcher *> iow; 40 vector<io_watcher *> iow;
39 vector<time_watcher *> tw; // actually a heap 41 vector<time_watcher *> tw; // actually a heap
42
43 void idle_cb (time_watcher &w); time_watcher *idle;
40public: 44public:
41 45
46 void reschedule_time_watchers ();
47
42 // register a watcher 48 // register a watcher
43 void reg (int fd, short events, io_watcher *w); 49 void reg (io_watcher *w);
44 void unreg (io_watcher *w); 50 void unreg (io_watcher *w);
45 void reg (time_watcher *w); 51 void reg (time_watcher *w);
46 void unreg (time_watcher *w); 52 void unreg (time_watcher *w);
47 53
48 void loop (); 54 void loop ();
49 55
50 io_manager (); 56 io_manager ();
51 ~io_manager (); 57 ~io_manager ();
52}; 58};
53 59
54extern io_manager iom; 60extern io_manager iom; // a singleton, together with it's construction/destruction problems.
55 61
56template<class R, class A> 62struct io_watcher : callback2<void, io_watcher &, short> {
57class callback { 63 pollfd *p;
58 struct object { };
59 64
60 void *obj; 65 template<class O1, class O2>
61 R (object::*meth)(A arg); 66 io_watcher (O1 *object, void (O2::*method)(io_watcher &, short))
67 : callback2<void, io_watcher &, short>(object,method)
68 { }
62 69
63 // a proxy is a kind of recipe on how to call a specific class method 70 ~io_watcher ();
64 struct proxy_base {
65 virtual R call (void *obj, void (object::*meth)(A), A arg) = 0;
66 };
67 template<class O1, class O2>
68 struct proxy : proxy_base {
69 virtual R call (void *obj, void (object::*meth)(A), A arg)
70 {
71 ((reinterpret_cast<O1 *>(obj)) ->* (reinterpret_cast<void (O2::*)(A)>(meth)))
72 (arg);
73 }
74 };
75 71
76 proxy_base *prxy; 72 void set(int fd, short events)
77
78public:
79 template<class O1, class O2>
80 callback (O1 *object, void (O2::*method)(A))
81 { 73 {
82 static proxy<O1,O2> p; 74 assert (p);
83 obj = reinterpret_cast<void *>(object); 75 p->fd = fd;
84 meth = reinterpret_cast<void (object::*)(A)>(method); 76 p->events = events;
85 prxy = &p;
86 } 77 }
87 78
88 R call(A arg) 79 void set(short events)
89 { 80 {
90 return prxy->call (obj, meth, arg); 81 assert (p);
91 } 82 p->events = events;
92};
93
94struct io_watcher : callback<void, short> {
95 template<class O1, class O2>
96 io_watcher (int fd, short events, O1 *object, void (O2::*method)(short revents))
97 : callback<void, short>(object,method)
98 {
99 iom.reg (fd, events, this);
100 } 83 }
101 84
102 ~io_watcher () 85 void start (int fd, short events)
86 {
87 iom.reg (this); // make sure pfd is set
88
89 p->fd = fd;
90 p->events = events;
91 }
92
93 void stop ()
103 { 94 {
104 iom.unreg (this); 95 iom.unreg (this);
105 } 96 }
106}; 97};
107 98
108struct time_watcher : callback<void, timestamp &> { 99#define TSTAMP_CANCEL -1.
109 timestamp at;
110 100
111 void set (timestamp when); 101struct time_watcher : callback1<void, time_watcher &> {
102 bool registered; // already registered?
103 tstamp at;
112 104
113 template<class O1, class O2> 105 template<class O1, class O2>
114 time_watcher (timestamp when, O1 *object, void (O2::*method)(timestamp &)) 106 time_watcher (O1 *object, void (O2::*method)(time_watcher &))
115 : callback<void, timestamp &>(object,method) 107 : callback1<void, time_watcher &>(object,method)
116 , at(when) 108 , registered(false)
109 { }
110
111 ~time_watcher ();
112
113 void set (tstamp when);
114 void trigger ();
115
116 void operator ()()
117 { 117 {
118 iom.reg (this); 118 trigger ();
119 } 119 }
120 120
121 ~time_watcher () 121 void start ();
122 void start (tstamp when)
123 {
124 set (when);
125 }
126
127 void stop ()
122 { 128 {
123 iom.unreg (this); 129 iom.unreg (this);
130 }
131
132 void reset (tstamp when = TSTAMP_CANCEL)
133 {
134 stop ();
135
136 at = when;
124 } 137 }
125}; 138};
126 139
127#endif 140#endif
128 141

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines