ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev++.h
(Generate patch)

Comparing libev/ev++.h (file contents):
Revision 1.1 by root, Sat Nov 10 21:19:30 2007 UTC vs.
Revision 1.14 by root, Tue Dec 4 17:08:05 2007 UTC

1#ifndef EVPP_H__ 1#ifndef EVPP_H__
2#define EVPP_H__ 2#define EVPP_H__
3 3
4/* work in progress, don't use unless you know what you are doing */ 4#include "ev.h"
5 5
6namespace ev { 6namespace ev {
7 7
8 template<class watcher> 8 template<class ev_watcher, class watcher>
9 class callback 9 struct base : ev_watcher
10 { 10 {
11 struct object { }; 11 #if EV_MULTIPLICITY
12 EV_P;
12 13
13 void *obj; 14 void set (EV_P)
14 void (object::*meth)(watcher &, int);
15
16 /* a proxy is a kind of recipe on how to call a specific class method */
17 struct proxy_base {
18 virtual void call (void *obj, void (object::*meth)(watcher &, int), watcher &w, int) const = 0;
19 };
20 template<class O1, class O2>
21 struct proxy : proxy_base {
22 virtual void call (void *obj, void (object::*meth)(watcher &, int), watcher &w, int e) const
23 { 15 {
24 ((reinterpret_cast<O1 *>(obj)) ->* (reinterpret_cast<void (O2::*)(watcher &, int)>(meth))) 16 this->EV_A = EV_A;
25 (w, e);
26 } 17 }
18 #endif
19
20 base ()
21 {
22 ev_init (this, 0);
27 }; 23 }
28 24
29 proxy_base *prxy; 25 void set_ (void *object, void (*cb)(ev_watcher *w, int revents))
30
31 public:
32 template<class O1, class O2>
33 explicit callback (O1 *object, void (O2::*method)(watcher &, int))
34 {
35 static proxy<O1,O2> p;
36 obj = reinterpret_cast<void *>(object);
37 meth = reinterpret_cast<void (object::*)(watcher &, int)>(method);
38 prxy = &p;
39 } 26 {
40 27 this->data = object;
41 void call (watcher *w, int e) const 28 ev_set_cb (static_cast<ev_watcher *>(this), cb);
42 { 29 }
43 return prxy->call (obj, meth, *w, e); 30
31 template<class K, void (K::*method)(watcher &w, int)>
32 void set (K *object)
33 {
34 set_ (object, method_thunk<K, method>);
35 }
36
37 template<class K, void (K::*method)(watcher &w, int)>
38 static void method_thunk (ev_watcher *w, int revents)
39 {
40 watcher *self = static_cast<watcher *>(w);
41 K *obj = static_cast<K *>(self->data);
42 (obj->*method) (*self, revents);
43 }
44
45 template<class K, void (K::*method)(watcher &w, int) const>
46 void set (const K *object)
47 {
48 set_ (object, const_method_thunk<K, method>);
49 }
50
51 template<class K, void (K::*method)(watcher &w, int) const>
52 static void const_method_thunk (ev_watcher *w, int revents)
53 {
54 watcher *self = static_cast<watcher *>(w);
55 K *obj = static_cast<K *>(self->data);
56 (obj->*method) (*self, revents);
57 }
58
59 template<void (*function)(watcher &w, int)>
60 void set ()
61 {
62 set_ (0, function_thunk<function>);
63 }
64
65 template<void (*function)(watcher &w, int)>
66 static void function_thunk (ev_watcher *w, int revents)
67 {
68 watcher *self = static_cast<watcher *>(w);
69 function (*self, revents);
70 }
71
72 void operator ()(int events = EV_UNDEF)
73 {
74 return ev_cb (static_cast<ev_watcher *>(this))
75 (static_cast<ev_watcher *>(this), events);
76 }
77
78 bool is_active () const
79 {
80 return ev_is_active (static_cast<const ev_watcher *>(this));
81 }
82
83 bool is_pending () const
84 {
85 return ev_is_pending (static_cast<const ev_watcher *>(this));
44 } 86 }
45 }; 87 };
46 88
47 #include "ev.h" 89 enum {
90 UNDEF = EV_UNDEF,
91 NONE = EV_NONE,
92 READ = EV_READ,
93 WRITE = EV_WRITE,
94 TIMEOUT = EV_TIMEOUT,
95 PERIODIC = EV_PERIODIC,
96 SIGNAL = EV_SIGNAL,
97 CHILD = EV_CHILD,
98 STAT = EV_STAT,
99 IDLE = EV_IDLE,
100 CHECK = EV_CHECK,
101 PREPARE = EV_PREPARE,
102 FORK = EV_FORK,
103 EMBED = EV_EMBED,
104 ERROR = EV_ERROR,
105 };
48 106
49 typedef ev_tstamp tstamp; 107 typedef ev_tstamp tstamp;
50 108
51 inline ev_tstamp now (EV_P) 109 inline ev_tstamp now (EV_P)
52 { 110 {
53 return ev_now (EV_A); 111 return ev_now (EV_A);
54 } 112 }
55 113
56 #if EV_MULTIPLICITY 114 #if EV_MULTIPLICITY
57
58 #define EV_CONSTRUCT(cppstem) \
59 EV_P; \ 115 #define EV_CONSTRUCT \
60 \
61 void set (EV_P) \ 116 (EV_P = EV_DEFAULT) \
62 { \ 117 { \
63 this->EV_A = EV_A; \
64 } \
65 \ 118 set (EV_A); \
66 template<class O1, class O2> \ 119 }
67 explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int), EV_P = ev_default_loop (0)) \
68 : callback<cppstem> (object, method), EV_A (EV_A)
69
70 #else 120 #else
71 121 #define EV_CONSTRUCT \
72 #define EV_CONSTRUCT(cppstem) \ 122 () \
73 template<class O1, class O2> \ 123 { \
74 explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int)) \ 124 }
75 : callback<cppstem> (object, method)
76
77 #endif 125 #endif
78 126
79 /* using a template here would require quite a bit more lines, 127 /* using a template here would require quite a bit more lines,
80 * so a macro solution was chosen */ 128 * so a macro solution was chosen */
81 #define EV_DECLARE_WATCHER(cppstem,cstem) \ 129 #define EV_BEGIN_WATCHER(cppstem,cstem) \
82 \ 130 \
83 extern "C" void cb_ ## cppstem (struct ev_ ## cstem *w, int revents); \
84 \
85 struct cppstem : ev_ ## cstem, callback<cppstem> \ 131 struct cppstem : base<ev_ ## cstem, cppstem> \
86 { \ 132 { \
87 EV_CONSTRUCT (cppstem) \
88 { \
89 ev_init (static_cast<ev_ ## cstem *>(this), cb_ ## cppstem); \
90 } \
91 \
92 bool is_active () const \
93 { \
94 return ev_is_active (static_cast<const ev_ ## cstem *>(this)); \
95 } \
96 \
97 bool is_pending () const \
98 { \
99 return ev_is_pending (static_cast<const ev_ ## cstem *>(this)); \
100 } \
101 \
102 void start () \ 133 void start () \
103 { \ 134 { \
104 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 135 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
105 } \ 136 } \
106 \ 137 \
107 void stop () \ 138 void stop () \
108 { \ 139 { \
109 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 140 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
110 } \ 141 } \
111 \ 142 \
112 void operator ()(int events = EV_UNDEF) \ 143 cppstem EV_CONSTRUCT \
144 \
145 ~cppstem () \
113 { \ 146 { \
114 return call (this, events); \ 147 stop (); \
115 } \ 148 } \
116 \ 149 \
150 using base<ev_ ## cstem, cppstem>::set; \
151 \
117 private: \ 152 private: \
118 \ 153 \
119 cppstem (const cppstem &o) \ 154 cppstem (const cppstem &o) \
120 : callback<cppstem> (this, (void (cppstem::*)(cppstem &, int))0) \
121 { /* disabled */ } \ 155 { /* disabled */ } \
156 \
122 void operator =(const cppstem &o) { /* disabled */ } \ 157 void operator =(const cppstem &o) { /* disabled */ } \
123 \ 158 \
124 public: 159 public:
125 160
161 #define EV_END_WATCHER(cppstem,cstem) \
162 };
163
126 EV_DECLARE_WATCHER (io, io) 164 EV_BEGIN_WATCHER (io, io)
127 void set (int fd, int events) 165 void set (int fd, int events)
128 { 166 {
129 int active = is_active (); 167 int active = is_active ();
130 if (active) stop (); 168 if (active) stop ();
131 ev_io_set (static_cast<ev_io *>(this), fd, events); 169 ev_io_set (static_cast<ev_io *>(this), fd, events);
143 void start (int fd, int events) 181 void start (int fd, int events)
144 { 182 {
145 set (fd, events); 183 set (fd, events);
146 start (); 184 start ();
147 } 185 }
148 }; 186 EV_END_WATCHER (io, io)
149 187
150 EV_DECLARE_WATCHER (timer, timer) 188 EV_BEGIN_WATCHER (timer, timer)
151 void set (ev_tstamp after, ev_tstamp repeat = 0.) 189 void set (ev_tstamp after, ev_tstamp repeat = 0.)
152 { 190 {
153 int active = is_active (); 191 int active = is_active ();
154 if (active) stop (); 192 if (active) stop ();
155 ev_timer_set (static_cast<ev_timer *>(this), after, repeat); 193 ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
164 202
165 void again () 203 void again ()
166 { 204 {
167 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 205 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
168 } 206 }
169 }; 207 EV_END_WATCHER (timer, timer)
170 208
209 #if EV_PERIODIC_ENABLE
171 EV_DECLARE_WATCHER (periodic, periodic) 210 EV_BEGIN_WATCHER (periodic, periodic)
172 void set (ev_tstamp at, ev_tstamp interval = 0.) 211 void set (ev_tstamp at, ev_tstamp interval = 0.)
173 { 212 {
174 int active = is_active (); 213 int active = is_active ();
175 if (active) stop (); 214 if (active) stop ();
176 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0); 215 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
185 224
186 void again () 225 void again ()
187 { 226 {
188 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this)); 227 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
189 } 228 }
190 }; 229 EV_END_WATCHER (periodic, periodic)
230 #endif
191 231
192 EV_DECLARE_WATCHER (idle, idle)
193 };
194
195 EV_DECLARE_WATCHER (prepare, prepare)
196 };
197
198 EV_DECLARE_WATCHER (check, check)
199 };
200
201 EV_DECLARE_WATCHER (sig, signal) 232 EV_BEGIN_WATCHER (sig, signal)
202 void set (int signum) 233 void set (int signum)
203 { 234 {
204 int active = is_active (); 235 int active = is_active ();
205 if (active) stop (); 236 if (active) stop ();
206 ev_signal_set (static_cast<ev_signal *>(this), signum); 237 ev_signal_set (static_cast<ev_signal *>(this), signum);
210 void start (int signum) 241 void start (int signum)
211 { 242 {
212 set (signum); 243 set (signum);
213 start (); 244 start ();
214 } 245 }
215 }; 246 EV_END_WATCHER (sig, signal)
216 247
217 EV_DECLARE_WATCHER (child, child) 248 EV_BEGIN_WATCHER (child, child)
218 void set (int pid) 249 void set (int pid)
219 { 250 {
220 int active = is_active (); 251 int active = is_active ();
221 if (active) stop (); 252 if (active) stop ();
222 ev_child_set (static_cast<ev_child *>(this), pid); 253 ev_child_set (static_cast<ev_child *>(this), pid);
226 void start (int pid) 257 void start (int pid)
227 { 258 {
228 set (pid); 259 set (pid);
229 start (); 260 start ();
230 } 261 }
231 }; 262 EV_END_WATCHER (child, child)
263
264 #if EV_STAT_ENABLE
265 EV_BEGIN_WATCHER (stat, stat)
266 void set (const char *path, ev_tstamp interval = 0.)
267 {
268 int active = is_active ();
269 if (active) stop ();
270 ev_stat_set (static_cast<ev_stat *>(this), path, interval);
271 if (active) start ();
272 }
273
274 void start (const char *path, ev_tstamp interval = 0.)
275 {
276 stop ();
277 set (path, interval);
278 start ();
279 }
280
281 void update ()
282 {
283 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
284 }
285 EV_END_WATCHER (stat, stat)
286 #endif
287
288 EV_BEGIN_WATCHER (idle, idle)
289 void set () { }
290 EV_END_WATCHER (idle, idle)
291
292 EV_BEGIN_WATCHER (prepare, prepare)
293 void set () { }
294 EV_END_WATCHER (prepare, prepare)
295
296 EV_BEGIN_WATCHER (check, check)
297 void set () { }
298 EV_END_WATCHER (check, check)
299
300 #if EV_EMBED_ENABLE
301 EV_BEGIN_WATCHER (embed, embed)
302 void start (struct ev_loop *embedded_loop)
303 {
304 stop ();
305 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
306 start ();
307 }
308
309 void sweep ()
310 {
311 ev_embed_sweep (EV_A_ static_cast<ev_embed *>(this));
312 }
313 EV_END_WATCHER (embed, embed)
314 #endif
315
316 #if EV_FORK_ENABLE
317 EV_BEGIN_WATCHER (fork, fork)
318 void set () { }
319 EV_END_WATCHER (fork, fork)
320 #endif
232 321
233 #undef EV_CONSTRUCT 322 #undef EV_CONSTRUCT
323 #undef EV_BEGIN_WATCHER
234 #undef EV_DECLARE_WATCHER 324 #undef EV_END_WATCHER
235} 325}
236 326
237#endif 327#endif
238 328

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines