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

Comparing libev/ev++.h (file contents):
Revision 1.54 by root, Fri Oct 22 05:57:55 2010 UTC vs.
Revision 1.65 by root, Mon Oct 29 00:00:21 2018 UTC

1/* 1/*
2 * libev simple C++ wrapper classes 2 * libev simple C++ wrapper classes
3 * 3 *
4 * Copyright (c) 2007,2008,2010 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007,2008,2010,2018 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,
67#if EV_COMPAT3 66#if EV_COMPAT3
112 ALL = EVBREAK_ALL 111 ALL = EVBREAK_ALL
113 }; 112 };
114 113
115 struct bad_loop 114 struct bad_loop
116#if EV_USE_STDEXCEPT 115#if EV_USE_STDEXCEPT
117 : std::runtime_error 116 : std::exception
118#endif 117#endif
119 { 118 {
120#if EV_USE_STDEXCEPT 119#if EV_USE_STDEXCEPT
121 bad_loop () 120 const char *what () const EV_NOEXCEPT
121 {
122 : 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?";
123 {
124 } 123 }
125#endif 124#endif
126 }; 125 };
127 126
128#ifdef EV_AX 127#ifdef EV_AX
141# define EV_AX_ 140# define EV_AX_
142#endif 141#endif
143 142
144 struct loop_ref 143 struct loop_ref
145 { 144 {
146 loop_ref (EV_P) throw () 145 loop_ref (EV_P) EV_NOEXCEPT
147#if EV_MULTIPLICITY 146#if EV_MULTIPLICITY
148 : EV_AX (EV_A) 147 : EV_AX (EV_A)
149#endif 148#endif
150 { 149 {
151 } 150 }
152 151
153 bool operator == (const loop_ref &other) const throw () 152 bool operator == (const loop_ref &other) const EV_NOEXCEPT
154 { 153 {
155#if EV_MULTIPLICITY 154#if EV_MULTIPLICITY
156 return EV_AX == other.EV_AX; 155 return EV_AX == other.EV_AX;
157#else 156#else
158 return true; 157 return true;
159#endif 158#endif
160 } 159 }
161 160
162 bool operator != (const loop_ref &other) const throw () 161 bool operator != (const loop_ref &other) const EV_NOEXCEPT
163 { 162 {
164#if EV_MULTIPLICITY 163#if EV_MULTIPLICITY
165 return ! (*this == other); 164 return ! (*this == other);
166#else 165#else
167 return false; 166 return false;
168#endif 167#endif
169 } 168 }
170 169
171#if EV_MULTIPLICITY 170#if EV_MULTIPLICITY
172 bool operator == (const EV_P) const throw () 171 bool operator == (const EV_P) const EV_NOEXCEPT
173 { 172 {
174 return this->EV_AX == EV_A; 173 return this->EV_AX == EV_A;
175 } 174 }
176 175
177 bool operator != (const EV_P) const throw () 176 bool operator != (const EV_P) const EV_NOEXCEPT
178 { 177 {
179 return (*this == EV_A); 178 return ! (*this == EV_A);
180 } 179 }
181 180
182 operator struct ev_loop * () const throw () 181 operator struct ev_loop * () const EV_NOEXCEPT
183 { 182 {
184 return EV_AX; 183 return EV_AX;
185 } 184 }
186 185
187 operator const struct ev_loop * () const throw () 186 operator const struct ev_loop * () const EV_NOEXCEPT
188 { 187 {
189 return EV_AX; 188 return EV_AX;
190 } 189 }
191 190
192 bool is_default () const throw () 191 bool is_default () const EV_NOEXCEPT
193 { 192 {
194 return EV_AX == ev_default_loop (0); 193 return EV_AX == ev_default_loop (0);
195 } 194 }
196#endif 195#endif
197 196
199 void loop (int flags = 0) 198 void loop (int flags = 0)
200 { 199 {
201 ev_run (EV_AX_ flags); 200 ev_run (EV_AX_ flags);
202 } 201 }
203 202
204 void unloop (how_t how = ONE) throw () 203 void unloop (how_t how = ONE) EV_NOEXCEPT
205 { 204 {
206 ev_break (EV_AX_ how); 205 ev_break (EV_AX_ how);
207 } 206 }
208#endif 207#endif
209 208
210 void run (int flags = 0) 209 void run (int flags = 0)
211 { 210 {
212 ev_run (EV_AX_ flags); 211 ev_run (EV_AX_ flags);
213 } 212 }
214 213
215 void break_loop (how_t how = ONE) throw () 214 void break_loop (how_t how = ONE) EV_NOEXCEPT
216 { 215 {
217 ev_break (EV_AX_ how); 216 ev_break (EV_AX_ how);
218 } 217 }
219 218
220 void post_fork () throw () 219 void post_fork () EV_NOEXCEPT
221 { 220 {
222#if EV_MULTIPLICITY
223 ev_loop_fork (EV_AX); 221 ev_loop_fork (EV_AX);
224#else
225 ev_default_fork ();
226#endif
227 } 222 }
228 223
229 unsigned int backend () const throw () 224 unsigned int backend () const EV_NOEXCEPT
230 { 225 {
231 return ev_backend (EV_AX); 226 return ev_backend (EV_AX);
232 } 227 }
233 228
234 tstamp now () const throw () 229 tstamp now () const EV_NOEXCEPT
235 { 230 {
236 return ev_now (EV_AX); 231 return ev_now (EV_AX);
237 } 232 }
238 233
239 void ref () throw () 234 void ref () EV_NOEXCEPT
240 { 235 {
241 ev_ref (EV_AX); 236 ev_ref (EV_AX);
242 } 237 }
243 238
244 void unref () throw () 239 void unref () EV_NOEXCEPT
245 { 240 {
246 ev_unref (EV_AX); 241 ev_unref (EV_AX);
247 } 242 }
248 243
249#if EV_FEATURE_API 244#if EV_FEATURE_API
250 unsigned int iteration () const throw () 245 unsigned int iteration () const EV_NOEXCEPT
251 { 246 {
252 return ev_iteration (EV_AX); 247 return ev_iteration (EV_AX);
253 } 248 }
254 249
255 unsigned int depth () const throw () 250 unsigned int depth () const EV_NOEXCEPT
256 { 251 {
257 return ev_depth (EV_AX); 252 return ev_depth (EV_AX);
258 } 253 }
259 254
260 void set_io_collect_interval (tstamp interval) throw () 255 void set_io_collect_interval (tstamp interval) EV_NOEXCEPT
261 { 256 {
262 ev_set_io_collect_interval (EV_AX_ interval); 257 ev_set_io_collect_interval (EV_AX_ interval);
263 } 258 }
264 259
265 void set_timeout_collect_interval (tstamp interval) throw () 260 void set_timeout_collect_interval (tstamp interval) EV_NOEXCEPT
266 { 261 {
267 ev_set_timeout_collect_interval (EV_AX_ interval); 262 ev_set_timeout_collect_interval (EV_AX_ interval);
268 } 263 }
269#endif 264#endif
270 265
271 // function callback 266 // function callback
272 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
273 { 268 {
274 ev_once (EV_AX_ fd, events, timeout, cb, arg); 269 ev_once (EV_AX_ fd, events, timeout, cb, arg);
275 } 270 }
276 271
277 // method callback 272 // method callback
278 template<class K, void (K::*method)(int)> 273 template<class K, void (K::*method)(int)>
279 void once (int fd, int events, tstamp timeout, K *object) throw () 274 void once (int fd, int events, tstamp timeout, K *object) EV_NOEXCEPT
280 { 275 {
281 once (fd, events, timeout, method_thunk<K, method>, object); 276 once (fd, events, timeout, method_thunk<K, method>, object);
282 } 277 }
283 278
284 // default method == operator () 279 // default method == operator ()
285 template<class K> 280 template<class K>
286 void once (int fd, int events, tstamp timeout, K *object) throw () 281 void once (int fd, int events, tstamp timeout, K *object) EV_NOEXCEPT
287 { 282 {
288 once (fd, events, timeout, method_thunk<K, &K::operator ()>, object); 283 once (fd, events, timeout, method_thunk<K, &K::operator ()>, object);
289 } 284 }
290 285
291 template<class K, void (K::*method)(int)> 286 template<class K, void (K::*method)(int)>
292 static void method_thunk (int revents, void *arg) 287 static void method_thunk (int revents, void *arg)
293 { 288 {
294 static_cast<K *>(arg)->*method 289 (static_cast<K *>(arg)->*method)
295 (revents); 290 (revents);
296 } 291 }
297 292
298 // no-argument method callback 293 // no-argument method callback
299 template<class K, void (K::*method)()> 294 template<class K, void (K::*method)()>
300 void once (int fd, int events, tstamp timeout, K *object) throw () 295 void once (int fd, int events, tstamp timeout, K *object) EV_NOEXCEPT
301 { 296 {
302 once (fd, events, timeout, method_noargs_thunk<K, method>, object); 297 once (fd, events, timeout, method_noargs_thunk<K, method>, object);
303 } 298 }
304 299
305 template<class K, void (K::*method)()> 300 template<class K, void (K::*method)()>
306 static void method_noargs_thunk (int revents, void *arg) 301 static void method_noargs_thunk (int revents, void *arg)
307 { 302 {
308 static_cast<K *>(arg)->*method 303 (static_cast<K *>(arg)->*method)
309 (); 304 ();
310 } 305 }
311 306
312 // simpler function callback 307 // simpler function callback
313 template<void (*cb)(int)> 308 template<void (*cb)(int)>
314 void once (int fd, int events, tstamp timeout) throw () 309 void once (int fd, int events, tstamp timeout) EV_NOEXCEPT
315 { 310 {
316 once (fd, events, timeout, simpler_func_thunk<cb>); 311 once (fd, events, timeout, simpler_func_thunk<cb>);
317 } 312 }
318 313
319 template<void (*cb)(int)> 314 template<void (*cb)(int)>
323 (revents); 318 (revents);
324 } 319 }
325 320
326 // simplest function callback 321 // simplest function callback
327 template<void (*cb)()> 322 template<void (*cb)()>
328 void once (int fd, int events, tstamp timeout) throw () 323 void once (int fd, int events, tstamp timeout) EV_NOEXCEPT
329 { 324 {
330 once (fd, events, timeout, simplest_func_thunk<cb>); 325 once (fd, events, timeout, simplest_func_thunk<cb>);
331 } 326 }
332 327
333 template<void (*cb)()> 328 template<void (*cb)()>
335 { 330 {
336 (*cb) 331 (*cb)
337 (); 332 ();
338 } 333 }
339 334
340 void feed_fd_event (int fd, int revents) throw () 335 void feed_fd_event (int fd, int revents) EV_NOEXCEPT
341 { 336 {
342 ev_feed_fd_event (EV_AX_ fd, revents); 337 ev_feed_fd_event (EV_AX_ fd, revents);
343 } 338 }
344 339
345 void feed_signal_event (int signum) throw () 340 void feed_signal_event (int signum) EV_NOEXCEPT
346 { 341 {
347 ev_feed_signal_event (EV_AX_ signum); 342 ev_feed_signal_event (EV_AX_ signum);
348 } 343 }
349 344
350#if EV_MULTIPLICITY 345#if EV_MULTIPLICITY
355 350
356#if EV_MULTIPLICITY 351#if EV_MULTIPLICITY
357 struct dynamic_loop : loop_ref 352 struct dynamic_loop : loop_ref
358 { 353 {
359 354
360 dynamic_loop (unsigned int flags = AUTO) throw (bad_loop) 355 dynamic_loop (unsigned int flags = AUTO)
361 : loop_ref (ev_loop_new (flags)) 356 : loop_ref (ev_loop_new (flags))
362 { 357 {
363 if (!EV_AX) 358 if (!EV_AX)
364 throw bad_loop (); 359 throw bad_loop ();
365 } 360 }
366 361
367 ~dynamic_loop () throw () 362 ~dynamic_loop () EV_NOEXCEPT
368 { 363 {
369 ev_loop_destroy (EV_AX); 364 ev_loop_destroy (EV_AX);
370 EV_AX = 0; 365 EV_AX = 0;
371 } 366 }
372 367
379 }; 374 };
380#endif 375#endif
381 376
382 struct default_loop : loop_ref 377 struct default_loop : loop_ref
383 { 378 {
384 default_loop (unsigned int flags = AUTO) throw (bad_loop) 379 default_loop (unsigned int flags = AUTO)
385#if EV_MULTIPLICITY 380#if EV_MULTIPLICITY
386 : loop_ref (ev_default_loop (flags)) 381 : loop_ref (ev_default_loop (flags))
387#endif 382#endif
388 { 383 {
389 if ( 384 if (
394#endif 389#endif
395 ) 390 )
396 throw bad_loop (); 391 throw bad_loop ();
397 } 392 }
398 393
399 ~default_loop () throw ()
400 {
401 ev_default_destroy ();
402 }
403
404 private: 394 private:
405 default_loop (const default_loop &); 395 default_loop (const default_loop &);
406 default_loop &operator = (const default_loop &); 396 default_loop &operator = (const default_loop &);
407 }; 397 };
408 398
409 inline loop_ref get_default_loop () throw () 399 inline loop_ref get_default_loop () EV_NOEXCEPT
410 { 400 {
411#if EV_MULTIPLICITY 401#if EV_MULTIPLICITY
412 return ev_default_loop (0); 402 return ev_default_loop (0);
413#else 403#else
414 return loop_ref (); 404 return loop_ref ();
433 { 423 {
434 #if EV_MULTIPLICITY 424 #if EV_MULTIPLICITY
435 EV_PX; 425 EV_PX;
436 426
437 // loop set 427 // loop set
438 void set (EV_P) throw () 428 void set (EV_P) EV_NOEXCEPT
439 { 429 {
440 this->EV_A = EV_A; 430 this->EV_A = EV_A;
441 } 431 }
442 #endif 432 #endif
443 433
444 base (EV_PX) throw () 434 base (EV_PX) EV_NOEXCEPT
445 #if EV_MULTIPLICITY 435 #if EV_MULTIPLICITY
446 : EV_A (EV_A) 436 : EV_A (EV_A)
447 #endif 437 #endif
448 { 438 {
449 ev_init (this, 0); 439 ev_init (this, 0);
450 } 440 }
451 441
452 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
453 { 443 {
454 this->data = (void *)data; 444 this->data = (void *)data;
455 ev_set_cb (static_cast<ev_watcher *>(this), cb); 445 ev_set_cb (static_cast<ev_watcher *>(this), cb);
456 } 446 }
457 447
458 // function callback 448 // function callback
459 template<void (*function)(watcher &w, int)> 449 template<void (*function)(watcher &w, int)>
460 void set (void *data = 0) throw () 450 void set (void *data = 0) EV_NOEXCEPT
461 { 451 {
462 set_ (data, function_thunk<function>); 452 set_ (data, function_thunk<function>);
463 } 453 }
464 454
465 template<void (*function)(watcher &w, int)> 455 template<void (*function)(watcher &w, int)>
469 (*static_cast<watcher *>(w), revents); 459 (*static_cast<watcher *>(w), revents);
470 } 460 }
471 461
472 // method callback 462 // method callback
473 template<class K, void (K::*method)(watcher &w, int)> 463 template<class K, void (K::*method)(watcher &w, int)>
474 void set (K *object) throw () 464 void set (K *object) EV_NOEXCEPT
475 { 465 {
476 set_ (object, method_thunk<K, method>); 466 set_ (object, method_thunk<K, method>);
477 } 467 }
478 468
479 // default method == operator () 469 // default method == operator ()
480 template<class K> 470 template<class K>
481 void set (K *object) throw () 471 void set (K *object) EV_NOEXCEPT
482 { 472 {
483 set_ (object, method_thunk<K, &K::operator ()>); 473 set_ (object, method_thunk<K, &K::operator ()>);
484 } 474 }
485 475
486 template<class K, void (K::*method)(watcher &w, int)> 476 template<class K, void (K::*method)(watcher &w, int)>
490 (*static_cast<watcher *>(w), revents); 480 (*static_cast<watcher *>(w), revents);
491 } 481 }
492 482
493 // no-argument callback 483 // no-argument callback
494 template<class K, void (K::*method)()> 484 template<class K, void (K::*method)()>
495 void set (K *object) throw () 485 void set (K *object) EV_NOEXCEPT
496 { 486 {
497 set_ (object, method_noargs_thunk<K, method>); 487 set_ (object, method_noargs_thunk<K, method>);
498 } 488 }
499 489
500 template<class K, void (K::*method)()> 490 template<class K, void (K::*method)()>
509 return 499 return
510 ev_cb (static_cast<ev_watcher *>(this)) 500 ev_cb (static_cast<ev_watcher *>(this))
511 (static_cast<ev_watcher *>(this), events); 501 (static_cast<ev_watcher *>(this), events);
512 } 502 }
513 503
514 bool is_active () const throw () 504 bool is_active () const EV_NOEXCEPT
515 { 505 {
516 return ev_is_active (static_cast<const ev_watcher *>(this)); 506 return ev_is_active (static_cast<const ev_watcher *>(this));
517 } 507 }
518 508
519 bool is_pending () const throw () 509 bool is_pending () const EV_NOEXCEPT
520 { 510 {
521 return ev_is_pending (static_cast<const ev_watcher *>(this)); 511 return ev_is_pending (static_cast<const ev_watcher *>(this));
522 } 512 }
523 513
524 void feed_event (int revents) throw () 514 void feed_event (int revents) EV_NOEXCEPT
525 { 515 {
526 ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents); 516 ev_feed_event (EV_A_ static_cast<ev_watcher *>(this), revents);
527 } 517 }
528 };
529
530 inline tstamp now () throw ()
531 {
532 return ev_time ();
533 } 518 };
534 519
520 inline tstamp now (EV_P) EV_NOEXCEPT
521 {
522 return ev_now (EV_A);
523 }
524
535 inline void delay (tstamp interval) throw () 525 inline void delay (tstamp interval) EV_NOEXCEPT
536 { 526 {
537 ev_sleep (interval); 527 ev_sleep (interval);
538 } 528 }
539 529
540 inline int version_major () throw () 530 inline int version_major () EV_NOEXCEPT
541 { 531 {
542 return ev_version_major (); 532 return ev_version_major ();
543 } 533 }
544 534
545 inline int version_minor () throw () 535 inline int version_minor () EV_NOEXCEPT
546 { 536 {
547 return ev_version_minor (); 537 return ev_version_minor ();
548 } 538 }
549 539
550 inline unsigned int supported_backends () throw () 540 inline unsigned int supported_backends () EV_NOEXCEPT
551 { 541 {
552 return ev_supported_backends (); 542 return ev_supported_backends ();
553 } 543 }
554 544
555 inline unsigned int recommended_backends () throw () 545 inline unsigned int recommended_backends () EV_NOEXCEPT
556 { 546 {
557 return ev_recommended_backends (); 547 return ev_recommended_backends ();
558 } 548 }
559 549
560 inline unsigned int embeddable_backends () throw () 550 inline unsigned int embeddable_backends () EV_NOEXCEPT
561 { 551 {
562 return ev_embeddable_backends (); 552 return ev_embeddable_backends ();
563 } 553 }
564 554
565 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
566 { 556 {
567 ev_set_allocator (cb); 557 ev_set_allocator (cb);
568 } 558 }
569 559
570 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
571 { 561 {
572 ev_set_syserr_cb (cb); 562 ev_set_syserr_cb (cb);
573 } 563 }
574 564
575 #if EV_MULTIPLICITY 565 #if EV_MULTIPLICITY
576 #define EV_CONSTRUCT(cppstem,cstem) \ 566 #define EV_CONSTRUCT(cppstem,cstem) \
577 (EV_PX = get_default_loop ()) throw () \ 567 (EV_PX = get_default_loop ()) EV_NOEXCEPT \
578 : base<ev_ ## cstem, cppstem> (EV_A) \ 568 : base<ev_ ## cstem, cppstem> (EV_A) \
579 { \ 569 { \
580 } 570 }
581 #else 571 #else
582 #define EV_CONSTRUCT(cppstem,cstem) \ 572 #define EV_CONSTRUCT(cppstem,cstem) \
583 () throw () \ 573 () EV_NOEXCEPT \
584 { \ 574 { \
585 } 575 }
586 #endif 576 #endif
587 577
588 /* using a template here would require quite a bit more lines, 578 /* using a template here would require quite a few more lines,
589 * so a macro solution was chosen */ 579 * so a macro solution was chosen */
590 #define EV_BEGIN_WATCHER(cppstem,cstem) \ 580 #define EV_BEGIN_WATCHER(cppstem,cstem) \
591 \ 581 \
592 struct cppstem : base<ev_ ## cstem, cppstem> \ 582 struct cppstem : base<ev_ ## cstem, cppstem> \
593 { \ 583 { \
594 void start () throw () \ 584 void start () EV_NOEXCEPT \
595 { \ 585 { \
596 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 586 ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
597 } \ 587 } \
598 \ 588 \
599 void stop () throw () \ 589 void stop () EV_NOEXCEPT \
600 { \ 590 { \
601 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \ 591 ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
602 } \ 592 } \
603 \ 593 \
604 cppstem EV_CONSTRUCT(cppstem,cstem) \ 594 cppstem EV_CONSTRUCT(cppstem,cstem) \
605 \ 595 \
606 ~cppstem () throw () \ 596 ~cppstem () EV_NOEXCEPT \
607 { \ 597 { \
608 stop (); \ 598 stop (); \
609 } \ 599 } \
610 \ 600 \
611 using base<ev_ ## cstem, cppstem>::set; \ 601 using base<ev_ ## cstem, cppstem>::set; \
620 610
621 #define EV_END_WATCHER(cppstem,cstem) \ 611 #define EV_END_WATCHER(cppstem,cstem) \
622 }; 612 };
623 613
624 EV_BEGIN_WATCHER (io, io) 614 EV_BEGIN_WATCHER (io, io)
625 void set (int fd, int events) throw () 615 void set (int fd, int events) EV_NOEXCEPT
626 { 616 {
627 int active = is_active (); 617 int active = is_active ();
628 if (active) stop (); 618 if (active) stop ();
629 ev_io_set (static_cast<ev_io *>(this), fd, events); 619 ev_io_set (static_cast<ev_io *>(this), fd, events);
630 if (active) start (); 620 if (active) start ();
631 } 621 }
632 622
633 void set (int events) throw () 623 void set (int events) EV_NOEXCEPT
634 { 624 {
635 int active = is_active (); 625 int active = is_active ();
636 if (active) stop (); 626 if (active) stop ();
637 ev_io_set (static_cast<ev_io *>(this), fd, events); 627 ev_io_set (static_cast<ev_io *>(this), fd, events);
638 if (active) start (); 628 if (active) start ();
639 } 629 }
640 630
641 void start (int fd, int events) throw () 631 void start (int fd, int events) EV_NOEXCEPT
642 { 632 {
643 set (fd, events); 633 set (fd, events);
644 start (); 634 start ();
645 } 635 }
646 EV_END_WATCHER (io, io) 636 EV_END_WATCHER (io, io)
647 637
648 EV_BEGIN_WATCHER (timer, timer) 638 EV_BEGIN_WATCHER (timer, timer)
649 void set (ev_tstamp after, ev_tstamp repeat = 0.) throw () 639 void set (ev_tstamp after, ev_tstamp repeat = 0.) EV_NOEXCEPT
650 { 640 {
651 int active = is_active (); 641 int active = is_active ();
652 if (active) stop (); 642 if (active) stop ();
653 ev_timer_set (static_cast<ev_timer *>(this), after, repeat); 643 ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
654 if (active) start (); 644 if (active) start ();
655 } 645 }
656 646
657 void start (ev_tstamp after, ev_tstamp repeat = 0.) throw () 647 void start (ev_tstamp after, ev_tstamp repeat = 0.) EV_NOEXCEPT
658 { 648 {
659 set (after, repeat); 649 set (after, repeat);
660 start (); 650 start ();
661 } 651 }
662 652
663 void again () throw () 653 void again () EV_NOEXCEPT
664 { 654 {
665 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 655 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
666 } 656 }
667 657
668 ev_tstamp remaining () 658 ev_tstamp remaining ()
671 } 661 }
672 EV_END_WATCHER (timer, timer) 662 EV_END_WATCHER (timer, timer)
673 663
674 #if EV_PERIODIC_ENABLE 664 #if EV_PERIODIC_ENABLE
675 EV_BEGIN_WATCHER (periodic, periodic) 665 EV_BEGIN_WATCHER (periodic, periodic)
676 void set (ev_tstamp at, ev_tstamp interval = 0.) throw () 666 void set (ev_tstamp at, ev_tstamp interval = 0.) EV_NOEXCEPT
677 { 667 {
678 int active = is_active (); 668 int active = is_active ();
679 if (active) stop (); 669 if (active) stop ();
680 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0); 670 ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
681 if (active) start (); 671 if (active) start ();
682 } 672 }
683 673
684 void start (ev_tstamp at, ev_tstamp interval = 0.) throw () 674 void start (ev_tstamp at, ev_tstamp interval = 0.) EV_NOEXCEPT
685 { 675 {
686 set (at, interval); 676 set (at, interval);
687 start (); 677 start ();
688 } 678 }
689 679
690 void again () throw () 680 void again () EV_NOEXCEPT
691 { 681 {
692 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this)); 682 ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
693 } 683 }
694 EV_END_WATCHER (periodic, periodic) 684 EV_END_WATCHER (periodic, periodic)
695 #endif 685 #endif
696 686
697 #if EV_SIGNAL_ENABLE 687 #if EV_SIGNAL_ENABLE
698 EV_BEGIN_WATCHER (sig, signal) 688 EV_BEGIN_WATCHER (sig, signal)
699 void set (int signum) throw () 689 void set (int signum) EV_NOEXCEPT
700 { 690 {
701 int active = is_active (); 691 int active = is_active ();
702 if (active) stop (); 692 if (active) stop ();
703 ev_signal_set (static_cast<ev_signal *>(this), signum); 693 ev_signal_set (static_cast<ev_signal *>(this), signum);
704 if (active) start (); 694 if (active) start ();
705 } 695 }
706 696
707 void start (int signum) throw () 697 void start (int signum) EV_NOEXCEPT
708 { 698 {
709 set (signum); 699 set (signum);
710 start (); 700 start ();
711 } 701 }
712 EV_END_WATCHER (sig, signal) 702 EV_END_WATCHER (sig, signal)
713 #endif 703 #endif
714 704
715 #if EV_CHILD_ENABLE 705 #if EV_CHILD_ENABLE
716 EV_BEGIN_WATCHER (child, child) 706 EV_BEGIN_WATCHER (child, child)
717 void set (int pid, int trace = 0) throw () 707 void set (int pid, int trace = 0) EV_NOEXCEPT
718 { 708 {
719 int active = is_active (); 709 int active = is_active ();
720 if (active) stop (); 710 if (active) stop ();
721 ev_child_set (static_cast<ev_child *>(this), pid, trace); 711 ev_child_set (static_cast<ev_child *>(this), pid, trace);
722 if (active) start (); 712 if (active) start ();
723 } 713 }
724 714
725 void start (int pid, int trace = 0) throw () 715 void start (int pid, int trace = 0) EV_NOEXCEPT
726 { 716 {
727 set (pid, trace); 717 set (pid, trace);
728 start (); 718 start ();
729 } 719 }
730 EV_END_WATCHER (child, child) 720 EV_END_WATCHER (child, child)
731 #endif 721 #endif
732 722
733 #if EV_STAT_ENABLE 723 #if EV_STAT_ENABLE
734 EV_BEGIN_WATCHER (stat, stat) 724 EV_BEGIN_WATCHER (stat, stat)
735 void set (const char *path, ev_tstamp interval = 0.) throw () 725 void set (const char *path, ev_tstamp interval = 0.) EV_NOEXCEPT
736 { 726 {
737 int active = is_active (); 727 int active = is_active ();
738 if (active) stop (); 728 if (active) stop ();
739 ev_stat_set (static_cast<ev_stat *>(this), path, interval); 729 ev_stat_set (static_cast<ev_stat *>(this), path, interval);
740 if (active) start (); 730 if (active) start ();
741 } 731 }
742 732
743 void start (const char *path, ev_tstamp interval = 0.) throw () 733 void start (const char *path, ev_tstamp interval = 0.) EV_NOEXCEPT
744 { 734 {
745 stop (); 735 stop ();
746 set (path, interval); 736 set (path, interval);
747 start (); 737 start ();
748 } 738 }
749 739
750 void update () throw () 740 void update () EV_NOEXCEPT
751 { 741 {
752 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this)); 742 ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
753 } 743 }
754 EV_END_WATCHER (stat, stat) 744 EV_END_WATCHER (stat, stat)
755 #endif 745 #endif
756 746
757 #if EV_IDLE_ENABLE 747 #if EV_IDLE_ENABLE
758 EV_BEGIN_WATCHER (idle, idle) 748 EV_BEGIN_WATCHER (idle, idle)
759 void set () throw () { } 749 void set () EV_NOEXCEPT { }
760 EV_END_WATCHER (idle, idle) 750 EV_END_WATCHER (idle, idle)
761 #endif 751 #endif
762 752
763 #if EV_PREPARE_ENABLE 753 #if EV_PREPARE_ENABLE
764 EV_BEGIN_WATCHER (prepare, prepare) 754 EV_BEGIN_WATCHER (prepare, prepare)
765 void set () throw () { } 755 void set () EV_NOEXCEPT { }
766 EV_END_WATCHER (prepare, prepare) 756 EV_END_WATCHER (prepare, prepare)
767 #endif 757 #endif
768 758
769 #if EV_CHECK_ENABLE 759 #if EV_CHECK_ENABLE
770 EV_BEGIN_WATCHER (check, check) 760 EV_BEGIN_WATCHER (check, check)
771 void set () throw () { } 761 void set () EV_NOEXCEPT { }
772 EV_END_WATCHER (check, check) 762 EV_END_WATCHER (check, check)
773 #endif 763 #endif
774 764
775 #if EV_EMBED_ENABLE 765 #if EV_EMBED_ENABLE
776 EV_BEGIN_WATCHER (embed, embed) 766 EV_BEGIN_WATCHER (embed, embed)
777 void set (struct ev_loop *embedded_loop) throw () 767 void set_embed (struct ev_loop *embedded_loop) EV_NOEXCEPT
778 { 768 {
779 int active = is_active (); 769 int active = is_active ();
780 if (active) stop (); 770 if (active) stop ();
781 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop); 771 ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
782 if (active) start (); 772 if (active) start ();
783 } 773 }
784 774
785 void start (struct ev_loop *embedded_loop) throw () 775 void start (struct ev_loop *embedded_loop) EV_NOEXCEPT
786 { 776 {
787 set (embedded_loop); 777 set (embedded_loop);
788 start (); 778 start ();
789 } 779 }
790 780
795 EV_END_WATCHER (embed, embed) 785 EV_END_WATCHER (embed, embed)
796 #endif 786 #endif
797 787
798 #if EV_FORK_ENABLE 788 #if EV_FORK_ENABLE
799 EV_BEGIN_WATCHER (fork, fork) 789 EV_BEGIN_WATCHER (fork, fork)
800 void set () throw () { } 790 void set () EV_NOEXCEPT { }
801 EV_END_WATCHER (fork, fork) 791 EV_END_WATCHER (fork, fork)
802 #endif 792 #endif
803 793
804 #if EV_ASYNC_ENABLE 794 #if EV_ASYNC_ENABLE
805 EV_BEGIN_WATCHER (async, async) 795 EV_BEGIN_WATCHER (async, async)
806 void send () throw () 796 void send () EV_NOEXCEPT
807 { 797 {
808 ev_async_send (EV_A_ static_cast<ev_async *>(this)); 798 ev_async_send (EV_A_ static_cast<ev_async *>(this));
809 } 799 }
810 800
811 bool async_pending () throw () 801 bool async_pending () EV_NOEXCEPT
812 { 802 {
813 return ev_async_pending (static_cast<ev_async *>(this)); 803 return ev_async_pending (static_cast<ev_async *>(this));
814 } 804 }
815 EV_END_WATCHER (async, async) 805 EV_END_WATCHER (async, async)
816 #endif 806 #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines