libev/ev++.h

783 lines
20 KiB
C
Raw Normal View History

2007-12-25 07:05:45 +00:00
/*
* libev simple C++ wrapper classes
*
* Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
* CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
* ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Alternatively, the contents of this file may be used under the terms of
* the GNU General Public License ("GPL") version 2 or any later version,
* in which case the provisions of the GPL are applicable instead of
* the above. If you wish to allow the use of your version of this file
* only under the terms of the GPL and not to allow others to use your
* version of this file under the BSD license, indicate your decision
* by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL. If you do not delete the
* provisions above, a recipient may use your version of this file under
* either the BSD or the GPL.
*/
2007-11-10 21:19:29 +00:00
#ifndef EVPP_H__
#define EVPP_H__
2007-12-20 08:17:57 +00:00
#ifdef EV_H
# include EV_H
#else
2008-01-10 06:00:55 +00:00
# include "ev.h"
2007-12-20 08:17:57 +00:00
#endif
2007-11-10 21:19:29 +00:00
#ifndef EV_USE_STDEXCEPT
# define EV_USE_STDEXCEPT 1
#endif
#if EV_USE_STDEXCEPT
# include <stdexcept>
#endif
2007-11-10 21:19:29 +00:00
namespace ev {
2008-01-18 18:13:21 +00:00
typedef ev_tstamp tstamp;
enum {
UNDEF = EV_UNDEF,
NONE = EV_NONE,
READ = EV_READ,
WRITE = EV_WRITE,
TIMEOUT = EV_TIMEOUT,
PERIODIC = EV_PERIODIC,
SIGNAL = EV_SIGNAL,
CHILD = EV_CHILD,
STAT = EV_STAT,
IDLE = EV_IDLE,
CHECK = EV_CHECK,
PREPARE = EV_PREPARE,
FORK = EV_FORK,
EMBED = EV_EMBED,
ERROR = EV_ERROR,
};
2008-01-18 18:13:40 +00:00
enum
{
AUTO = EVFLAG_AUTO,
NOENV = EVFLAG_NOENV,
FORKCHECK = EVFLAG_FORKCHECK,
SELECT = EVBACKEND_SELECT,
POLL = EVBACKEND_POLL,
EPOLL = EVBACKEND_EPOLL,
KQUEUE = EVBACKEND_KQUEUE,
DEVPOLL = EVBACKEND_DEVPOLL,
PORT = EVBACKEND_PORT
};
enum
{
NONBLOCK = EVLOOP_NONBLOCK,
ONESHOT = EVLOOP_ONESHOT
};
enum how_t
{
ONE = EVUNLOOP_ONE,
ALL = EVUNLOOP_ALL
};
struct bad_loop
#if EV_USE_STDEXCEPT
: std::runtime_error
#endif
{
#if EV_USE_STDEXCEPT
2008-01-19 00:39:38 +00:00
bad_loop ()
: std::runtime_error ("libev event loop cannot be initialized, bad value of LIBEV_FLAGS?")
2008-01-19 00:39:38 +00:00
{
}
#endif
};
#ifdef EV_AX
# undef EV_AX
#endif
#ifdef EV_AX_
# undef EV_AX_
#endif
#if EV_MULTIPLICITY
# define EV_AX raw_loop
# define EV_AX_ raw_loop,
#else
# define EV_AX
# define EV_AX_
#endif
struct loop_ref
{
loop_ref (EV_P)
#if EV_MULTIPLICITY
throw (bad_loop) : EV_AX (EV_A)
{
if (!EV_AX)
throw bad_loop ();
}
#else
throw ()
{
}
#endif
bool operator == (const loop_ref &other) const throw ()
{
#if EV_MULTIPLICITY
return EV_AX == other.EV_AX;
#else
return true;
#endif
}
bool operator != (const loop_ref &other) const throw ()
{
#if EV_MULTIPLICITY
return ! (*this == other);
#else
return false;
#endif
}
#if EV_MULTIPLICITY
2008-01-19 00:39:38 +00:00
bool operator== (struct ev_loop *other) const throw ()
{
return this->EV_AX == other;
}
2008-01-19 00:39:38 +00:00
bool operator!= (struct ev_loop *other) const throw ()
{
return ! (*this == other);
}
2008-01-19 00:39:38 +00:00
bool operator== (const struct ev_loop *other) const throw ()
{
return this->EV_AX == other;
}
2008-01-19 00:39:38 +00:00
bool operator!= (const struct ev_loop *other) const throw ()
{
return (*this == other);
}
2008-01-19 00:39:38 +00:00
operator struct ev_loop * () const throw ()
{
return EV_AX;
}
2008-01-19 00:39:38 +00:00
operator const struct ev_loop * () const throw ()
{
return EV_AX;
}
2008-01-19 00:39:38 +00:00
bool is_default () const throw ()
{
return EV_AX == ev_default_loop (0);
}
#endif
void loop (int flags = 0)
{
ev_loop (EV_AX_ flags);
}
2008-01-19 00:39:38 +00:00
void unloop (how_t how = ONE) throw ()
{
ev_unloop (EV_AX_ how);
}
2008-01-19 00:39:38 +00:00
void post_fork () throw ()
{
#if EV_MULTIPLICITY
ev_loop_fork (EV_AX);
#else
ev_default_fork ();
#endif
}
2008-01-19 00:39:38 +00:00
unsigned int count () const throw ()
{
return ev_loop_count (EV_AX);
}
2008-01-19 00:39:38 +00:00
unsigned int backend () const throw ()
{
return ev_backend (EV_AX);
}
2008-01-19 00:39:38 +00:00
tstamp now () const throw ()
{
return ev_now (EV_AX);
}
2008-01-19 00:39:38 +00:00
void ref () throw ()
{
ev_ref (EV_AX);
}
2008-01-19 00:39:38 +00:00
void unref () throw ()
{
ev_unref (EV_AX);
}
2008-01-19 00:39:38 +00:00
void set_io_collect_interval (tstamp interval) throw ()
{
ev_set_io_collect_interval (EV_AX_ interval);
}
2008-01-19 00:39:38 +00:00
void set_timeout_collect_interval (tstamp interval) throw ()
{
ev_set_timeout_collect_interval (EV_AX_ interval);
}
// function callback
2008-01-19 00:39:38 +00:00
void once (int fd, int events, tstamp timeout, void (*cb)(int, void *), void* arg = 0) throw ()
{
ev_once (EV_AX_ fd, events, timeout, cb, arg);
}
// method callback
template<class K, void (K::*method)(int)>
2008-01-19 00:39:38 +00:00
void once (int fd, int events, tstamp timeout, K *object) throw ()
{
once (fd, events, timeout, method_thunk<K, method>, object);
}
template<class K, void (K::*method)(int)>
static void method_thunk (int revents, void* arg)
{
K *obj = static_cast<K *>(arg);
(obj->*method) (revents);
}
// const method callback
template<class K, void (K::*method)(int) const>
2008-01-19 00:39:38 +00:00
void once (int fd, int events, tstamp timeout, const K *object) throw ()
{
once (fd, events, timeout, const_method_thunk<K, method>, object);
}
template<class K, void (K::*method)(int) const>
static void const_method_thunk (int revents, void* arg)
{
K *obj = static_cast<K *>(arg);
(obj->*method) (revents);
}
// simple method callback
template<class K, void (K::*method)()>
2008-01-19 00:39:38 +00:00
void once (int fd, int events, tstamp timeout, K *object) throw ()
{
once (fd, events, timeout, method_noargs_thunk<K, method>, object);
}
template<class K, void (K::*method)()>
static void method_noargs_thunk (int revents, void* arg)
{
K *obj = static_cast<K *>(arg);
(obj->*method) ();
}
// simpler function callback
template<void (*cb)(int)>
2008-01-19 00:39:38 +00:00
void once (int fd, int events, tstamp timeout) throw ()
{
once (fd, events, timeout, simpler_func_thunk<cb>);
}
template<void (*cb)(int)>
static void simpler_func_thunk (int revents, void* arg)
{
(*cb) (revents);
}
// simplest function callback
template<void (*cb)()>
2008-01-19 00:39:38 +00:00
void once (int fd, int events, tstamp timeout) throw ()
{
once (fd, events, timeout, simplest_func_thunk<cb>);
}
template<void (*cb)()>
static void simplest_func_thunk (int revents, void* arg)
{
(*cb) ();
}
2008-01-19 00:39:38 +00:00
void feed_fd_event (int fd, int revents) throw ()
{
ev_feed_fd_event (EV_AX_ fd, revents);
}
2008-01-19 00:39:38 +00:00
void feed_signal_event (int signum) throw ()
{
ev_feed_signal_event (EV_AX_ signum);
}
#if EV_MULTIPLICITY
struct ev_loop* EV_AX;
#endif
};
#if EV_MULTIPLICITY
struct dynamic_loop: loop_ref
{
2008-01-22 17:56:54 +00:00
dynamic_loop (unsigned int flags = AUTO) throw (bad_loop)
: loop_ref (ev_loop_new (flags))
{
}
2008-01-19 00:39:38 +00:00
~dynamic_loop () throw ()
{
ev_loop_destroy (EV_AX);
EV_AX = 0;
}
private:
dynamic_loop (const dynamic_loop &);
dynamic_loop & operator= (const dynamic_loop &);
};
#endif
struct default_loop: loop_ref
{
default_loop (unsigned int flags = AUTO) throw (bad_loop)
#if EV_MULTIPLICITY
: loop_ref (ev_default_loop (flags))
#endif
{
#if !EV_MULTIPLICITY
if (!ev_default_loop (flags))
throw bad_loop ();
#endif
}
2008-01-19 00:39:38 +00:00
~default_loop () throw ()
{
ev_default_destroy ();
}
private:
default_loop (const default_loop &);
default_loop &operator = (const default_loop &);
};
2008-01-19 00:39:38 +00:00
inline loop_ref get_default_loop () throw ()
{
#if EV_MULTIPLICITY
return ev_default_loop (0);
#else
return loop_ref ();
#endif
}
#undef EV_AX
#undef EV_AX_
#undef EV_PX
#undef EV_PX_
#if EV_MULTIPLICITY
# define EV_PX loop_ref EV_A
# define EV_PX_ loop_ref EV_A_
#else
# define EV_PX
# define EV_PX_
#endif
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_PX;
2007-11-10 21:19:29 +00:00
2008-01-19 00:39:38 +00:00
void set (EV_PX) throw ()
2007-12-04 16:23:29 +00:00
{
this->EV_A = EV_A;
}
#endif
2007-11-10 21:19:29 +00:00
2008-01-19 00:39:38 +00:00
base (EV_PX) throw ()
#if EV_MULTIPLICITY
: EV_A (EV_A)
#endif
2007-12-04 16:23:29 +00:00
{
ev_init (this, 0);
}
2008-01-19 00:39:38 +00:00
void set_ (void *data, void (*cb)(EV_P_ ev_watcher *w, int revents)) throw ()
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)>
2008-01-19 00:39:38 +00:00
void set (K *object) throw ()
2007-12-04 16:23:29 +00:00
{
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>
2008-01-19 00:39:38 +00:00
void set (const K *object) throw ()
2007-12-04 16:23:29 +00:00
{
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)>
2008-01-19 00:39:38 +00:00
void set (void *data = 0) throw ()
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)()>
2008-01-19 00:39:38 +00:00
void set (K *object) throw ()
2007-12-14 17:47:52 +00:00
{
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
}
2008-01-19 00:39:38 +00:00
bool is_active () const throw ()
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));
}
2008-01-19 00:39:38 +00:00
bool is_pending () const throw ()
2007-12-04 16:23:29 +00:00
{
return ev_is_pending (static_cast<const ev_watcher *>(this));
2007-11-10 21:19:29 +00:00
}
2008-01-19 00:39:38 +00:00
void feed_event (int revents) throw ()
{
ev_feed_event (EV_A_ static_cast<const ev_watcher *>(this), revents);
}
2007-11-10 21:19:29 +00:00
};
2008-01-19 00:39:38 +00:00
inline tstamp now () throw ()
{
return ev_time ();
}
2008-01-19 00:39:38 +00:00
inline void delay (tstamp interval) throw ()
{
ev_sleep (interval);
}
2008-01-19 00:39:38 +00:00
inline int version_major () throw ()
{
return ev_version_major ();
}
2008-01-19 00:39:38 +00:00
inline int version_minor () throw ()
{
return ev_version_minor ();
}
2008-01-19 00:39:38 +00:00
inline unsigned int supported_backends () throw ()
{
return ev_supported_backends ();
}
2008-01-19 00:39:38 +00:00
inline unsigned int recommended_backends () throw ()
{
return ev_recommended_backends ();
}
2008-01-19 00:39:38 +00:00
inline unsigned int embeddable_backends () throw ()
{
return ev_embeddable_backends ();
}
2008-01-19 00:39:38 +00:00
inline void set_allocator (void *(*cb)(void *ptr, long size)) throw ()
{
ev_set_allocator (cb);
}
2008-01-19 00:39:38 +00:00
inline void set_syserr_cb (void (*cb)(const char *msg)) throw ()
{
ev_set_syserr_cb (cb);
}
2007-11-10 21:19:29 +00:00
#if EV_MULTIPLICITY
#define EV_CONSTRUCT(cppstem,cstem) \
2008-01-19 00:39:38 +00:00
(EV_PX = get_default_loop ()) throw () \
: base<ev_ ## cstem, cppstem> (EV_A) \
2007-11-10 21:19:29 +00:00
{ \
2007-12-04 16:23:29 +00:00
}
2007-11-10 21:19:29 +00:00
#else
#define EV_CONSTRUCT(cppstem,cstem) \
2008-01-19 00:39:38 +00:00
() throw () \
2007-12-04 16:23:29 +00:00
{ \
}
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
{ \
2008-01-19 00:39:38 +00:00
void start () throw () \
2007-11-10 21:19:29 +00:00
{ \
ev_ ## cstem ## _start (EV_A_ static_cast<ev_ ## cstem *>(this)); \
} \
\
2008-01-19 00:39:38 +00:00
void stop () throw () \
2007-11-10 21:19:29 +00:00
{ \
ev_ ## cstem ## _stop (EV_A_ static_cast<ev_ ## cstem *>(this)); \
} \
\
cppstem EV_CONSTRUCT(cppstem,cstem) \
2007-11-10 21:19:29 +00:00
\
2008-01-19 00:39:38 +00:00
~cppstem () throw () \
2007-11-11 01:07:35 +00:00
{ \
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); \
\
cppstem & operator =(const cppstem &o); \
2007-11-10 21:19:29 +00:00
\
public:
2007-11-11 16:58:25 +00:00
#define EV_END_WATCHER(cppstem,cstem) \
};
2007-11-11 16:58:25 +00:00
EV_BEGIN_WATCHER (io, io)
2008-01-19 00:39:38 +00:00
void set (int fd, int events) throw ()
2007-11-10 21:19:29 +00:00
{
int active = is_active ();
if (active) stop ();
ev_io_set (static_cast<ev_io *>(this), fd, events);
if (active) start ();
}
2008-01-19 00:39:38 +00:00
void set (int events) throw ()
2007-11-10 21:19:29 +00:00
{
int active = is_active ();
if (active) stop ();
ev_io_set (static_cast<ev_io *>(this), fd, events);
if (active) start ();
}
2008-01-19 00:39:38 +00:00
void start (int fd, int events) throw ()
2007-11-10 21:19:29 +00:00
{
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)
2008-01-19 00:39:38 +00:00
void set (ev_tstamp after, ev_tstamp repeat = 0.) throw ()
2007-11-10 21:19:29 +00:00
{
int active = is_active ();
if (active) stop ();
ev_timer_set (static_cast<ev_timer *>(this), after, repeat);
if (active) start ();
}
2008-01-19 00:39:38 +00:00
void start (ev_tstamp after, ev_tstamp repeat = 0.) throw ()
2007-11-10 21:19:29 +00:00
{
set (after, repeat);
start ();
}
2008-01-19 00:39:38 +00:00
void again () throw ()
2007-11-10 21:19:29 +00:00
{
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)
2008-01-19 00:39:38 +00:00
void set (ev_tstamp at, ev_tstamp interval = 0.) throw ()
2007-11-10 21:19:29 +00:00
{
int active = is_active ();
if (active) stop ();
ev_periodic_set (static_cast<ev_periodic *>(this), at, interval, 0);
if (active) start ();
}
2008-01-19 00:39:38 +00:00
void start (ev_tstamp at, ev_tstamp interval = 0.) throw ()
2007-11-10 21:19:29 +00:00
{
set (at, interval);
start ();
}
2008-01-19 00:39:38 +00:00
void again () throw ()
2007-11-10 21:19:29 +00:00
{
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)
2008-01-19 00:39:38 +00:00
void set (int signum) throw ()
2007-11-10 21:19:29 +00:00
{
int active = is_active ();
if (active) stop ();
ev_signal_set (static_cast<ev_signal *>(this), signum);
if (active) start ();
}
2008-01-19 00:39:38 +00:00
void start (int signum) throw ()
2007-11-10 21:19:29 +00:00
{
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)
2008-01-19 00:39:38 +00:00
void set (int pid) throw ()
2007-11-10 21:19:29 +00:00
{
int active = is_active ();
if (active) stop ();
ev_child_set (static_cast<ev_child *>(this), pid);
if (active) start ();
}
2008-01-19 00:39:38 +00:00
void start (int pid) throw ()
2007-11-10 21:19:29 +00:00
{
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)
2008-01-19 00:39:38 +00:00
void set (const char *path, ev_tstamp interval = 0.) throw ()
2007-11-27 08:20:41 +00:00
{
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
2008-01-19 00:39:38 +00:00
void start (const char *path, ev_tstamp interval = 0.) throw ()
2007-11-27 08:20:41 +00:00
{
2007-11-29 17:36:35 +00:00
stop ();
2007-11-27 08:20:41 +00:00
set (path, interval);
start ();
}
2008-01-19 00:39:38 +00:00
void update () throw ()
2007-11-27 08:20:41 +00:00
{
ev_stat_stat (EV_A_ static_cast<ev_stat *>(this));
}
EV_END_WATCHER (stat, stat)
#endif
EV_BEGIN_WATCHER (idle, idle)
2008-01-19 00:39:38 +00:00
void set () throw () { }
2007-11-27 08:20:41 +00:00
EV_END_WATCHER (idle, idle)
EV_BEGIN_WATCHER (prepare, prepare)
2008-01-19 00:39:38 +00:00
void set