--- libev/ev++.h 2007/11/27 11:06:03 1.10 +++ libev/ev++.h 2007/12/08 14:27:38 1.17 @@ -5,42 +5,81 @@ namespace ev { - template - class callback + template + struct base : ev_watcher { - struct object { }; + #if EV_MULTIPLICITY + EV_P; - 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 + void set (EV_P) { - ((reinterpret_cast(obj)) ->* (reinterpret_cast(meth))) - (w, e); + this->EV_A = EV_A; } - }; + #endif - proxy_base *prxy; + base () + { + ev_init (this, 0); + } - public: - template - explicit callback (O1 *object, void (O2::*method)(watcher &, int)) + void set_ (void *data, void (*cb)(EV_P_ watcher *w, int revents)) { - static proxy p; - obj = reinterpret_cast(object); - meth = reinterpret_cast(method); - prxy = &p; + this->data = data; + ev_set_cb (static_cast(this), cb); } - void call (watcher *w, int e) const + template + void set (K *object) { - return prxy->call (obj, meth, *w, e); + set_ (object, method_thunk); + } + + template + static void method_thunk (EV_P_ watcher *w, int revents) + { + K *obj = static_cast(w->data); + (obj->*method) (*w, revents); + } + + template + void set (const K *object) + { + set_ (object, const_method_thunk); + } + + template + static void const_method_thunk (EV_P_ watcher *w, int revents) + { + K *obj = static_cast(w->data); + (obj->*method) (*w, revents); + } + + template + void set (void *data = 0) + { + set_ (data, function_thunk); + } + + template + static void function_thunk (EV_P_ watcher *w, int revents) + { + function (*w, revents); + } + + void operator ()(int events = EV_UNDEF) + { + return ev_cb (static_cast(this)) + (static_cast(this), events); + } + + bool is_active () const + { + return ev_is_active (static_cast(this)); + } + + bool is_pending () const + { + return ev_is_pending (static_cast(this)); } }; @@ -70,49 +109,24 @@ } #if EV_MULTIPLICITY - - #define EV_CONSTRUCT(cppstem) \ - EV_P; \ - \ - void set (EV_P) \ + #define EV_CONSTRUCT \ + (EV_P = EV_DEFAULT) \ { \ - this->EV_A = EV_A; \ - } \ - \ - template \ - explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int), EV_P = ev_default_loop (0)) \ - : callback (object, method), EV_A (EV_A) - + set (EV_A); \ + } #else - - #define EV_CONSTRUCT(cppstem) \ - template \ - explicit cppstem (O1 *object, void (O2::*method)(cppstem &, int)) \ - : callback (object, method) - + #define EV_CONSTRUCT \ + () \ + { \ + } #endif /* using a template here would require quite a bit more lines, * so a macro solution was chosen */ #define EV_BEGIN_WATCHER(cppstem,cstem) \ \ - struct cppstem : ev_ ## cstem, callback \ + struct cppstem : base \ { \ - EV_CONSTRUCT (cppstem) \ - { \ - ev_init (static_cast(this), thunk); \ - } \ - \ - bool is_active () const \ - { \ - return ev_is_active (static_cast(this)); \ - } \ - \ - bool is_pending () const \ - { \ - return ev_is_pending (static_cast(this)); \ - } \ - \ void start () \ { \ ev_ ## cstem ## _start (EV_A_ static_cast(this)); \ @@ -123,29 +137,22 @@ ev_ ## cstem ## _stop (EV_A_ static_cast(this)); \ } \ \ - void operator ()(int events = EV_UNDEF) \ - { \ - return call (this, events); \ - } \ + cppstem EV_CONSTRUCT \ \ ~cppstem () \ { \ stop (); \ } \ \ + using base::set; \ + \ private: \ \ cppstem (const cppstem &o) \ - : callback (this, (void (cppstem::*)(cppstem &, int))0) \ { /* disabled */ } \ \ void operator =(const cppstem &o) { /* disabled */ } \ \ - static void thunk (EV_P_ struct ev_ ## cstem *w, int revents) \ - { \ - (*static_cast(w))(revents); \ - } \ - \ public: #define EV_END_WATCHER(cppstem,cstem) \ @@ -263,6 +270,7 @@ void start (const char *path, ev_tstamp interval = 0.) { + stop (); set (path, interval); start (); } @@ -288,17 +296,10 @@ #if EV_EMBED_ENABLE EV_BEGIN_WATCHER (embed, embed) - void set (struct ev_loop *loop) - { - int active = is_active (); - if (active) stop (); - ev_embed_set (static_cast(this), loop); - if (active) start (); - } - void start (struct ev_loop *embedded_loop) { - set (embedded_loop); + stop (); + ev_embed_set (static_cast(this), embedded_loop); start (); }