X-Git-Url: https://git.llucax.com/software/libev.git/blobdiff_plain/73ce65a9122dd90fac253802fe20630572fdd4be..f6cc1f750a321b2c6e30637963d3e624c7a8e5ae:/ev%20%20.h/software/libev.git/blobdiff_plain/73ce65a9122dd90fac253802fe20630572fdd4be..f6cc1f750a321b2c6e30637963d3e624c7a8e5ae:/ev++.h diff --git a/ev++.h b/ev++.h index 0f51bd5..c51e161 100644 --- a/ev++.h +++ b/ev++.h @@ -8,39 +8,26 @@ namespace ev { template class callback { - struct object { }; + struct klass; // it is vital that this is never defined - void *obj; - void (object::*meth)(watcher &, int); - - /* a proxy is a kind of recipe on how to call a specific class method */ - struct proxy_base { - virtual void call (void *obj, void (object::*meth)(watcher &, int), watcher &w, int) const = 0; - }; - template - struct proxy : proxy_base { - virtual void call (void *obj, void (object::*meth)(watcher &, int), watcher &w, int e) const - { - ((reinterpret_cast(obj)) ->* (reinterpret_cast(meth))) - (w, e); - } - }; - - proxy_base *prxy; + klass *o; + void (klass::*m)(watcher &, int); public: template explicit callback (O1 *object, void (O2::*method)(watcher &, int)) { - static proxy p; - obj = reinterpret_cast(object); - meth = reinterpret_cast(method); - prxy = &p; + o = reinterpret_cast(object); + m = reinterpret_cast(method); } - void call (watcher *w, int e) const + // this works because a standards-compliant C++ compiler + // basically can't help it: it doesn't have the knowledge + // required to miscompile (klass is not defined anywhere + // and nothing is known about the constructor arguments) :) + void call (watcher *w, int revents) { - return prxy->call (obj, meth, *w, e); + (o->*m) (*w, revents); } }; @@ -52,10 +39,13 @@ namespace ev { TIMEOUT = EV_TIMEOUT, PERIODIC = EV_PERIODIC, SIGNAL = EV_SIGNAL, + CHILD = EV_CHILD, + STAT = EV_STAT, IDLE = EV_IDLE, CHECK = EV_CHECK, PREPARE = EV_PREPARE, - CHILD = EV_CHILD, + FORK = EV_FORK, + EMBED = EV_EMBED, ERROR = EV_ERROR, }; @@ -193,7 +183,7 @@ namespace ev { } EV_END_WATCHER (timer, timer) - #if EV_PERIODICS + #if EV_PERIODIC_ENABLE EV_BEGIN_WATCHER (periodic, periodic) void set (ev_tstamp at, ev_tstamp interval = 0.) { @@ -216,18 +206,6 @@ namespace ev { EV_END_WATCHER (periodic, periodic) #endif - EV_BEGIN_WATCHER (idle, idle) - void set () { } - EV_END_WATCHER (idle, idle) - - EV_BEGIN_WATCHER (prepare, prepare) - void set () { } - EV_END_WATCHER (prepare, prepare) - - EV_BEGIN_WATCHER (check, check) - void set () { } - EV_END_WATCHER (check, check) - EV_BEGIN_WATCHER (sig, signal) void set (int signum) { @@ -260,20 +238,48 @@ namespace ev { } EV_END_WATCHER (child, child) - #if EV_MULTIPLICITY - - EV_BEGIN_WATCHER (embed, embed) - void set (struct ev_loop *loop) + #if EV_STAT_ENABLE + EV_BEGIN_WATCHER (stat, stat) + void set (const char *path, ev_tstamp interval = 0.) { int active = is_active (); if (active) stop (); - ev_embed_set (static_cast(this), loop); + ev_stat_set (static_cast(this), path, interval); if (active) start (); } + void start (const char *path, ev_tstamp interval = 0.) + { + stop (); + set (path, interval); + start (); + } + + void update () + { + ev_stat_stat (EV_A_ static_cast(this)); + } + EV_END_WATCHER (stat, stat) + #endif + + EV_BEGIN_WATCHER (idle, idle) + void set () { } + EV_END_WATCHER (idle, idle) + + EV_BEGIN_WATCHER (prepare, prepare) + void set () { } + EV_END_WATCHER (prepare, prepare) + + EV_BEGIN_WATCHER (check, check) + void set () { } + EV_END_WATCHER (check, check) + + #if EV_EMBED_ENABLE + EV_BEGIN_WATCHER (embed, embed) void start (struct ev_loop *embedded_loop) { - set (embedded_loop); + stop (); + ev_embed_set (static_cast(this), embedded_loop); start (); } @@ -282,7 +288,12 @@ namespace ev { ev_embed_sweep (EV_A_ static_cast(this)); } EV_END_WATCHER (embed, embed) + #endif + #if EV_FORK_ENABLE + EV_BEGIN_WATCHER (fork, fork) + void set () { } + EV_END_WATCHER (fork, fork) #endif #undef EV_CONSTRUCT