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

Comparing libev/ev++.h (file contents):
Revision 1.3 by root, Sun Nov 11 01:07:35 2007 UTC vs.
Revision 1.23 by llucax, Fri Jan 18 18:12:42 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 template<class ev_watcher, class watcher>
9 class callback 52 struct base : ev_watcher
10 { 53 {
11 struct object { }; 54 #if EV_MULTIPLICITY
55 EV_P;
12 56
13 void *obj; 57 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 { 58 {
24 ((reinterpret_cast<O1 *>(obj)) ->* (reinterpret_cast<void (O2::*)(watcher &, int)>(meth))) 59 this->EV_A = EV_A;
25 (w, e);
26 } 60 }
61 #endif
62
63 base ()
64 {
65 ev_init (this, 0);
27 }; 66 }
28 67
29 proxy_base *prxy; 68 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 } 69 {
40 70 this->data = data;
41 void call (watcher *w, int e) const 71 ev_set_cb (static_cast<ev_watcher *>(this), cb);
42 { 72 }
43 return prxy->call (obj, meth, *w, e); 73
74 // method callback
75 template<class K, void (K::*method)(watcher &w, int)>
76 void set (K *object)
77 {
78 set_ (object, method_thunk<K, method>);
79 }
80
81 template<class K, void (K::*method)(watcher &w, int)>
82 static void method_thunk (EV_P_ ev_watcher *w, int revents)
83 {
84 K *obj = static_cast<K *>(w->data);
85 (obj->*method) (*static_cast<watcher *>(w), revents);
86 }
87
88 // const method callback
89 template<class K, void (K::*method)(watcher &w, int) const>
90 void set (const K *object)
91 {
92 set_ (object, const_method_thunk<K, method>);
93 }
94
95 template<class K, void (K::*method)(watcher &w, int) const>
96 static void const_method_thunk (EV_P_ ev_watcher *w, int revents)
97 {
98 K *obj = static_cast<K *>(w->data);
99 (static_cast<K *>(w->data)->*method) (*static_cast<watcher *>(w), revents);
100 }
101
102 // function callback
103 template<void (*function)(watcher &w, int)>
104 void set (void *data = 0)
105 {
106 set_ (data, function_thunk<function>);
107 }
108
109 template<void (*function)(watcher &w, int)>
110 static void function_thunk (EV_P_ ev_watcher *w, int revents)
111 {
112 function (*static_cast<watcher *>(w), revents);
113 }
114
115 // simple callback
116 template<class K, void (K::*method)()>
117 void set (K *object)
118 {
119 set_ (object, method_noargs_thunk<K, method>);
120 }
121
122 template<class K, void (K::*method)()>
123 static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents)
124 {
125 K *obj = static_cast<K *>(w->data);
126 (obj->*method) ();
127 }
128
129 void operator ()(int events = EV_UNDEF)
130 {
131 return ev_cb (static_cast<ev_watcher *>(this))
132 (static_cast<ev_watcher *>(this), events);
133 }
134
135 bool is_active () const
136 {
137 return ev_is_active (static_cast<const ev_watcher *>(this));
138 }
139
140 bool is_pending () const
141 {
142 return ev_is_pending (static_cast<const ev_watcher *>(this));
44 } 143 }
45 }; 144 };
46
47 #include "ev.h"
48 145
49 enum { 146 enum {
50 UNDEF = EV_UNDEF, 147 UNDEF = EV_UNDEF,
51 NONE = EV_NONE, 148 NONE = EV_NONE,
52 READ = EV_READ, 149 READ = EV_READ,
53 WRITE = EV_WRITE, 150 WRITE = EV_WRITE,
54 TIMEOUT = EV_TIMEOUT, 151 TIMEOUT = EV_TIMEOUT,
55 PERIODIC = EV_PERIODIC, 152 PERIODIC = EV_PERIODIC,
56 SIGNAL = EV_SIGNAL, 153 SIGNAL = EV_SIGNAL,
154 CHILD = EV_CHILD,
155 STAT = EV_STAT,
57 IDLE = EV_IDLE, 156 IDLE = EV_IDLE,
58 CHECK = EV_CHECK, 157 CHECK = EV_CHECK,
59 PREPARE = EV_PREPARE, 158 PREPARE = EV_PREPARE,
60 CHILD = EV_CHILD, 159 FORK = EV_FORK,
160 EMBED = EV_EMBED,
61 ERROR = EV_ERROR, 161 ERROR = EV_ERROR,
62 }; 162 };
63 163
64 typedef ev_tstamp tstamp; 164 typedef ev_tstamp tstamp;
65 165
67 { 167 {
68 return ev_now (EV_A); 168 return ev_now (EV_A);
69 } 169 }
70 170
71 #if EV_MULTIPLICITY 171 #if EV_MULTIPLICITY
72
73 #define EV_CONSTRUCT(cppstem) \
74 EV_P; \ 172 #define EV_CONSTRUCT \
75 \
76 void set (EV_P) \ 173 (EV_P = EV_DEFAULT) \
77 { \ 174 { \
78 this->EV_A = EV_A; \
79 } \
80 \ 175 set (EV_A); \
81 template<class O1, class O2> \ 176 }
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 177 #else
86 178 #define EV_CONSTRUCT \
87 #define EV_CONSTRUCT(cppstem) \ 179 () \
88 template<class O1, class O2> \ 180 { \
89 explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int)) \ 181 }
90 : callback<cppstem> (object, method)
91
92 #endif 182 #endif
93 183
94 /* using a template here would require quite a bit more lines, 184 /* using a template here would require quite a bit more lines,
95 * so a macro solution was chosen */ 185 * so a macro solution was chosen */
96 #define EV_DECLARE_WATCHER(cppstem,cstem) \ 186 #define EV_BEGIN_WATCHER(cppstem,cstem) \
97 \ 187 \
98 extern "C" void cb_ ## cppstem (struct ev_ ## cstem *w, int revents); \
99 \
100 struct cppstem : ev_ ## cstem, callback<cppstem> \ 188 struct cppstem : base<ev_ ## cstem, cppstem> \
101 { \ 189 { \
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 () \ 190 void start () \
118 { \ 191 { \
119 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 192 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
120 } \ 193 } \
121 \ 194 \
122 void stop () \ 195 void stop () \
123 { \ 196 { \
124 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 197 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
125 } \ 198 } \
126 \ 199 \
127 void operator ()(int events = EV_UNDEF) \
128 { \ 200 cppstem EV_CONSTRUCT \
129 return call (this, events); \
130 } \
131 \ 201 \
132 ~cppstem () \ 202 ~cppstem () \
133 { \ 203 { \
134 stop (); \ 204 stop (); \
135 } \ 205 } \
136 \ 206 \
207 using base<ev_ ## cstem, cppstem>::set; \
208 \
137 private: \ 209 private: \
138 \ 210 \
139 cppstem (const cppstem &o) \ 211 cppstem (const cppstem &o); \
140 : callback<cppstem> (this, (void (cppstem::*)(cppstem &, int))0) \ 212 \
141 { /* disabled */ } \ 213 cppstem & operator =(const cppstem &o); \
142 void operator =(const cppstem &o) { /* disabled */ } \
143 \ 214 \
144 public: 215 public:
145 216
217 #define EV_END_WATCHER(cppstem,cstem) \
218 };
219
146 EV_DECLARE_WATCHER (io, io) 220 EV_BEGIN_WATCHER (io, io)
147 void set (int fd, int events) 221 void set (int fd, int events)
148 { 222 {
149 int active = is_active (); 223 int active = is_active ();
150 if (active) stop (); 224 if (active) stop ();
151 ev_io_set (static_cast<ev_io *>(this), fd, events); 225 ev_io_set (static_cast<ev_io *>(this), fd, events);
163 void start (int fd, int events) 237 void start (int fd, int events)
164 { 238 {
165 set (fd, events); 239 set (fd, events);
166 start (); 240 start ();
167 } 241 }
168 }; 242 EV_END_WATCHER (io, io)
169 243
170 EV_DECLARE_WATCHER (timer, timer) 244 EV_BEGIN_WATCHER (timer, timer)
171 void set (ev_tstamp after, ev_tstamp repeat = 0.) 245 void set (ev_tstamp after, ev_tstamp repeat = 0.)
172 { 246 {
173 int active = is_active (); 247 int active = is_active ();
174 if (active) stop (); 248 if (active) stop ();
175 ev_timer_set (static_cast<ev_timer *>(this), after, repeat); 249 ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
184 258
185 void again () 259 void again ()
186 { 260 {
187 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 261 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
188 } 262 }
189 }; 263 EV_END_WATCHER (timer, timer)
190 264
191 #if EV_PERIODICS 265 #if EV_PERIODIC_ENABLE
192 EV_DECLARE_WATCHER (periodic, periodic) 266 EV_BEGIN_WATCHER (periodic, periodic)
193 void set (ev_tstamp at, ev_tstamp interval = 0.) 267 void set (ev_tstamp at, ev_tstamp interval = 0.)
194 { 268 {
195 int active = is_active (); 269 int active = is_active ();
196 if (active) stop (); 270 if (active) stop ();
197 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0); 271 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
206 280
207 void again () 281 void again ()
208 { 282 {
209 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this)); 283 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
210 } 284 }
211 }; 285 EV_END_WATCHER (periodic, periodic)
212 #endif 286 #endif
213 287
214 EV_DECLARE_WATCHER (idle, idle)
215 };
216
217 EV_DECLARE_WATCHER (prepare, prepare)
218 };
219
220 EV_DECLARE_WATCHER (check, check)
221 };
222
223 EV_DECLARE_WATCHER (sig, signal) 288 EV_BEGIN_WATCHER (sig, signal)
224 void set (int signum) 289 void set (int signum)
225 { 290 {
226 int active = is_active (); 291 int active = is_active ();
227 if (active) stop (); 292 if (active) stop ();
228 ev_signal_set (static_cast<ev_signal *>(this), signum); 293 ev_signal_set (static_cast<ev_signal *>(this), signum);
232 void start (int signum) 297 void start (int signum)
233 { 298 {
234 set (signum); 299 set (signum);
235 start (); 300 start ();
236 } 301 }
237 }; 302 EV_END_WATCHER (sig, signal)
238 303
239 EV_DECLARE_WATCHER (child, child) 304 EV_BEGIN_WATCHER (child, child)
240 void set (int pid) 305 void set (int pid)
241 { 306 {
242 int active = is_active (); 307 int active = is_active ();
243 if (active) stop (); 308 if (active) stop ();
244 ev_child_set (static_cast<ev_child *>(this), pid); 309 ev_child_set (static_cast<ev_child *>(this), pid);
248 void start (int pid) 313 void start (int pid)
249 { 314 {
250 set (pid); 315 set (pid);
251 start (); 316 start ();
252 } 317 }
253 }; 318 EV_END_WATCHER (child, child)
319
320 #if EV_STAT_ENABLE
321 EV_BEGIN_WATCHER (stat, stat)
322 void set (const char *path, ev_tstamp interval = 0.)
323 {
324 int active = is_active ();
325 if (active) stop ();
326 ev_stat_set (static_cast<ev_stat *>(this), path, interval);
327 if (active) start ();
328 }
329
330 void start (const char *path, ev_tstamp interval = 0.)
331 {
332 stop ();
333 set (path, interval);
334 start ();
335 }
336
337 void update ()
338 {
339 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
340 }
341 EV_END_WATCHER (stat, stat)
342 #endif
343
344 EV_BEGIN_WATCHER (idle, idle)
345 void set () { }
346 EV_END_WATCHER (idle, idle)
347
348 EV_BEGIN_WATCHER (prepare, prepare)
349 void set () { }
350 EV_END_WATCHER (prepare, prepare)
351
352 EV_BEGIN_WATCHER (check, check)
353 void set () { }
354 EV_END_WATCHER (check, check)
355
356 #if EV_EMBED_ENABLE
357 EV_BEGIN_WATCHER (embed, embed)
358 void start (struct ev_loop *embedded_loop)
359 {
360 stop ();
361 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
362 start ();
363 }
364
365 void sweep ()
366 {
367 ev_embed_sweep (EV_A_ static_cast<ev_embed *>(this));
368 }
369 EV_END_WATCHER (embed, embed)
370 #endif
371
372 #if EV_FORK_ENABLE
373 EV_BEGIN_WATCHER (fork, fork)
374 void set () { }
375 EV_END_WATCHER (fork, fork)
376 #endif
254 377
255 #undef EV_CONSTRUCT 378 #undef EV_CONSTRUCT
379 #undef EV_BEGIN_WATCHER
256 #undef EV_DECLARE_WATCHER 380 #undef EV_END_WATCHER
257} 381}
258 382
259#endif 383#endif
260 384

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines