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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines