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.56 by root, Thu Oct 28 04:55:19 2010 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 *
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::runtime_error
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 } 201 }
195 202
196 void unloop (how_t how = ONE) throw () 203 void unloop (how_t how = ONE) throw ()
197 { 204 {
198 ev_unloop (EV_AX_ how); 205 ev_break (EV_AX_ how);
206 }
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) throw ()
215 {
216 ev_break (EV_AX_ how);
199 } 217 }
200 218
201 void post_fork () throw () 219 void post_fork () throw ()
202 { 220 {
203#if EV_MULTIPLICITY
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 throw ()
211 { 225 {
212 return ev_backend (EV_AX); 226 return ev_backend (EV_AX);
225 void unref () throw () 239 void unref () throw ()
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 throw ()
232 { 246 {
233 return ev_loop_count (EV_AX); 247 return ev_iteration (EV_AX);
234 } 248 }
235 249
236 unsigned int depth () const throw () 250 unsigned int depth () const throw ()
237 { 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) throw ()
242 { 256 {
243 ev_set_io_collect_interval (EV_AX_ interval); 257 ev_set_io_collect_interval (EV_AX_ interval);
373#else 387#else
374 !ev_default_loop (flags) 388 !ev_default_loop (flags)
375#endif 389#endif
376 ) 390 )
377 throw bad_loop (); 391 throw bad_loop ();
378 }
379
380 ~default_loop () throw ()
381 {
382 ev_default_destroy ();
383 } 392 }
384 393
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 &);
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
427 // loop set
418 void set (EV_P) throw () 428 void set (EV_P) throw ()
419 { 429 {
420 this->EV_A = EV_A; 430 this->EV_A = EV_A;
421 } 431 }
422 #endif 432 #endif
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 {
642 652
643 void again () throw () 653 void again () throw ()
644 { 654 {
645 ev_timer_again (EV_A_ static_cast<ev_timer *>(this)); 655 ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
646 } 656 }
657
658 ev_tstamp remaining ()
659 {
660 return ev_timer_remaining (EV_A_ static_cast<ev_timer *>(this));
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.) throw ()
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) throw ()
674 { 690 {
675 int active = is_active (); 691 int active = is_active ();
676 if (active) stop (); 692 if (active) stop ();
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) throw ()
690 { 708 {
691 int active = is_active (); 709 int active = is_active ();
692 if (active) stop (); 710 if (active) stop ();
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.) throw ()
707 { 726 {
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 () throw () { }
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 () throw () { }
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 () throw () { }
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 (struct ev_loop *embedded_loop) throw ()
743 { 768 {
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 () { }
772
773 void send () throw () 796 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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines