--- libev/ev++.h 2007/11/29 17:36:35 1.12 +++ libev/ev++.h 2007/12/04 16:23:29 1.13 @@ -5,29 +5,83 @@ namespace ev { - template - class callback + template + struct base : ev_watcher { - struct klass; // it is vital that this is never defined + #if EV_MULTIPLICITY + EV_P; - klass *o; - void (klass::*m)(watcher &, int); + void set (EV_P) + { + this->EV_A = EV_A; + } + #endif - public: - template - explicit callback (O1 *object, void (O2::*method)(watcher &, int)) + base () + { + ev_init (this, 0); + } + + void set_ (void *object, void (*cb)(ev_watcher *w, int revents)) + { + this->data = object; + ev_set_cb (static_cast(this), cb); + } + + template + void set (K *object) + { + set_ (object, method_thunk); + } + + template + static void method_thunk (ev_watcher *w, int revents) + { + watcher *self = static_cast(w); + K *obj = static_cast(self->data); + (obj->*method) (*self, revents); + } + + template + void set (const K *object) + { + set_ (object, const_method_thunk); + } + + template + static void const_method_thunk (ev_watcher *w, int revents) + { + watcher *self = static_cast(w); + K *obj = static_cast(self->data); + (obj->*method) (*self, revents); + } + + template + void set () + { + set_ (0, function_thunk); + } + + template + static void function_thunk (ev_watcher *w, int revents) + { + watcher *self = static_cast(w); + function (*self, revents); + } + + void operator ()(int events = EV_UNDEF) { - o = reinterpret_cast(object); - m = reinterpret_cast(method); + return e_cb (static_cast(this)) (events); } - // 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) + bool is_active () const { - (o->*m) (*w, revents); + return ev_is_active (static_cast(this)); + } + + bool is_pending () const + { + return ev_is_pending (static_cast(this)); } }; @@ -57,49 +111,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)); \ @@ -110,29 +139,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) \