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

Comparing libev/ev++.h (file contents):
Revision 1.4 by root, Sun Nov 11 16:58:25 2007 UTC vs.
Revision 1.26 by llucax, Fri Jan 18 18:13:57 2008 UTC

1/*
2 * libev simple C++ wrapper classes
3 *
4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without modifica-
8 * tion, are permitted provided that the following conditions are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19 * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
25 * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26 * OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * the GNU General Public License ("GPL") version 2 or any later version,
30 * in which case the provisions of the GPL are applicable instead of
31 * the above. If you wish to allow the use of your version of this file
32 * only under the terms of the GPL and not to allow others to use your
33 * version of this file under the BSD license, indicate your decision
34 * by deleting the provisions above and replace them with the notice
35 * and other provisions required by the GPL. If you do not delete the
36 * provisions above, a recipient may use your version of this file under
37 * either the BSD or the GPL.
38 */
39
1#ifndef EVPP_H__ 40#ifndef EVPP_H__
2#define EVPP_H__ 41#define EVPP_H__
3 42
4/* work in progress, don't use unless you know what you are doing */ 43#ifdef EV_H
44# include EV_H
45#else
46# include "ev.h"
47#endif
5 48
6namespace ev { 49namespace ev {
7 50
8 template<class watcher> 51 typedef ev_tstamp tstamp;
9 class callback
10 {
11 struct object { };
12
13 void *obj;
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 {
24 ((reinterpret_cast<O1 *>(obj)) ->* (reinterpret_cast<void (O2::*)(watcher &, int)>(meth)))
25 (w, e);
26 }
27 };
28
29 proxy_base *prxy;
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 }
40
41 void call (watcher *w, int e) const
42 {
43 return prxy->call (obj, meth, *w, e);
44 }
45 };
46
47 #include "ev.h"
48 52
49 enum { 53 enum {
50 UNDEF = EV_UNDEF, 54 UNDEF = EV_UNDEF,
51 NONE = EV_NONE, 55 NONE = EV_NONE,
52 READ = EV_READ, 56 READ = EV_READ,
53 WRITE = EV_WRITE, 57 WRITE = EV_WRITE,
54 TIMEOUT = EV_TIMEOUT, 58 TIMEOUT = EV_TIMEOUT,
55 PERIODIC = EV_PERIODIC, 59 PERIODIC = EV_PERIODIC,
56 SIGNAL = EV_SIGNAL, 60 SIGNAL = EV_SIGNAL,
61 CHILD = EV_CHILD,
62 STAT = EV_STAT,
57 IDLE = EV_IDLE, 63 IDLE = EV_IDLE,
58 CHECK = EV_CHECK, 64 CHECK = EV_CHECK,
59 PREPARE = EV_PREPARE, 65 PREPARE = EV_PREPARE,
60 CHILD = EV_CHILD, 66 FORK = EV_FORK,
67 EMBED = EV_EMBED,
61 ERROR = EV_ERROR, 68 ERROR = EV_ERROR,
62 }; 69 };
63 70
64 typedef ev_tstamp tstamp; 71 enum
72 {
73 AUTO = EVFLAG_AUTO,
74 NOENV = EVFLAG_NOENV,
75 FORKCHECK = EVFLAG_FORKCHECK,
76 SELECT = EVBACKEND_SELECT,
77 POLL = EVBACKEND_POLL,
78 EPOLL = EVBACKEND_EPOLL,
79 KQUEUE = EVBACKEND_KQUEUE,
80 DEVPOLL = EVBACKEND_DEVPOLL,
81 PORT = EVBACKEND_PORT
82 };
83
84 enum
85 {
86 NONBLOCK = EVLOOP_NONBLOCK,
87 ONESHOT = EVLOOP_ONESHOT
88 };
89
90 enum how_t
91 {
92 ONE = EVUNLOOP_ONE,
93 ALL = EVUNLOOP_ALL
94 };
95
96 template<class ev_watcher, class watcher>
97 struct base : ev_watcher
98 {
99 #if EV_MULTIPLICITY
100 EV_P;
101
102 void set (EV_P)
103 {
104 this->EV_A = EV_A;
105 }
106 #endif
107
108 base ()
109 {
110 ev_init (this, 0);
111 }
112
113 void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents))
114 {
115 this->data = data;
116 ev_set_cb (static_cast<ev_watcher *>(this), cb);
117 }
118
119 // method callback
120 template<class K, void (K::*method)(watcher &w, int)>
121 void set (K *object)
122 {
123 set_ (object, method_thunk<K, method>);
124 }
125
126 template<class K, void (K::*method)(watcher &w, int)>
127 static void method_thunk (EV_P_ ev_watcher *w, int revents)
128 {
129 K *obj = static_cast<K *>(w->data);
130 (obj->*method) (*static_cast<watcher *>(w), revents);
131 }
132
133 // const method callback
134 template<class K, void (K::*method)(watcher &w, int) const>
135 void set (const K *object)
136 {
137 set_ (object, const_method_thunk<K, method>);
138 }
139
140 template<class K, void (K::*method)(watcher &w, int) const>
141 static void const_method_thunk (EV_P_ ev_watcher *w, int revents)
142 {
143 K *obj = static_cast<K *>(w->data);
144 (static_cast<K *>(w->data)->*method) (*static_cast<watcher *>(w), revents);
145 }
146
147 // function callback
148 template<void (*function)(watcher &w, int)>
149 void set (void *data = 0)
150 {
151 set_ (data, function_thunk<function>);
152 }
153
154 template<void (*function)(watcher &w, int)>
155 static void function_thunk (EV_P_ ev_watcher *w, int revents)
156 {
157 function (*static_cast<watcher *>(w), revents);
158 }
159
160 // simple callback
161 template<class K, void (K::*method)()>
162 void set (K *object)
163 {
164 set_ (object, method_noargs_thunk<K, method>);
165 }
166
167 template<class K, void (K::*method)()>
168 static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents)
169 {
170 K *obj = static_cast<K *>(w->data);
171 (obj->*method) ();
172 }
173
174 void operator ()(int events = EV_UNDEF)
175 {
176 return ev_cb (static_cast<ev_watcher *>(this))
177 (static_cast<ev_watcher *>(this), events);
178 }
179
180 bool is_active () const
181 {
182 return ev_is_active (static_cast<const ev_watcher *>(this));
183 }
184
185 bool is_pending () const
186 {
187 return ev_is_pending (static_cast<const ev_watcher *>(this));
188 }
189 };
190
191 inline void delay (tstamp interval)
192 {
193 ev_sleep (interval);
194 }
195
196 inline int version_major ()
197 {
198 return ev_version_major ();
199 }
200
201 inline int version_minor ()
202 {
203 return ev_version_minor ();
204 }
205
206 inline unsigned int supported_backends ()
207 {
208 return ev_supported_backends ();
209 }
210
211 inline unsigned int recommended_backends ()
212 {
213 return ev_recommended_backends ();
214 }
215
216 inline unsigned int embeddable_backends ()
217 {
218 return ev_embeddable_backends ();
219 }
220
221 inline void set_allocator (void *(*cb)(void *ptr, long size))
222 {
223 ev_set_allocator (cb);
224 }
225
226 inline void set_syserr_cb (void (*cb)(const char *msg))
227 {
228 ev_set_syserr_cb (cb);
229 }
230
65 231
66 inline ev_tstamp now (EV_P) 232 inline ev_tstamp now (EV_P)
67 { 233 {
68 return ev_now (EV_A); 234 return ev_now (EV_A);
69 } 235 }
70 236
71 #if EV_MULTIPLICITY 237 #if EV_MULTIPLICITY
72
73 #define EV_CONSTRUCT(cppstem) \
74 EV_P; \ 238 #define EV_CONSTRUCT \
75 \
76 void set (EV_P) \ 239 (EV_P = EV_DEFAULT) \
77 { \ 240 { \
78 this->EV_A = EV_A; \
79 } \
80 \ 241 set (EV_A); \
81 template<class O1, class O2> \ 242 }
82 explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int), EV_P = ev_default_loop (0)) \
83 : callback<cppstem> (object, method), EV_A (EV_A)
84
85 #else 243 #else
86 244 #define EV_CONSTRUCT \
87 #define EV_CONSTRUCT(cppstem) \ 245 () \
88 template<class O1, class O2> \ 246 { \
89 explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int)) \ 247 }
90 : callback<cppstem> (object, method)
91
92 #endif 248 #endif
93 249
94 /* using a template here would require quite a bit more lines, 250 /* using a template here would require quite a bit more lines,
95 * so a macro solution was chosen */ 251 * so a macro solution was chosen */
96 #define EV_BEGIN_WATCHER(cppstem,cstem) \ 252 #define EV_BEGIN_WATCHER(cppstem,cstem) \
97 \ 253 \
98 static void cb_ ## cppstem (struct ev_ ## cstem *w, int revents); \
99 \
100 struct cppstem : ev_ ## cstem, callback<cppstem> \ 254 struct cppstem : base<ev_ ## cstem, cppstem> \
101 { \ 255 { \
102 EV_CONSTRUCT (cppstem) \
103 { \
104 ev_init (static_cast<ev_ ## cstem *>(this), cb_ ## cppstem); \
105 } \
106 \
107 bool is_active () const \
108 { \
109 return ev_is_active (static_cast<const ev_ ## cstem *>(this)); \
110 } \
111 \
112 bool is_pending () const \
113 { \
114 return ev_is_pending (static_cast<const ev_ ## cstem *>(this)); \
115 } \
116 \
117 void start () \ 256 void start () \
118 { \ 257 { \
119 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 258 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
120 } \ 259 } \
121 \ 260 \
122 void stop () \ 261 void stop () \
123 { \ 262 { \
124 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 263 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
125 } \ 264 } \
126 \ 265 \
127 void operator ()(int events = EV_UNDEF) \
128 { \ 266 cppstem EV_CONSTRUCT \
129 return call (this, events); \
130 } \
131 \ 267 \
132 ~cppstem () \ 268 ~cppstem () \
133 { \ 269 { \
134 stop (); \ 270 stop (); \
135 } \ 271 } \
136 \ 272 \
273 using base<ev_ ## cstem, cppstem>::set; \
274 \
137 private: \ 275 private: \
138 \ 276 \
139 cppstem (const cppstem &o) \ 277 cppstem (const cppstem &o); \
140 : callback<cppstem> (this, (void (cppstem::*)(cppstem &, int))0) \ 278 \
141 { /* disabled */ } \ 279 cppstem & operator =(const cppstem &o); \
142 void operator =(const cppstem &o) { /* disabled */ } \
143 \ 280 \
144 public: 281 public:
145 282
146 #define EV_END_WATCHER(cppstem,cstem) \ 283 #define EV_END_WATCHER(cppstem,cstem) \
147 }; \
148 \
149 static void cb_ ## cppstem (struct ev_ ## cstem *w, int revents) \
150 { \
151 (*static_cast<cppstem *>(w))(revents); \
152 } 284 };
153 285
154 EV_BEGIN_WATCHER (io, io) 286 EV_BEGIN_WATCHER (io, io)
155 void set (int fd, int events) 287 void set (int fd, int events)
156 { 288 {
157 int active = is_active (); 289 int active = is_active ();
194 { 326 {
195 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 327 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
196 } 328 }
197 EV_END_WATCHER (timer, timer) 329 EV_END_WATCHER (timer, timer)
198 330
199 #if EV_PERIODICS 331 #if EV_PERIODIC_ENABLE
200 EV_BEGIN_WATCHER (periodic, periodic) 332 EV_BEGIN_WATCHER (periodic, periodic)
201 void set (ev_tstamp at, ev_tstamp interval = 0.) 333 void set (ev_tstamp at, ev_tstamp interval = 0.)
202 { 334 {
203 int active = is_active (); 335 int active = is_active ();
204 if (active) stop (); 336 if (active) stop ();
217 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this)); 349 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
218 } 350 }
219 EV_END_WATCHER (periodic, periodic) 351 EV_END_WATCHER (periodic, periodic)
220 #endif 352 #endif
221 353
222 EV_BEGIN_WATCHER (idle, idle)
223 EV_END_WATCHER (idle, idle)
224
225 EV_BEGIN_WATCHER (prepare, prepare)
226 EV_END_WATCHER (prepare, prepare)
227
228 EV_BEGIN_WATCHER (check, check)
229 EV_END_WATCHER (check, check)
230
231 EV_BEGIN_WATCHER (sig, signal) 354 EV_BEGIN_WATCHER (sig, signal)
232 void set (int signum) 355 void set (int signum)
233 { 356 {
234 int active = is_active (); 357 int active = is_active ();
235 if (active) stop (); 358 if (active) stop ();
258 set (pid); 381 set (pid);
259 start (); 382 start ();
260 } 383 }
261 EV_END_WATCHER (child, child) 384 EV_END_WATCHER (child, child)
262 385
386 #if EV_STAT_ENABLE
387 EV_BEGIN_WATCHER (stat, stat)
388 void set (const char *path, ev_tstamp interval = 0.)
389 {
390 int active = is_active ();
391 if (active) stop ();
392 ev_stat_set (static_cast<ev_stat *>(this), path, interval);
393 if (active) start ();
394 }
395
396 void start (const char *path, ev_tstamp interval = 0.)
397 {
398 stop ();
399 set (path, interval);
400 start ();
401 }
402
403 void update ()
404 {
405 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
406 }
407 EV_END_WATCHER (stat, stat)
408 #endif
409
410 EV_BEGIN_WATCHER (idle, idle)
411 void set () { }
412 EV_END_WATCHER (idle, idle)
413
414 EV_BEGIN_WATCHER (prepare, prepare)
415 void set () { }
416 EV_END_WATCHER (prepare, prepare)
417
418 EV_BEGIN_WATCHER (check, check)
419 void set () { }
420 EV_END_WATCHER (check, check)
421
422 #if EV_EMBED_ENABLE
423 EV_BEGIN_WATCHER (embed, embed)
424 void start (struct ev_loop *embedded_loop)
425 {
426 stop ();
427 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
428 start ();
429 }
430
431 void sweep ()
432 {
433 ev_embed_sweep (EV_A_ static_cast<ev_embed *>(this));
434 }
435 EV_END_WATCHER (embed, embed)
436 #endif
437
438 #if EV_FORK_ENABLE
439 EV_BEGIN_WATCHER (fork, fork)
440 void set () { }
441 EV_END_WATCHER (fork, fork)
442 #endif
443
263 #undef EV_CONSTRUCT 444 #undef EV_CONSTRUCT
264 #undef EV_BEGIN_WATCHER 445 #undef EV_BEGIN_WATCHER
446 #undef EV_END_WATCHER
265} 447}
266 448
267#endif 449#endif
268 450

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines