X-Git-Url: https://git.llucax.com/software/libev.git/blobdiff_plain/df8e71c4e2c8581ed8f5c4503f30af035c138494..8ab3aaf01681746728af4895766044793f98b37d:/ev%20%20.h/software/libev.git/blobdiff_plain/df8e71c4e2c8581ed8f5c4503f30af035c138494..8ab3aaf01681746728af4895766044793f98b37d:/ev++.h diff --git a/ev++.h b/ev++.h index 6086a97..f535515 100644 --- a/ev++.h +++ b/ev++.h @@ -1,7 +1,11 @@ #ifndef EVPP_H__ #define EVPP_H__ -#include "ev.h" +#ifdef EV_H +# include EV_H +#else +# include +#endif namespace ev { @@ -22,12 +26,13 @@ namespace ev { ev_init (this, 0); } - void set_ (void *object, void (*cb)(ev_watcher *w, int revents)) + void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) { - this->data = object; + this->data = data; ev_set_cb (static_cast(this), cb); } + // method callback template void set (K *object) { @@ -35,13 +40,13 @@ namespace ev { } template - static void method_thunk (ev_watcher *w, int revents) + static void method_thunk (EV_P_ ev_watcher *w, int revents) { - watcher *self = static_cast(w); - K *obj = static_cast(self->data); - (obj->*method) (*self, revents); + K *obj = static_cast(w->data); + (obj->*method) (*static_cast(w), revents); } + // const method callback template void set (const K *object) { @@ -49,29 +54,43 @@ namespace ev { } template - static void const_method_thunk (ev_watcher *w, int revents) + static void const_method_thunk (EV_P_ ev_watcher *w, int revents) { - watcher *self = static_cast(w); - K *obj = static_cast(self->data); - (obj->*method) (*self, revents); + K *obj = static_cast(w->data); + (static_cast(w->data)->*method) (*static_cast(w), revents); } + // function callback template - void set () + void set (void *data = 0) { - set_ (0, function_thunk); + set_ (data, function_thunk); } template - static void function_thunk (ev_watcher *w, int revents) + static void function_thunk (EV_P_ ev_watcher *w, int revents) + { + function (*static_cast(w), revents); + } + + // simple callback + template + void set (K *object) + { + set_ (object, method_noargs_thunk); + } + + template + static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents) { - watcher *self = static_cast(w); - function (*self, revents); + K *obj = static_cast(w->data); + (obj->*method) (); } void operator ()(int events = EV_UNDEF) { - return e_cb (static_cast(this)) (events); + return ev_cb (static_cast(this)) + (static_cast(this), events); } bool is_active () const