2007-11-10 21:19:29 +00:00
|
|
|
#ifndef EVPP_H__
|
|
|
|
#define EVPP_H__
|
|
|
|
|
2007-11-24 09:48:37 +00:00
|
|
|
#include "ev.h"
|
2007-11-10 21:19:29 +00:00
|
|
|
|
|
|
|
namespace ev {
|
|
|
|
|
2007-12-04 16:23:29 +00:00
|
|
|
template<class ev_watcher, class watcher>
|
|
|
|
struct base : ev_watcher
|
2007-11-10 21:19:29 +00:00
|
|
|
{
|
2007-12-04 16:23:29 +00:00
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
EV_P;
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-12-04 16:23:29 +00:00
|
|
|
void set (EV_P)
|
|
|
|
{
|
|
|
|
this->EV_A = EV_A;
|
|
|
|
}
|
|
|
|
#endif
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-12-04 16:23:29 +00:00
|
|
|
base ()
|
|
|
|
{
|
|
|
|
ev_init (this, 0);
|
|
|
|
}
|
|
|
|
|
2007-12-11 03:18:33 +00:00
|
|
|
void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents))
|
2007-12-04 16:23:29 +00:00
|
|
|
{
|
2007-12-08 14:27:38 +00:00
|
|
|
this->data = data;
|
2007-12-11 03:18:33 +00:00
|
|
|
ev_set_cb (static_cast<ev_watcher *>(this), cb);
|
2007-12-04 16:23:29 +00:00
|
|
|
}
|
|
|
|
|
2007-12-14 17:47:52 +00:00
|
|
|
// method callback
|
2007-12-04 16:23:29 +00:00
|
|
|
template<class K, void (K::*method)(watcher &w, int)>
|
|
|
|
void set (K *object)
|
|
|
|
{
|
|
|
|
set_ (object, method_thunk<K, method>);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class K, void (K::*method)(watcher &w, int)>
|
2007-12-11 03:18:33 +00:00
|
|
|
static void method_thunk (EV_P_ ev_watcher *w, int revents)
|
2007-12-04 16:23:29 +00:00
|
|
|
{
|
2007-12-08 14:27:38 +00:00
|
|
|
K *obj = static_cast<K *>(w->data);
|
2007-12-11 03:18:33 +00:00
|
|
|
(obj->*method) (*static_cast<watcher *>(w), revents);
|
2007-12-04 16:23:29 +00:00
|
|
|
}
|
|
|
|
|
2007-12-14 17:47:52 +00:00
|
|
|
// const method callback
|
2007-12-04 16:23:29 +00:00
|
|
|
template<class K, void (K::*method)(watcher &w, int) const>
|
|
|
|
void set (const K *object)
|
|
|
|
{
|
|
|
|
set_ (object, const_method_thunk<K, method>);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class K, void (K::*method)(watcher &w, int) const>
|
2007-12-11 03:18:33 +00:00
|
|
|
static void const_method_thunk (EV_P_ ev_watcher *w, int revents)
|
2007-12-04 16:23:29 +00:00
|
|
|
{
|
2007-12-08 14:27:38 +00:00
|
|
|
K *obj = static_cast<K *>(w->data);
|
2007-12-11 03:18:33 +00:00
|
|
|
(static_cast<K *>(w->data)->*method) (*static_cast<watcher *>(w), revents);
|
2007-12-04 16:23:29 +00:00
|
|
|
}
|
|
|
|
|
2007-12-14 17:47:52 +00:00
|
|
|
// function callback
|
2007-12-08 14:27:38 +00:00
|
|
|
template<void (*function)(watcher &w, int)>
|
|
|
|
void set (void *data = 0)
|
2007-12-04 16:23:29 +00:00
|
|
|
{
|
2007-12-07 20:13:08 +00:00
|
|
|
set_ (data, function_thunk<function>);
|
2007-12-04 16:23:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<void (*function)(watcher &w, int)>
|
2007-12-11 03:18:33 +00:00
|
|
|
static void function_thunk (EV_P_ ev_watcher *w, int revents)
|
2007-12-04 16:23:29 +00:00
|
|
|
{
|
2007-12-11 03:18:33 +00:00
|
|
|
function (*static_cast<watcher *>(w), revents);
|
2007-12-04 16:23:29 +00:00
|
|
|
}
|
|
|
|
|
2007-12-14 17:47:52 +00:00
|
|
|
// simple callback
|
|
|
|
template<class K, void (K::*method)()>
|
|
|
|
void set (K *object)
|
|
|
|
{
|
|
|
|
set_ (object, method_noargs_thunk<K, method>);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class K, void (K::*method)()>
|
|
|
|
static void method_noargs_thunk (EV_P_ ev_watcher *w, int revents)
|
|
|
|
{
|
|
|
|
K *obj = static_cast<K *>(w->data);
|
|
|
|
(obj->*method) ();
|
|
|
|
}
|
|
|
|
|
2007-12-04 16:23:29 +00:00
|
|
|
void operator ()(int events = EV_UNDEF)
|
2007-11-10 21:19:29 +00:00
|
|
|
{
|
2007-12-04 17:08:05 +00:00
|
|
|
return ev_cb (static_cast<ev_watcher *>(this))
|
|
|
|
(static_cast<ev_watcher *>(this), events);
|
2007-11-10 21:19:29 +00:00
|
|
|
}
|
|
|
|
|
2007-12-04 16:23:29 +00:00
|
|
|
bool is_active () const
|
2007-11-10 21:19:29 +00:00
|
|
|
{
|
2007-12-04 16:23:29 +00:00
|
|
|
return ev_is_active (static_cast<const ev_watcher *>(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_pending () const
|
|
|
|
{
|
|
|
|
return ev_is_pending (static_cast<const ev_watcher *>(this));
|
2007-11-10 21:19:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-11-11 00:05:59 +00:00
|
|
|
enum {
|
|
|
|
UNDEF = EV_UNDEF,
|
|
|
|
NONE = EV_NONE,
|
|
|
|
READ = EV_READ,
|
|
|
|
WRITE = EV_WRITE,
|
|
|
|
TIMEOUT = EV_TIMEOUT,
|
|
|
|
PERIODIC = EV_PERIODIC,
|
|
|
|
SIGNAL = EV_SIGNAL,
|
2007-11-27 10:59:10 +00:00
|
|
|
CHILD = EV_CHILD,
|
|
|
|
STAT = EV_STAT,
|
2007-11-11 00:05:59 +00:00
|
|
|
IDLE = EV_IDLE,
|
|
|
|
CHECK = EV_CHECK,
|
|
|
|
PREPARE = EV_PREPARE,
|
2007-11-27 10:59:10 +00:00
|
|
|
FORK = EV_FORK,
|
|
|
|
EMBED = EV_EMBED,
|
2007-11-11 00:05:59 +00:00
|
|
|
ERROR = EV_ERROR,
|
|
|
|
};
|
|
|
|
|
2007-11-10 21:19:29 +00:00
|
|
|
typedef ev_tstamp tstamp;
|
|
|
|
|
|
|
|
inline ev_tstamp now (EV_P)
|
|
|
|
{
|
|
|
|
return ev_now (EV_A);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if EV_MULTIPLICITY
|
2007-12-04 16:23:29 +00:00
|
|
|
#define EV_CONSTRUCT \
|
|
|
|
(EV_P = EV_DEFAULT) \
|
2007-11-10 21:19:29 +00:00
|
|
|
{ \
|
2007-12-04 16:23:29 +00:00
|
|
|
set (EV_A); \
|
|
|
|
}
|
2007-11-10 21:19:29 +00:00
|
|
|
#else
|
2007-12-04 16:23:29 +00:00
|
|
|
#define EV_CONSTRUCT \
|
|
|
|
() \
|
|
|
|
{ \
|
|
|
|
}
|
2007-11-10 21:19:29 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* using a template here would require quite a bit more lines,
|
|
|
|
* so a macro solution was chosen */
|
2007-11-11 16:58:25 +00:00
|
|
|
#define EV_BEGIN_WATCHER(cppstem,cstem) \
|
2007-11-10 21:19:29 +00:00
|
|
|
\
|
2007-12-04 16:23:29 +00:00
|
|
|
struct cppstem : base<ev_ ## cstem, cppstem> \
|
2007-11-10 21:19:29 +00:00
|
|
|
{ \
|
|
|
|
void start () \
|
|
|
|
{ \
|
|
|
|
ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void stop () \
|
|
|
|
{ \
|
|
|
|
ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
|
|
|
|
} \
|
|
|
|
\
|
2007-12-04 16:23:29 +00:00
|
|
|
cppstem EV_CONSTRUCT \
|
2007-11-10 21:19:29 +00:00
|
|
|
\
|
2007-11-11 01:07:35 +00:00
|
|
|
~cppstem () \
|
|
|
|
{ \
|
|
|
|
stop (); \
|
|
|
|
} \
|
|
|
|
\
|
2007-12-04 16:23:29 +00:00
|
|
|
using base<ev_ ## cstem, cppstem>::set; \
|
|
|
|
\
|
2007-11-10 21:19:29 +00:00
|
|
|
private: \
|
|
|
|
\
|
|
|
|
cppstem (const cppstem &o) \
|
|
|
|
{ /* disabled */ } \
|
2007-11-14 06:08:13 +00:00
|
|
|
\
|
2007-11-10 21:19:29 +00:00
|
|
|
void operator =(const cppstem &o) { /* disabled */ } \
|
|
|
|
\
|
|
|
|
public:
|
|
|
|
|
2007-11-11 16:58:25 +00:00
|
|
|
#define EV_END_WATCHER(cppstem,cstem) \
|
2007-11-14 06:08:13 +00:00
|
|
|
};
|
2007-11-11 16:58:25 +00:00
|
|
|
|
|
|
|
EV_BEGIN_WATCHER (io, io)
|
2007-11-10 21:19:29 +00:00
|
|
|
void set (int fd, int events)
|
|
|
|
{
|
|
|
|
int active = is_active ();
|
|
|
|
if (active) stop ();
|
|
|
|
ev_io_set (static_cast<ev_io *>(this), fd, events);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void set (int events)
|
|
|
|
{
|
|
|
|
int active = is_active ();
|
|
|
|
if (active) stop ();
|
|
|
|
ev_io_set (static_cast<ev_io *>(this), fd, events);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void start (int fd, int events)
|
|
|
|
{
|
|
|
|
set (fd, events);
|
|
|
|
start ();
|
|
|
|
}
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_END_WATCHER (io, io)
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_BEGIN_WATCHER (timer, timer)
|
2007-11-10 21:19:29 +00:00
|
|
|
void set (ev_tstamp after, ev_tstamp repeat = 0.)
|
|
|
|
{
|
|
|
|
int active = is_active ();
|
|
|
|
if (active) stop ();
|
|
|
|
ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void start (ev_tstamp after, ev_tstamp repeat = 0.)
|
|
|
|
{
|
|
|
|
set (after, repeat);
|
|
|
|
start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void again ()
|
|
|
|
{
|
|
|
|
ev_timer_again (EV_A_ static_cast<ev_timer *>(this));
|
|
|
|
}
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_END_WATCHER (timer, timer)
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-11-27 08:20:41 +00:00
|
|
|
#if EV_PERIODIC_ENABLE
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_BEGIN_WATCHER (periodic, periodic)
|
2007-11-10 21:19:29 +00:00
|
|
|
void set (ev_tstamp at, ev_tstamp interval = 0.)
|
|
|
|
{
|
|
|
|
int active = is_active ();
|
|
|
|
if (active) stop ();
|
|
|
|
ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void start (ev_tstamp at, ev_tstamp interval = 0.)
|
|
|
|
{
|
|
|
|
set (at, interval);
|
|
|
|
start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void again ()
|
|
|
|
{
|
|
|
|
ev_periodic_again (EV_A_ static_cast<ev_periodic *>(this));
|
|
|
|
}
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_END_WATCHER (periodic, periodic)
|
2007-11-11 01:07:35 +00:00
|
|
|
#endif
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_BEGIN_WATCHER (sig, signal)
|
2007-11-10 21:19:29 +00:00
|
|
|
void set (int signum)
|
|
|
|
{
|
|
|
|
int active = is_active ();
|
|
|
|
if (active) stop ();
|
|
|
|
ev_signal_set (static_cast<ev_signal *>(this), signum);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void start (int signum)
|
|
|
|
{
|
|
|
|
set (signum);
|
|
|
|
start ();
|
|
|
|
}
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_END_WATCHER (sig, signal)
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_BEGIN_WATCHER (child, child)
|
2007-11-10 21:19:29 +00:00
|
|
|
void set (int pid)
|
|
|
|
{
|
|
|
|
int active = is_active ();
|
|
|
|
if (active) stop ();
|
|
|
|
ev_child_set (static_cast<ev_child *>(this), pid);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void start (int pid)
|
|
|
|
{
|
|
|
|
set (pid);
|
|
|
|
start ();
|
|
|
|
}
|
2007-11-11 16:58:25 +00:00
|
|
|
EV_END_WATCHER (child, child)
|
2007-11-10 21:19:29 +00:00
|
|
|
|
2007-11-27 08:20:41 +00:00
|
|
|
#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_stat_set (static_cast<ev_stat *>(this), path, interval);
|
|
|
|
if (active) start ();
|
|
|
|
}
|
2007-11-24 09:48:37 +00:00
|
|
|
|
2007-11-27 08:20:41 +00:00
|
|
|
void start (const char *path, ev_tstamp interval = 0.)
|
|
|
|
{
|
2007-11-29 17:36:35 +00:00
|
|
|
stop ();
|
2007-11-27 08:20:41 +00:00
|
|
|
set (path, interval);
|
|
|
|
start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void update ()
|
|
|
|
{
|
|
|
|
ev_stat_stat (EV_A_ static_cast<ev_stat *>(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
|
2007-11-24 09:48:37 +00:00
|
|
|
EV_BEGIN_WATCHER (embed, embed)
|
|
|
|
void start (struct ev_loop *embedded_loop)
|
|
|
|
{
|
2007-11-29 17:36:35 +00:00
|
|
|
stop ();
|
|
|
|
ev_embed_set (static_cast<ev_embed *>(this), embedded_loop);
|
2007-11-24 09:48:37 +00:00
|
|
|
start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void sweep ()
|
|
|
|
{
|
|
|
|
ev_embed_sweep (EV_A_ static_cast<ev_embed *>(this));
|
|
|
|
}
|
|
|
|
EV_END_WATCHER (embed, embed)
|
|
|
|
#endif
|
|
|
|
|
2007-11-27 11:06:03 +00:00
|
|
|
#if EV_FORK_ENABLE
|
|
|
|
EV_BEGIN_WATCHER (fork, fork)
|
|
|
|
void set () { }
|
|
|
|
EV_END_WATCHER (fork, fork)
|
|
|
|
#endif
|
|
|
|
|
2007-11-10 21:19:29 +00:00
|
|
|
#undef EV_CONSTRUCT
|
2007-11-11 16:58:25 +00:00
|
|
|
#undef EV_BEGIN_WATCHER
|
2007-11-24 09:48:37 +00:00
|
|
|
#undef EV_END_WATCHER
|
2007-11-10 21:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|