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

Comparing libev/ev++.h (file contents):
Revision 1.45 by root, Fri Jul 10 00:36:21 2009 UTC vs.
Revision 1.64 by root, Thu Oct 25 03:11:04 2018 UTC

1/* 1/*
2 * libev simple C++ wrapper classes 2 * libev simple C++ wrapper classes
3 * 3 *
4 * Copyright (c) 2007,2008 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007,2008,2010 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without modifica- 7 * Redistribution and use in source and binary forms, with or without modifica-
8 * tion, are permitted provided that the following conditions are met: 8 * tion, are permitted provided that the following conditions are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright notice, 10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer. 11 * this list of conditions and the following disclaimer.
12 * 12 *
13 * 2. Redistributions in binary form must reproduce the above copyright 13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the 14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution. 15 * documentation and/or other materials provided with the distribution.
16 * 16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 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- 18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
19 * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 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- 20 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
21 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
56 56
57namespace ev { 57namespace ev {
58 58
59 typedef ev_tstamp tstamp; 59 typedef ev_tstamp tstamp;
60 60
61 enum 61 enum {
62 {
63 UNDEF = EV_UNDEF, 62 UNDEF = EV_UNDEF,
64 NONE = EV_NONE, 63 NONE = EV_NONE,
65 READ = EV_READ, 64 READ = EV_READ,
66 WRITE = EV_WRITE, 65 WRITE = EV_WRITE,
66#if EV_COMPAT3
67 TIMEOUT = EV_TIMEOUT, 67 TIMEOUT = EV_TIMEOUT,
68#endif
69 TIMER = EV_TIMER,
68 PERIODIC = EV_PERIODIC, 70 PERIODIC = EV_PERIODIC,
69 SIGNAL = EV_SIGNAL, 71 SIGNAL = EV_SIGNAL,
70 CHILD = EV_CHILD, 72 CHILD = EV_CHILD,
71 STAT = EV_STAT, 73 STAT = EV_STAT,
72 IDLE = EV_IDLE, 74 IDLE = EV_IDLE,
74 PREPARE = EV_PREPARE, 76 PREPARE = EV_PREPARE,
75 FORK = EV_FORK, 77 FORK = EV_FORK,
76 ASYNC = EV_ASYNC, 78 ASYNC = EV_ASYNC,
77 EMBED = EV_EMBED, 79 EMBED = EV_EMBED,
78# undef ERROR // some systems stupidly #define ERROR 80# undef ERROR // some systems stupidly #define ERROR
79 ERROR = EV_ERROR, 81 ERROR = EV_ERROR
80 }; 82 };
81 83
82 enum 84 enum
83 { 85 {
84 AUTO = EVFLAG_AUTO, 86 AUTO = EVFLAG_AUTO,
93 PORT = EVBACKEND_PORT 95 PORT = EVBACKEND_PORT
94 }; 96 };
95 97
96 enum 98 enum
97 { 99 {
100#if EV_COMPAT3
98 NONBLOCK = EVLOOP_NONBLOCK, 101 NONBLOCK = EVLOOP_NONBLOCK,
99 ONESHOT = EVLOOP_ONESHOT 102 ONESHOT = EVLOOP_ONESHOT,
103#endif
104 NOWAIT = EVRUN_NOWAIT,
105 ONCE = EVRUN_ONCE
100 }; 106 };
101 107
102 enum how_t 108 enum how_t
103 { 109 {
104 ONE = EVUNLOOP_ONE, 110 ONE = EVBREAK_ONE,
105 ALL = EVUNLOOP_ALL 111 ALL = EVBREAK_ALL
106 }; 112 };
107 113
108 struct bad_loop 114 struct bad_loop
109#if EV_USE_STDEXCEPT 115#if EV_USE_STDEXCEPT
110 : std::runtime_error 116 : std::exception
111#endif 117#endif
112 { 118 {
113#if EV_USE_STDEXCEPT 119#if EV_USE_STDEXCEPT
114 bad_loop () 120 const char *what () const EV_NOEXCEPT
121 {
115 : std::runtime_error ("libev event loop cannot be initialized, bad value of LIBEV_FLAGS?") 122 return "libev event loop cannot be initialized, bad value of LIBEV_FLAGS?";
116 {
117 } 123 }
118#endif 124#endif
119 }; 125 };
120 126
121#ifdef EV_AX 127#ifdef EV_AX
134# define EV_AX_ 140# define EV_AX_
135#endif 141#endif
136 142
137 struct loop_ref 143 struct loop_ref
138 { 144 {
139 loop_ref (EV_P) throw () 145 loop_ref (EV_P) EV_NOEXCEPT
140#if EV_MULTIPLICITY 146#if EV_MULTIPLICITY
141 : EV_AX (EV_A) 147 : EV_AX (EV_A)
142#endif 148#endif
143 { 149 {
144 } 150 }
145 151
146 bool operator == (const loop_ref &other) const throw () 152 bool operator == (const loop_ref &other) const EV_NOEXCEPT
147 { 153 {
148#if EV_MULTIPLICITY 154#if EV_MULTIPLICITY
149 return EV_AX == other.EV_AX; 155 return EV_AX == other.EV_AX;
150#else 156#else
151 return true; 157 return true;
152#endif 158#endif
153 } 159 }
154 160
155 bool operator != (const loop_ref &other) const throw () 161 bool operator != (const loop_ref &other) const EV_NOEXCEPT
156 { 162 {
157#if EV_MULTIPLICITY 163#if EV_MULTIPLICITY
158 return ! (*this == other); 164 return ! (*this == other);
159#else 165#else
160 return false; 166 return false;
161#endif 167#endif
162 } 168 }
163 169
164#if EV_MULTIPLICITY 170#if EV_MULTIPLICITY
165 bool operator == (const EV_P) const throw () 171 bool operator == (const EV_P) const EV_NOEXCEPT
166 { 172 {
167 return this->EV_AX == EV_A; 173 return this->EV_AX == EV_A;
168 } 174 }
169 175
170 bool operator != (const EV_P) const throw () 176 bool operator != (const EV_P) const EV_NOEXCEPT
171 { 177 {
172 return (*this == EV_A); 178 return ! (*this == EV_A);
173 } 179 }
174 180
175 operator struct ev_loop * () const throw () 181 operator struct ev_loop * () const EV_NOEXCEPT
176 { 182 {
177 return EV_AX; 183 return EV_AX;
178 } 184 }
179 185
180 operator const struct ev_loop * () const throw () 186 operator const struct ev_loop * () const EV_NOEXCEPT
181 { 187 {
182 return EV_AX; 188 return EV_AX;
183 } 189 }
184 190
185 bool is_default () const throw () 191 bool is_default () const EV_NOEXCEPT
186 { 192 {
187 return EV_AX == ev_default_loop (0); 193 return EV_AX == ev_default_loop (0);
188 } 194 }
189#endif 195#endif
190 196
197#if EV_COMPAT3
191 void loop (int flags = 0) 198 void loop (int flags = 0)
192 { 199 {
193 ev_loop (EV_AX_ flags); 200 ev_run (EV_AX_ flags);
194 }
195
196 void unloop (how_t how = ONE) throw ()
197 { 201 }
202
203 void unloop (how_t how = ONE) EV_NOEXCEPT
204 {
198 ev_unloop (EV_AX_ how); 205 ev_break (EV_AX_ how);
199 }
200
201 void post_fork () throw ()
202 { 206 }
203#if EV_MULTIPLICITY 207#endif
208
209 void run (int flags = 0)
210 {
211 ev_run (EV_AX_ flags);
212 }
213
214 void break_loop (how_t how = ONE) EV_NOEXCEPT
215 {
216 ev_break (EV_AX_ how);
217 }
218
219 void post_fork () EV_NOEXCEPT
220 {
204 ev_loop_fork (EV_AX); 221 ev_loop_fork (EV_AX);
205#else
206 ev_default_fork ();
207#endif
208 } 222 }
209 223
210 unsigned int backend () const throw () 224 unsigned int backend () const EV_NOEXCEPT
211 { 225 {
212 return ev_backend (EV_AX); 226 return ev_backend (EV_AX);
213 } 227 }
214 228
215 tstamp now () const throw () 229 tstamp now () const EV_NOEXCEPT
216 { 230 {
217 return ev_now (EV_AX); 231 return ev_now (EV_AX);
218 } 232 }
219 233
220 void ref () throw () 234 void ref () EV_NOEXCEPT
221 { 235 {
222 ev_ref (EV_AX); 236 ev_ref (EV_AX);
223 } 237 }
224 238
225 void unref () throw () 239 void unref () EV_NOEXCEPT
226 { 240 {
227 ev_unref (EV_AX); 241 ev_unref (EV_AX);
228 } 242 }
229 243
230#if EV_MINIMAL < 2 244#if EV_FEATURE_API
231 unsigned int count () const throw () 245 unsigned int iteration () const EV_NOEXCEPT
232 {
233 return ev_loop_count (EV_AX);
234 } 246 {
235 247 return ev_iteration (EV_AX);
236 unsigned int depth () const throw ()
237 { 248 }
249
250 unsigned int depth () const EV_NOEXCEPT
251 {
238 return ev_loop_depth (EV_AX); 252 return ev_depth (EV_AX);
239 } 253 }
240 254
241 void set_io_collect_interval (tstamp interval) throw () 255 void set_io_collect_interval (tstamp interval) EV_NOEXCEPT
242 { 256 {
243 ev_set_io_collect_interval (EV_AX_ interval); 257 ev_set_io_collect_interval (EV_AX_ interval);
244 } 258 }
245 259
246 void set_timeout_collect_interval (tstamp interval) throw () 260 void set_timeout_collect_interval (tstamp interval) EV_NOEXCEPT
247 { 261 {
248 ev_set_timeout_collect_interval (EV_AX_ interval); 262 ev_set_timeout_collect_interval (EV_AX_ interval);
249 } 263 }
250#endif 264#endif
251 265
252 // function callback 266 // function callback
253 void once (int fd, int events, tstamp timeout, void (*cb)(int, void *), void *arg = 0) throw () 267 void once (int fd, int events, tstamp timeout, void (*cb)(int, void *), void *arg = 0) EV_NOEXCEPT
254 { 268 {
255 ev_once (EV_AX_ fd, events, timeout, cb, arg); 269 ev_once (EV_AX_ fd, events, timeout, cb, arg);
256 } 270 }
257 271
258 // method callback 272 // method callback
259 template<class K, void (K::*method)(int)> 273 template<class K, void (K::*method)(int)>
260 void once (int fd, int events, tstamp timeout, K *object) throw () 274 void once (int fd, int events, tstamp timeout, K *object) EV_NOEXCEPT
261 { 275 {
262 once (fd, events, timeout, method_thunk<K, method>, object); 276 once (fd, events, timeout, method_thunk<K, method>, object);
263 } 277 }
264 278
265 // default method == operator () 279 // default method == operator ()
266 template<class K> 280 template<class K>
267 void once (int fd, int events, tstamp timeout, K *object) throw () 281 void once (int fd, int events, tstamp timeout, K *object) EV_NOEXCEPT
268 { 282 {
269 once (fd, events, timeout, method_thunk<K, &K::operator ()>, object); 283 once (fd, events, timeout, method_thunk<K, &K::operator ()>, object);
270 } 284 }
271 285
272 template<class K, void (K::*method)(int)> 286 template<class K, void (K::*method)(int)>
273 static void method_thunk (int revents, void *arg) 287 static void method_thunk (int revents, void *arg)
274 { 288 {
275 static_cast<K *>(arg)->*method 289 (static_cast<K *>(arg)->*method)
276 (revents); 290 (revents);
277 } 291 }
278 292
279 // no-argument method callback 293 // no-argument method callback
280 template<class K, void (K::*method)()> 294 template<class K, void (K::*method)()>
281 void once (int fd, int events, tstamp timeout, K *object) throw () 295 void once (int fd, int events, tstamp timeout, K *object) EV_NOEXCEPT
282 { 296 {
283 once (fd, events, timeout, method_noargs_thunk<K, method>, object); 297 once (fd, events, timeout, method_noargs_thunk<K, method>, object);
284 } 298 }
285 299
286 template<class K, void (K::*method)()> 300 template<class K, void (K::*method)()>
287 static void method_noargs_thunk (int revents, void *arg) 301 static void method_noargs_thunk (int revents, void *arg)
288 { 302 {
289 static_cast<K *>(arg)->*method 303 (static_cast<K *>(arg)->*method)
290 (); 304 ();
291 } 305 }
292 306
293 // simpler function callback 307 // simpler function callback
294 template<void (*cb)(int)> 308 template<void (*cb)(int)>
295 void once (int fd, int events, tstamp timeout) throw () 309 void once (int fd, int events, tstamp timeout) EV_NOEXCEPT
296 { 310 {
297 once (fd, events, timeout, simpler_func_thunk<cb>); 311 once (fd, events, timeout, simpler_func_thunk<cb>);
298 } 312 }
299 313
300 template<void (*cb)(int)> 314 template<void (*cb)(int)>
304 (revents); 318 (revents);
305 } 319 }
306 320
307 // simplest function callback 321 // simplest function callback
308 template<void (*cb)()> 322 template<void (*cb)()>
309 void once (int fd, int events, tstamp timeout) throw () 323 void once (int fd, int events, tstamp timeout) EV_NOEXCEPT
310 { 324 {
311 once (fd, events, timeout, simplest_func_thunk<cb>); 325 once (fd, events, timeout, simplest_func_thunk<cb>);
312 } 326 }
313 327
314 template<void (*cb)()> 328 template<void (*cb)()>
316 { 330 {
317 (*cb) 331 (*cb)
318 (); 332 ();
319 } 333 }
320 334
321 void feed_fd_event (int fd, int revents) throw () 335 void feed_fd_event (int fd, int revents) EV_NOEXCEPT
322 { 336 {
323 ev_feed_fd_event (EV_AX_ fd, revents); 337 ev_feed_fd_event (EV_AX_ fd, revents);
324 } 338 }
325 339
326 void feed_signal_event (int signum) throw () 340 void feed_signal_event (int signum) EV_NOEXCEPT
327 { 341 {
328 ev_feed_signal_event (EV_AX_ signum); 342 ev_feed_signal_event (EV_AX_ signum);
329 } 343 }
330 344
331#if EV_MULTIPLICITY 345#if EV_MULTIPLICITY
336 350
337#if EV_MULTIPLICITY 351#if EV_MULTIPLICITY
338 struct dynamic_loop : loop_ref 352 struct dynamic_loop : loop_ref
339 { 353 {
340 354
341 dynamic_loop (unsigned int flags = AUTO) throw (bad_loop) 355 dynamic_loop (unsigned int flags = AUTO)
342 : loop_ref (ev_loop_new (flags)) 356 : loop_ref (ev_loop_new (flags))
343 { 357 {
344 if (!EV_AX) 358 if (!EV_AX)
345 throw bad_loop (); 359 throw bad_loop ();
346 } 360 }
347 361
348 ~dynamic_loop () throw () 362 ~dynamic_loop () EV_NOEXCEPT
349 { 363 {
350 ev_loop_destroy (EV_AX); 364 ev_loop_destroy (EV_AX);
351 EV_AX = 0; 365 EV_AX = 0;
352 } 366 }
353 367
360 }; 374 };
361#endif 375#endif
362 376
363 struct default_loop : loop_ref 377 struct default_loop : loop_ref
364 { 378 {
365 default_loop (unsigned int flags = AUTO) throw (bad_loop) 379 default_loop (unsigned int flags = AUTO)
366#if EV_MULTIPLICITY 380#if EV_MULTIPLICITY
367 : loop_ref (ev_default_loop (flags)) 381 : loop_ref (ev_default_loop (flags))
368#endif 382#endif
369 { 383 {
370 if ( 384 if (
375#endif 389#endif
376 ) 390 )
377 throw bad_loop (); 391 throw bad_loop ();
378 } 392 }
379 393
380 ~default_loop () throw ()
381 {
382 ev_default_destroy ();
383 }
384
385 private: 394 private:
386 default_loop (const default_loop &); 395 default_loop (const default_loop &);
387 default_loop &operator = (const default_loop &); 396 default_loop &operator = (const default_loop &);
388 }; 397 };
389 398
390 inline loop_ref get_default_loop () throw () 399 inline loop_ref get_default_loop () EV_NOEXCEPT
391 { 400 {
392#if EV_MULTIPLICITY 401#if EV_MULTIPLICITY
393 return ev_default_loop (0); 402 return ev_default_loop (0);
394#else 403#else
395 return loop_ref (); 404 return loop_ref ();
413 struct base : ev_watcher 422 struct base : ev_watcher
414 { 423 {
415 #if EV_MULTIPLICITY 424 #if EV_MULTIPLICITY
416 EV_PX; 425 EV_PX;
417 426
418 void set (EV_P) throw () 427 // loop set
428 void set (EV_P) EV_NOEXCEPT
419 { 429 {
420 this->EV_A = EV_A; 430 this->EV_A = EV_A;
421 } 431 }
422 #endif 432 #endif
423 433
424 base (EV_PX) throw () 434 base (EV_PX) EV_NOEXCEPT
425 #if EV_MULTIPLICITY 435 #if EV_MULTIPLICITY
426 : EV_A (EV_A) 436 : EV_A (EV_A)
427 #endif 437 #endif
428 { 438 {
429 ev_init (this, 0); 439 ev_init (this, 0);
430 } 440 }
431 441
432 void set_ (const void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) throw () 442 void set_ (const void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) EV_NOEXCEPT
433 { 443 {
434 this->data = (void *)data; 444 this->data = (void *)data;
435 ev_set_cb (static_cast<ev_watcher *>(this), cb); 445 ev_set_cb (static_cast<ev_watcher *>(this), cb);
436 } 446 }
437 447
438 // function callback 448 // function callback
439 template<void (*function)(watcher &w, int)> 449 template<void (*function)(watcher &w, int)>
440 void set (void *data = 0) throw () 450 void set (void *data = 0) EV_NOEXCEPT
441 { 451 {
442 set_ (data, function_thunk<function>); 452 set_ (data, function_thunk<function>);
443 } 453 }
444 454
445 template<void (*function)(watcher &w, int)> 455 template<void (*function)(watcher &w, int)>
449 (*static_cast<watcher *>(w), revents); 459 (*static_cast<watcher *>(w), revents);
450 } 460 }
451 461
452 // method callback 462 // method callback
453 template<class K, void (K::*method)(watcher &w, int)> 463 template<class K, void (K::*method)(watcher &w, int)>
454 void set (K *object) throw () 464 void set (K *object) EV_NOEXCEPT
455 { 465 {
456 set_ (object, method_thunk<K, method>); 466 set_ (object, method_thunk<K, method>);
457 } 467 }
458 468
459 // default method == operator () 469 // default method == operator ()
460 template<class K> 470 template<class K>
461 void set (K *object) throw () 471 void set (K *object) EV_NOEXCEPT
462 { 472 {
463 set_ (object, method_thunk<K, &K::operator ()>); 473 set_ (object, method_thunk<K, &K::operator ()>);
464 } 474 }
465 475
466 template<class K, void (K::*method)(watcher &w, int)> 476 template<class K, void (K::*method)(watcher &w, int)>
470 (*static_cast<watcher *>(w), revents); 480 (*static_cast<watcher *>(w), revents);
471 } 481 }
472 482
473 // no-argument callback 483 // no-argument callback
474 template<class K, void (K::*method)()> 484 template<class K, void (K::*method)()>
475 void set (K *object) throw () 485 void set (K *object) EV_NOEXCEPT
476 { 486 {
477 set_ (object, method_noargs_thunk<K, method>); 487 set_ (object, method_noargs_thunk<K, method>);
478 } 488 }
479 489
480 template<class K, void (K::*method)()> 490 template<class K, void (K::*method)()>
481 static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents) 491 static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents)
482 { 492 {
483 static_cast<K *>(w->data)->*method 493 (static_cast<K *>(w->data)->*method)
484 (); 494 ();
485 } 495 }
486 496
487 void operator ()(int events = EV_UNDEF) 497 void operator ()(int events = EV_UNDEF)
488 { 498 {
489 return 499 return
490 ev_cb (static_cast<ev_watcher *>(this)) 500 ev_cb (static_cast<ev_watcher *>(this))
491 (static_cast<ev_watcher *>(this), events); 501 (static_cast<ev_watcher *>(this), events);
492 } 502 }
493 503
494 bool is_active () const throw () 504 bool is_active () const EV_NOEXCEPT
495 { 505 {
496 return ev_is_active (static_cast<const ev_watcher *>(this)); 506 return ev_is_active (static_cast<const ev_watcher *>(this));
497 } 507 }
498 508
499 bool is_pending () const throw () 509 bool is_pending () const EV_NOEXCEPT
500 { 510 {
501 return ev_is_pending (static_cast<const ev_watcher *>(this)); 511 return ev_is_pending (static_cast<const ev_watcher *>(this));
502 } 512 }
503 513
504 void feed_event (int revents) throw () 514 void feed_event (int revents) EV_NOEXCEPT
505 { 515 {
506 ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents); 516 ev_feed_event (EV_A_ static_cast<ev_watcher *>(this), revents);
507 } 517 }
508 };
509
510 inline tstamp now () throw ()
511 {
512 return ev_time ();
513 } 518 };
514 519
520 inline tstamp now (EV_P) EV_NOEXCEPT
521 {
522 return ev_now (EV_A);
523 }
524
515 inline void delay (tstamp interval) throw () 525 inline void delay (tstamp interval) EV_NOEXCEPT
516 { 526 {
517 ev_sleep (interval); 527 ev_sleep (interval);
518 } 528 }
519 529
520 inline int version_major () throw () 530 inline int version_major () EV_NOEXCEPT
521 { 531 {
522 return ev_version_major (); 532 return ev_version_major ();
523 } 533 }
524 534
525 inline int version_minor () throw () 535 inline int version_minor () EV_NOEXCEPT
526 { 536 {
527 return ev_version_minor (); 537 return ev_version_minor ();
528 } 538 }
529 539
530 inline unsigned int supported_backends () throw () 540 inline unsigned int supported_backends () EV_NOEXCEPT
531 { 541 {
532 return ev_supported_backends (); 542 return ev_supported_backends ();
533 } 543 }
534 544
535 inline unsigned int recommended_backends () throw () 545 inline unsigned int recommended_backends () EV_NOEXCEPT
536 { 546 {
537 return ev_recommended_backends (); 547 return ev_recommended_backends ();
538 } 548 }
539 549
540 inline unsigned int embeddable_backends () throw () 550 inline unsigned int embeddable_backends () EV_NOEXCEPT
541 { 551 {
542 return ev_embeddable_backends (); 552 return ev_embeddable_backends ();
543 } 553 }
544 554
545 inline void set_allocator (void *(*cb)(void *ptr, long size)) throw () 555 inline void set_allocator (void *(*cb)(void *ptr, long size) EV_NOEXCEPT) EV_NOEXCEPT
546 { 556 {
547 ev_set_allocator (cb); 557 ev_set_allocator (cb);
548 } 558 }
549 559
550 inline void set_syserr_cb (void (*cb)(const char *msg)) throw () 560 inline void set_syserr_cb (void (*cb)(const char *msg) EV_NOEXCEPT) EV_NOEXCEPT
551 { 561 {
552 ev_set_syserr_cb (cb); 562 ev_set_syserr_cb (cb);
553 } 563 }
554 564
555 #if EV_MULTIPLICITY 565 #if EV_MULTIPLICITY
556 #define EV_CONSTRUCT(cppstem,cstem) \ 566 #define EV_CONSTRUCT(cppstem,cstem) \
557 (EV_PX = get_default_loop ()) throw () \ 567 (EV_PX = get_default_loop ()) EV_NOEXCEPT \
558 : base<ev_ ## cstem, cppstem> (EV_A) \ 568 : base<ev_ ## cstem, cppstem> (EV_A) \
559 { \ 569 { \
560 } 570 }
561 #else 571 #else
562 #define EV_CONSTRUCT(cppstem,cstem) \ 572 #define EV_CONSTRUCT(cppstem,cstem) \
563 () throw () \ 573 () EV_NOEXCEPT \
564 { \ 574 { \
565 } 575 }
566 #endif 576 #endif
567 577
568 /* using a template here would require quite a bit more lines, 578 /* using a template here would require quite a few more lines,
569 * so a macro solution was chosen */ 579 * so a macro solution was chosen */
570 #define EV_BEGIN_WATCHER(cppstem,cstem) \ 580 #define EV_BEGIN_WATCHER(cppstem,cstem) \
571 \ 581 \
572 struct cppstem : base<ev_ ## cstem, cppstem> \ 582 struct cppstem : base<ev_ ## cstem, cppstem> \
573 { \ 583 { \
574 void start () throw () \ 584 void start () EV_NOEXCEPT \
575 { \ 585 { \
576 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 586 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
577 } \ 587 } \
578 \ 588 \
579 void stop () throw () \ 589 void stop () EV_NOEXCEPT \
580 { \ 590 { \
581 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 591 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
582 } \ 592 } \
583 \ 593 \
584 cppstem EV_CONSTRUCT(cppstem,cstem) \ 594 cppstem EV_CONSTRUCT(cppstem,cstem) \
585 \ 595 \
586 ~cppstem () throw () \ 596 ~cppstem () EV_NOEXCEPT \
587 { \ 597 { \
588 stop (); \ 598 stop (); \
589 } \ 599 } \
590 \ 600 \
591 using base<ev_ ## cstem, cppstem>::set; \ 601 using base<ev_ ## cstem, cppstem>::set; \
600 610
601 #define EV_END_WATCHER(cppstem,cstem) \ 611 #define EV_END_WATCHER(cppstem,cstem) \
602 }; 612 };
603 613
604 EV_BEGIN_WATCHER (io, io) 614 EV_BEGIN_WATCHER (io, io)
605 void set (int fd, int events) throw () 615 void set (int fd, int events) EV_NOEXCEPT
606 { 616 {
607 int active = is_active (); 617 int active = is_active ();
608 if (active) stop (); 618 if (active) stop ();
609 ev_io_set (static_cast<ev_io *>(this), fd, events); 619 ev_io_set (static_cast<ev_io *>(this), fd, events);
610 if (active) start (); 620 if (active) start ();
611 } 621 }
612 622
613 void set (int events) throw () 623 void set (int events) EV_NOEXCEPT
614 { 624 {
615 int active = is_active (); 625 int active = is_active ();
616 if (active) stop (); 626 if (active) stop ();
617 ev_io_set (static_cast<ev_io *>(this), fd, events); 627 ev_io_set (static_cast<ev_io *>(this), fd, events);
618 if (active) start (); 628 if (active) start ();
619 } 629 }
620 630
621 void start (int fd, int events) throw () 631 void start (int fd, int events) EV_NOEXCEPT
622 { 632 {
623 set (fd, events); 633 set (fd, events);
624 start (); 634 start ();
625 } 635 }
626 EV_END_WATCHER (io, io) 636 EV_END_WATCHER (io, io)
627 637
628 EV_BEGIN_WATCHER (timer, timer) 638 EV_BEGIN_WATCHER (timer, timer)
629 void set (ev_tstamp after, ev_tstamp repeat = 0.) throw () 639 void set (ev_tstamp after, ev_tstamp repeat = 0.) EV_NOEXCEPT
630 { 640 {
631 int active = is_active (); 641 int active = is_active ();
632 if (active) stop (); 642 if (active) stop ();
633 ev_timer_set (static_cast<ev_timer *>(this), after, repeat); 643 ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
634 if (active) start (); 644 if (active) start ();
635 } 645 }
636 646
637 void start (ev_tstamp after, ev_tstamp repeat = 0.) throw () 647 void start (ev_tstamp after, ev_tstamp repeat = 0.) EV_NOEXCEPT
638 { 648 {
639 set (after, repeat); 649 set (after, repeat);
640 start (); 650 start ();
641 } 651 }
642 652
643 void again () throw () 653 void again () EV_NOEXCEPT
644 { 654 {
645 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 655 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
656 }
657
658 ev_tstamp remaining ()
659 {
660 return ev_timer_remaining (EV_A_ static_cast<ev_timer *>(this));
646 } 661 }
647 EV_END_WATCHER (timer, timer) 662 EV_END_WATCHER (timer, timer)
648 663
649 #if EV_PERIODIC_ENABLE 664 #if EV_PERIODIC_ENABLE
650 EV_BEGIN_WATCHER (periodic, periodic) 665 EV_BEGIN_WATCHER (periodic, periodic)
651 void set (ev_tstamp at, ev_tstamp interval = 0.) throw () 666 void set (ev_tstamp at, ev_tstamp interval = 0.) EV_NOEXCEPT
652 { 667 {
653 int active = is_active (); 668 int active = is_active ();
654 if (active) stop (); 669 if (active) stop ();
655 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0); 670 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
656 if (active) start (); 671 if (active) start ();
657 } 672 }
658 673
659 void start (ev_tstamp at, ev_tstamp interval = 0.) throw () 674 void start (ev_tstamp at, ev_tstamp interval = 0.) EV_NOEXCEPT
660 { 675 {
661 set (at, interval); 676 set (at, interval);
662 start (); 677 start ();
663 } 678 }
664 679
665 void again () throw () 680 void again () EV_NOEXCEPT
666 { 681 {
667 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this)); 682 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
668 } 683 }
669 EV_END_WATCHER (periodic, periodic) 684 EV_END_WATCHER (periodic, periodic)
670 #endif 685 #endif
671 686
687 #if EV_SIGNAL_ENABLE
672 EV_BEGIN_WATCHER (sig, signal) 688 EV_BEGIN_WATCHER (sig, signal)
673 void set (int signum) throw () 689 void set (int signum) EV_NOEXCEPT
674 { 690 {
675 int active = is_active (); 691 int active = is_active ();
676 if (active) stop (); 692 if (active) stop ();
677 ev_signal_set (static_cast<ev_signal *>(this), signum); 693 ev_signal_set (static_cast<ev_signal *>(this), signum);
678 if (active) start (); 694 if (active) start ();
679 } 695 }
680 696
681 void start (int signum) throw () 697 void start (int signum) EV_NOEXCEPT
682 { 698 {
683 set (signum); 699 set (signum);
684 start (); 700 start ();
685 } 701 }
686 EV_END_WATCHER (sig, signal) 702 EV_END_WATCHER (sig, signal)
703 #endif
687 704
705 #if EV_CHILD_ENABLE
688 EV_BEGIN_WATCHER (child, child) 706 EV_BEGIN_WATCHER (child, child)
689 void set (int pid, int trace = 0) throw () 707 void set (int pid, int trace = 0) EV_NOEXCEPT
690 { 708 {
691 int active = is_active (); 709 int active = is_active ();
692 if (active) stop (); 710 if (active) stop ();
693 ev_child_set (static_cast<ev_child *>(this), pid, trace); 711 ev_child_set (static_cast<ev_child *>(this), pid, trace);
694 if (active) start (); 712 if (active) start ();
695 } 713 }
696 714
697 void start (int pid, int trace = 0) throw () 715 void start (int pid, int trace = 0) EV_NOEXCEPT
698 { 716 {
699 set (pid, trace); 717 set (pid, trace);
700 start (); 718 start ();
701 } 719 }
702 EV_END_WATCHER (child, child) 720 EV_END_WATCHER (child, child)
721 #endif
703 722
704 #if EV_STAT_ENABLE 723 #if EV_STAT_ENABLE
705 EV_BEGIN_WATCHER (stat, stat) 724 EV_BEGIN_WATCHER (stat, stat)
706 void set (const char *path, ev_tstamp interval = 0.) throw () 725 void set (const char *path, ev_tstamp interval = 0.) EV_NOEXCEPT
707 { 726 {
708 int active = is_active (); 727 int active = is_active ();
709 if (active) stop (); 728 if (active) stop ();
710 ev_stat_set (static_cast<ev_stat *>(this), path, interval); 729 ev_stat_set (static_cast<ev_stat *>(this), path, interval);
711 if (active) start (); 730 if (active) start ();
712 } 731 }
713 732
714 void start (const char *path, ev_tstamp interval = 0.) throw () 733 void start (const char *path, ev_tstamp interval = 0.) EV_NOEXCEPT
715 { 734 {
716 stop (); 735 stop ();
717 set (path, interval); 736 set (path, interval);
718 start (); 737 start ();
719 } 738 }
720 739
721 void update () throw () 740 void update () EV_NOEXCEPT
722 { 741 {
723 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this)); 742 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
724 } 743 }
725 EV_END_WATCHER (stat, stat) 744 EV_END_WATCHER (stat, stat)
726 #endif 745 #endif
727 746
747 #if EV_IDLE_ENABLE
728 EV_BEGIN_WATCHER (idle, idle) 748 EV_BEGIN_WATCHER (idle, idle)
729 void set () throw () { } 749 void set () EV_NOEXCEPT { }
730 EV_END_WATCHER (idle, idle) 750 EV_END_WATCHER (idle, idle)
751 #endif
731 752
753 #if EV_PREPARE_ENABLE
732 EV_BEGIN_WATCHER (prepare, prepare) 754 EV_BEGIN_WATCHER (prepare, prepare)
733 void set () throw () { } 755 void set () EV_NOEXCEPT { }
734 EV_END_WATCHER (prepare, prepare) 756 EV_END_WATCHER (prepare, prepare)
757 #endif
735 758
759 #if EV_CHECK_ENABLE
736 EV_BEGIN_WATCHER (check, check) 760 EV_BEGIN_WATCHER (check, check)
737 void set () throw () { } 761 void set () EV_NOEXCEPT { }
738 EV_END_WATCHER (check, check) 762 EV_END_WATCHER (check, check)
763 #endif
739 764
740 #if EV_EMBED_ENABLE 765 #if EV_EMBED_ENABLE
741 EV_BEGIN_WATCHER (embed, embed) 766 EV_BEGIN_WATCHER (embed, embed)
742 void set (struct ev_loop *embedded_loop) throw () 767 void set_embed (struct ev_loop *embedded_loop) EV_NOEXCEPT
743 { 768 {
744 int active = is_active (); 769 int active = is_active ();
745 if (active) stop (); 770 if (active) stop ();
746 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop); 771 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
747 if (active) start (); 772 if (active) start ();
748 } 773 }
749 774
750 void start (struct ev_loop *embedded_loop) throw () 775 void start (struct ev_loop *embedded_loop) EV_NOEXCEPT
751 { 776 {
752 set (embedded_loop); 777 set (embedded_loop);
753 start (); 778 start ();
754 } 779 }
755 780
760 EV_END_WATCHER (embed, embed) 785 EV_END_WATCHER (embed, embed)
761 #endif 786 #endif
762 787
763 #if EV_FORK_ENABLE 788 #if EV_FORK_ENABLE
764 EV_BEGIN_WATCHER (fork, fork) 789 EV_BEGIN_WATCHER (fork, fork)
765 void set () throw () { } 790 void set () EV_NOEXCEPT { }
766 EV_END_WATCHER (fork, fork) 791 EV_END_WATCHER (fork, fork)
767 #endif 792 #endif
768 793
769 #if EV_ASYNC_ENABLE 794 #if EV_ASYNC_ENABLE
770 EV_BEGIN_WATCHER (async, async) 795 EV_BEGIN_WATCHER (async, async)
771 void set () throw () { } 796 void send () EV_NOEXCEPT
772
773 void send () throw ()
774 { 797 {
775 ev_async_send (EV_A_ static_cast<ev_async *>(this)); 798 ev_async_send (EV_A_ static_cast<ev_async *>(this));
776 } 799 }
777 800
778 bool async_pending () throw () 801 bool async_pending () EV_NOEXCEPT
779 { 802 {
780 return ev_async_pending (static_cast<ev_async *>(this)); 803 return ev_async_pending (static_cast<ev_async *>(this));
781 } 804 }
782 EV_END_WATCHER (async, async) 805 EV_END_WATCHER (async, async)
783 #endif 806 #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines