ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/EV.xs
(Generate patch)

Comparing EV/EV.xs (file contents):
Revision 1.34 by root, Thu Nov 1 12:11:07 2007 UTC vs.
Revision 1.141 by root, Thu Jul 8 00:45:03 2010 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/* fix perl api breakage */
6#undef signal
7#undef sigaction
6 8
7#define TIMEOUT_NONE HUGE_VAL 9#include "schmorp.h"
8#define EV_USE_EPOLL 1
9 10
11/* old API compatibility */
12static int
13sv_fileno (SV *fh)
14{
15 return s_fileno (fh, 0);
16}
17
18#define EV_STANDALONE 1
10#define EV_PROTOTYPES 1 19#define EV_PROTOTYPES 1
20#define EV_USE_NANOSLEEP EV_USE_MONOTONIC
21#define EV_H <ev.h>
22#define EV_CONFIG_H error
11#include "EV/EVAPI.h" 23#include "EV/EVAPI.h"
12 24
25#define EV_SELECT_IS_WINSOCKET 0
26#ifdef _WIN32
27# define EV_SELECT_USE_FD_SET 0
28# define NFDBITS PERL_NFDBITS
29# define fd_mask Perl_fd_mask
30#endif
31/* due to bugs in OS X we have to use libev/ explicitly here */
13#include "libev/ev.c" 32#include "libev/ev.c"
14 33
34#if !defined(_WIN32) && !defined(_MINIX)
35# include <pthread.h>
36#endif
37
38#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop))
39#define e_flags(w) ((ev_watcher *)(w))->e_flags
40#define e_self(w) ((ev_watcher *)(w))->self
41#define e_fh(w) ((ev_watcher *)(w))->fh
42#define e_data(w) ((ev_watcher *)(w))->data
43
44#define WFLAG_KEEPALIVE 1
45#define WFLAG_UNREFED 2 /* has been unref'ed */
46
47#define UNREF(w) \
48 if (!(e_flags (w) & (WFLAG_KEEPALIVE | WFLAG_UNREFED)) \
49 && ev_is_active (w)) \
50 { \
51 ev_unref (e_loop (w)); \
52 e_flags (w) |= WFLAG_UNREFED; \
53 }
54
55#define REF(w) \
56 if (e_flags (w) & WFLAG_UNREFED) \
57 { \
58 e_flags (w) &= ~WFLAG_UNREFED; \
59 ev_ref (e_loop (w)); \
60 }
61
62#define START(type,w) \
63 do { \
64 ev_ ## type ## _start (e_loop (w), w); \
65 UNREF (w); \
66 } while (0)
67
68#define STOP(type,w) \
69 do { \
70 REF (w); \
71 ev_ ## type ## _stop (e_loop (w), w); \
72 } while (0)
73
74#define RESET(type,w,seta) \
75 do { \
76 int active = ev_is_active (w); \
77 if (active) STOP (type, w); \
78 ev_ ## type ## _set seta; \
79 if (active) START (type, w); \
80 } while (0)
81
15typedef int Signal; 82typedef int Signal;
16 83
84/* horrible... */
85#define CHECK_SIGNAL_CAN_START(w) \
86 do { \
87 /* dive into the internals of libev to avoid aborting in libev */ \
88 if (signals [(w)->signum - 1].loop \
89 && signals [(w)->signum - 1].loop != e_loop (w)) \
90 croak ("unable to start signal watcher, signal %d already registered in another loop", w->signum); \
91 } while (0)
92
93#define START_SIGNAL(w) \
94 do { \
95 CHECK_SIGNAL_CAN_START (w); \
96 START (signal, w); \
97 } while (0) \
98
99#define RESET_SIGNAL(w,seta) \
100 do { \
101 int active = ev_is_active (w); \
102 if (active) STOP (signal, w); \
103 ev_ ## signal ## _set seta; \
104 if (active) START_SIGNAL (w); \
105 } while (0)
106
107static SV *default_loop_sv;
108
17static struct EVAPI evapi; 109static struct EVAPI evapi;
18 110
19static HV 111static HV
112 *stash_loop,
20 *stash_watcher, 113 *stash_watcher,
21 *stash_io, 114 *stash_io,
22 *stash_timer, 115 *stash_timer,
23 *stash_periodic, 116 *stash_periodic,
24 *stash_signal, 117 *stash_signal,
118 *stash_child,
119 *stash_stat,
25 *stash_idle, 120 *stash_idle,
26 *stash_prepare, 121 *stash_prepare,
27 *stash_check, 122 *stash_check,
28 *stash_child; 123 *stash_embed,
29 124 *stash_fork,
30static int 125 *stash_async;
31sv_signum (SV *sig)
32{
33 int signum;
34
35 SvGETMAGIC (sig);
36
37 for (signum = 1; signum < SIG_SIZE; ++signum)
38 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum]))
39 return signum;
40
41 if (SvIV (sig) > 0)
42 return SvIV (sig);
43
44 return -1;
45}
46 126
47///////////////////////////////////////////////////////////////////////////// 127/////////////////////////////////////////////////////////////////////////////
48// Event 128// Event
49 129
50static void e_cb (struct ev_watcher *w, int revents); 130static void e_cb (EV_P_ ev_watcher *w, int revents);
51 131
52static int 132void *
53sv_fileno (SV *fh)
54{
55 SvGETMAGIC (fh);
56
57 if (SvROK (fh))
58 fh = SvRV (fh);
59
60 if (SvTYPE (fh) == SVt_PVGV)
61 return PerlIO_fileno (IoIFP (sv_2io (fh)));
62
63 if ((SvIV (fh) >= 0) && (SvIV (fh) < 0x7ffffff))
64 return SvIV (fh);
65
66 return -1;
67}
68
69static void *
70e_new (int size, SV *cb_sv) 133e_new (int size, SV *cb_sv, SV *loop)
71{ 134{
135 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0;
72 struct ev_watcher *w; 136 ev_watcher *w;
73 SV *self = NEWSV (0, size); 137 SV *self = NEWSV (0, size);
74 SvPOK_only (self); 138 SvPOK_only (self);
75 SvCUR_set (self, size); 139 SvCUR_set (self, size);
76 140
77 w = (struct ev_watcher *)SvPVX (self); 141 w = (ev_watcher *)SvPVX (self);
78 142
79 ev_watcher_init (w, e_cb); 143 ev_init (w, cv ? e_cb : 0);
80 144
145 w->loop = SvREFCNT_inc (SvRV (loop));
146 w->e_flags = WFLAG_KEEPALIVE;
147 w->data = 0;
81 w->fh = 0; 148 w->fh = 0;
82 w->cb_sv = newSVsv (cb_sv); 149 w->cb_sv = SvREFCNT_inc (cv);
83 w->self = self; 150 w->self = self;
84 151
85 return (void *)w; 152 return (void *)w;
86} 153}
87 154
88static void * 155static void
89e_destroy (void *w_) 156e_destroy (void *w_)
90{ 157{
91 struct ev_watcher *w = w_; 158 ev_watcher *w = (ev_watcher *)w_;
92 159
160 SvREFCNT_dec (w->loop ); w->loop = 0;
93 SvREFCNT_dec (w->fh ); w->fh = 0; 161 SvREFCNT_dec (w->fh ); w->fh = 0;
94 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 162 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
163 SvREFCNT_dec (w->data ); w->data = 0;
95} 164}
96 165
97static SV * 166static SV *
98e_bless (struct ev_watcher *w, HV *stash) 167e_bless (ev_watcher *w, HV *stash)
99{ 168{
100 SV *rv; 169 SV *rv;
101 170
102 if (SvOBJECT (w->self)) 171 if (SvOBJECT (w->self))
103 rv = newRV_inc (w->self); 172 rv = newRV_inc (w->self);
109 } 178 }
110 179
111 return rv; 180 return rv;
112} 181}
113 182
183static SV *sv_self_cache, *sv_events_cache;
184
114static void 185static void
115e_cb (struct ev_watcher *w, int revents) 186e_cb (EV_P_ ev_watcher *w, int revents)
116{ 187{
117 dSP; 188 dSP;
118 I32 mark = SP - PL_stack_base; 189 I32 mark = SP - PL_stack_base;
119 SV *sv_self, *sv_events, *sv_status = 0; 190 SV *sv_self, *sv_events;
120 static SV *sv_events_cache;
121 191
192 /* libev might have stopped the watcher */
193 if (expect_false (w->e_flags & WFLAG_UNREFED)
194 && !ev_is_active (w))
195 REF (w);
196
197 if (expect_true (sv_self_cache))
198 {
199 sv_self = sv_self_cache; sv_self_cache = 0;
200 SvRV_set (sv_self, SvREFCNT_inc_NN (w->self));
201 }
202 else
203 {
122 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */ 204 sv_self = newRV_inc (w->self); /* e_self (w) MUST be blessed by now */
205 SvREADONLY_on (sv_self);
206 }
207
208 if (expect_true (sv_events_cache))
209 {
210 sv_events = sv_events_cache; sv_events_cache = 0;
211 SvIV_set (sv_events, revents);
212 }
213 else
214 {
215 sv_events = newSViv (revents);
216 SvREADONLY_on (sv_events);
217 }
218
219 PUSHMARK (SP);
220 EXTEND (SP, 2);
221 PUSHs (sv_self);
222 PUSHs (sv_events);
223
224 PUTBACK;
225 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
226
227 if (expect_false (SvREFCNT (sv_self) != 1 || sv_self_cache))
228 SvREFCNT_dec (sv_self);
229 else
230 {
231 SvREFCNT_dec (SvRV (sv_self));
232 SvRV_set (sv_self, &PL_sv_undef);
233 sv_self_cache = sv_self;
234 }
235
236 if (expect_false (SvREFCNT (sv_events) != 1 || sv_events_cache))
237 SvREFCNT_dec (sv_events);
238 else
239 sv_events_cache = sv_events;
240
241 if (expect_false (SvTRUE (ERRSV)))
242 {
243 SPAGAIN;
244 PUSHMARK (SP);
245 PUTBACK;
246 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
247 }
248
249 SP = PL_stack_base + mark;
250 PUTBACK;
251}
252
253static void
254e_once_cb (int revents, void *arg)
255{
256 dSP;
257 I32 mark = SP - PL_stack_base;
258 SV *sv_events;
123 259
124 if (sv_events_cache) 260 if (sv_events_cache)
125 { 261 {
126 sv_events = sv_events_cache; sv_events_cache = 0; 262 sv_events = sv_events_cache; sv_events_cache = 0;
127 SvIV_set (sv_events, revents); 263 SvIV_set (sv_events, revents);
128 } 264 }
129 else 265 else
130 sv_events = newSViv (revents); 266 sv_events = newSViv (revents);
131 267
132 PUSHMARK (SP); 268 PUSHMARK (SP);
133 EXTEND (SP, 2);
134 PUSHs (sv_self);
135 PUSHs (sv_events); 269 XPUSHs (sv_events);
136
137 if (revents & EV_CHILD)
138 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
139 270
140 PUTBACK; 271 PUTBACK;
141 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 272 call_sv ((SV *)arg, G_DISCARD | G_VOID | G_EVAL);
142 SP = PL_stack_base + mark; PUTBACK;
143 273
144 SvREFCNT_dec (sv_self); 274 SvREFCNT_dec ((SV *)arg);
145 SvREFCNT_dec (sv_status);
146 275
147 if (sv_events_cache) 276 if (sv_events_cache)
148 SvREFCNT_dec (sv_events); 277 SvREFCNT_dec (sv_events);
149 else 278 else
150 sv_events_cache = sv_events; 279 sv_events_cache = sv_events;
280
281 if (SvTRUE (ERRSV))
282 {
283 SPAGAIN;
284 PUSHMARK (SP);
285 PUTBACK;
286 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
287 }
288
289 SP = PL_stack_base + mark;
290 PUTBACK;
291}
292
293static ev_tstamp
294e_periodic_cb (ev_periodic *w, ev_tstamp now)
295{
296 ev_tstamp retval;
297 int count;
298 dSP;
299
300 ENTER;
301 SAVETMPS;
302
303 PUSHMARK (SP);
304 EXTEND (SP, 2);
305 PUSHs (newRV_inc (e_self (w))); /* e_self (w) MUST be blessed by now */
306 PUSHs (newSVnv (now));
307
308 PUTBACK;
309 count = call_sv (w->fh, G_SCALAR | G_EVAL);
310 SPAGAIN;
151 311
152 if (SvTRUE (ERRSV)) 312 if (SvTRUE (ERRSV))
153 { 313 {
154 PUSHMARK (SP); 314 PUSHMARK (SP);
155 PUTBACK; 315 PUTBACK;
156 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 316 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
157 SP = PL_stack_base + mark; PUTBACK; 317 SPAGAIN;
158 } 318 }
159}
160 319
161#if 0 320 if (count > 0)
162/////////////////////////////////////////////////////////////////////////////
163// DNS
164
165static void
166dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
167{
168 dSP;
169 SV *cb = (SV *)arg;
170
171 ENTER;
172 SAVETMPS;
173 PUSHMARK (SP);
174 EXTEND (SP, count + 3);
175 PUSHs (sv_2mortal (newSViv (result)));
176
177 if (result == DNS_ERR_NONE && ttl >= 0)
178 { 321 {
179 int i; 322 retval = SvNV (TOPs);
180 323
181 PUSHs (sv_2mortal (newSViv (type))); 324 if (retval < now)
182 PUSHs (sv_2mortal (newSViv (ttl))); 325 retval = now;
183
184 for (i = 0; i < count; ++i)
185 switch (type)
186 {
187 case DNS_IPv6_AAAA:
188 PUSHs (sv_2mortal (newSVpvn (i * 16 + (char *)addresses, 16)));
189 break;
190 case DNS_IPv4_A:
191 PUSHs (sv_2mortal (newSVpvn (i * 4 + (char *)addresses, 4)));
192 break;
193 case DNS_PTR:
194 PUSHs (sv_2mortal (newSVpv (*(char **)addresses, 0)));
195 break;
196 }
197 } 326 }
198 327 else
199 PUTBACK; 328 retval = now;
200 call_sv (sv_2mortal (cb), G_DISCARD | G_VOID | G_EVAL);
201 329
202 FREETMPS; 330 FREETMPS;
203
204 if (SvTRUE (ERRSV))
205 {
206 PUSHMARK (SP);
207 PUTBACK;
208 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
209 }
210
211 LEAVE; 331 LEAVE;
332
333 return retval;
212} 334}
213#endif
214 335
215#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 336#define CHECK_REPEAT(repeat) if (repeat < 0.) \
216 croak (# repeat " value must be >= 0"); 337 croak (# repeat " value must be >= 0");
217 338
218#define CHECK_FD(fh,fd) if ((fd) < 0) \ 339#define CHECK_FD(fh,fd) if ((fd) < 0) \
219 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh)); 340 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
220 341
342#define CHECK_SIG(sv,num) if ((num) < 0) \
343 croak ("illegal signal number or name: %s", SvPV_nolen (sv));
344
221///////////////////////////////////////////////////////////////////////////// 345/////////////////////////////////////////////////////////////////////////////
222// XS interface functions 346// XS interface functions
223 347
224MODULE = EV PACKAGE = EV PREFIX = ev_ 348MODULE = EV PACKAGE = EV PREFIX = ev_
225 349
226PROTOTYPES: ENABLE 350PROTOTYPES: ENABLE
227 351
228BOOT: 352BOOT:
229{ 353{
230 int i;
231 HV *stash = gv_stashpv ("EV", 1); 354 HV *stash = gv_stashpv ("EV", 1);
232 355
233 static const struct { 356 static const struct {
234 const char *name; 357 const char *name;
235 IV iv; 358 IV iv;
236 } *civ, const_iv[] = { 359 } *civ, const_iv[] = {
237# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 360# define const_iv(pfx, name) { # name, (IV) pfx ## name },
361 const_iv (EV_, MINPRI)
362 const_iv (EV_, MAXPRI)
363
238 const_iv (EV_, UNDEF) 364 const_iv (EV_, UNDEF)
239 const_iv (EV_, NONE) 365 const_iv (EV_, NONE)
240 const_iv (EV_, TIMEOUT)
241 const_iv (EV_, READ) 366 const_iv (EV_, READ)
242 const_iv (EV_, WRITE) 367 const_iv (EV_, WRITE)
368 const_iv (EV_, IO)
369 const_iv (EV_, TIMEOUT) /* deprecated */
370 const_iv (EV_, TIMER)
371 const_iv (EV_, PERIODIC)
243 const_iv (EV_, SIGNAL) 372 const_iv (EV_, SIGNAL)
373 const_iv (EV_, CHILD)
374 const_iv (EV_, STAT)
244 const_iv (EV_, IDLE) 375 const_iv (EV_, IDLE)
376 const_iv (EV_, PREPARE)
245 const_iv (EV_, CHECK) 377 const_iv (EV_, CHECK)
378 const_iv (EV_, EMBED)
379 const_iv (EV_, FORK)
380 const_iv (EV_, ASYNC)
381 const_iv (EV_, CUSTOM)
246 const_iv (EV_, ERROR) 382 const_iv (EV_, ERROR)
247 383
384 const_iv (EV, LOOP_NONBLOCK)
248 const_iv (EV, LOOP_ONESHOT) 385 const_iv (EV, LOOP_ONESHOT)
386
387 const_iv (EV, UNLOOP_CANCEL)
249 const_iv (EV, LOOP_NONBLOCK) 388 const_iv (EV, UNLOOP_ONE)
389 const_iv (EV, UNLOOP_ALL)
250 390
251 const_iv (EV, METHOD_NONE)
252 const_iv (EV, METHOD_SELECT) 391 const_iv (EV, BACKEND_SELECT)
392 const_iv (EV, BACKEND_POLL)
253 const_iv (EV, METHOD_EPOLL) 393 const_iv (EV, BACKEND_EPOLL)
394 const_iv (EV, BACKEND_KQUEUE)
395 const_iv (EV, BACKEND_DEVPOLL)
396 const_iv (EV, BACKEND_PORT)
397 const_iv (EV, BACKEND_ALL)
398 const_iv (EV, FLAG_AUTO)
399 const_iv (EV, FLAG_FORKCHECK)
400 const_iv (EV, FLAG_SIGNALFD)
401 const_iv (EV, FLAG_NOENV)
402 const_iv (EV, FLAG_NOSIGFD) /* compatibility, always 0 */
403 const_iv (EV, FLAG_NOINOTIFY)
404
405 const_iv (EV_, VERSION_MAJOR)
406 const_iv (EV_, VERSION_MINOR)
254 }; 407 };
255 408
256 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 409 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
257 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 410 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
258 411
412 stash_loop = gv_stashpv ("EV::Loop" , 1);
259 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 413 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
260 stash_io = gv_stashpv ("EV::Io" , 1); 414 stash_io = gv_stashpv ("EV::IO" , 1);
261 stash_timer = gv_stashpv ("EV::Timer" , 1); 415 stash_timer = gv_stashpv ("EV::Timer" , 1);
262 stash_periodic = gv_stashpv ("EV::Periodic", 1); 416 stash_periodic = gv_stashpv ("EV::Periodic", 1);
263 stash_signal = gv_stashpv ("EV::Signal" , 1); 417 stash_signal = gv_stashpv ("EV::Signal" , 1);
264 stash_idle = gv_stashpv ("EV::Idle" , 1); 418 stash_idle = gv_stashpv ("EV::Idle" , 1);
265 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 419 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
266 stash_check = gv_stashpv ("EV::Check" , 1); 420 stash_check = gv_stashpv ("EV::Check" , 1);
267 stash_child = gv_stashpv ("EV::Child" , 1); 421 stash_child = gv_stashpv ("EV::Child" , 1);
422 stash_embed = gv_stashpv ("EV::Embed" , 1);
423 stash_stat = gv_stashpv ("EV::Stat" , 1);
424 stash_fork = gv_stashpv ("EV::Fork" , 1);
425 stash_async = gv_stashpv ("EV::Async" , 1);
268 426
269 { 427 {
270 SV *sv = perl_get_sv ("EV::API", TRUE); 428 SV *sv = perl_get_sv ("EV::API", TRUE);
271 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 429 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
272 430
273 /* the poor man's shared library emulator */ 431 /* the poor man's shared library emulator */
274 evapi.ver = EV_API_VERSION; 432 evapi.ver = EV_API_VERSION;
275 evapi.rev = EV_API_REVISION; 433 evapi.rev = EV_API_REVISION;
276 evapi.sv_fileno = sv_fileno; 434 evapi.sv_fileno = sv_fileno;
277 evapi.sv_signum = sv_signum; 435 evapi.sv_signum = s_signum;
278 evapi.now = &ev_now; 436 evapi.supported_backends = ev_supported_backends ();
279 evapi.method = &ev_method; 437 evapi.recommended_backends = ev_recommended_backends ();
280 evapi.loop_done = &ev_loop_done; 438 evapi.embeddable_backends = ev_embeddable_backends ();
281 evapi.time = ev_time; 439 evapi.time_ = ev_time;
440 evapi.sleep_ = ev_sleep;
441 evapi.loop_new = ev_loop_new;
442 evapi.loop_destroy = ev_loop_destroy;
443 evapi.loop_fork = ev_loop_fork;
444 evapi.iteration = ev_iteration;
445 evapi.depth = ev_depth;
446 evapi.set_userdata = ev_set_userdata;
447 evapi.userdata = ev_userdata;
448 evapi.now = ev_now;
449 evapi.now_update = ev_now_update;
450 evapi.suspend = ev_suspend;
451 evapi.resume = ev_resume;
452 evapi.backend = ev_backend;
453 evapi.unloop = ev_unloop;
454 evapi.invoke_pending = ev_invoke_pending;
455 evapi.pending_count = ev_pending_count;
456 evapi.verify = ev_verify;
457 evapi.set_loop_release_cb = ev_set_loop_release_cb;
458 evapi.set_invoke_pending_cb= ev_set_invoke_pending_cb;
459 evapi.ref = ev_ref;
460 evapi.unref = ev_unref;
282 evapi.loop = ev_loop; 461 evapi.loop = ev_loop;
283 evapi.once = ev_once; 462 evapi.once = ev_once;
284 evapi.io_start = ev_io_start; 463 evapi.io_start = ev_io_start;
285 evapi.io_stop = ev_io_stop; 464 evapi.io_stop = ev_io_stop;
286 evapi.timer_start = ev_timer_start; 465 evapi.timer_start = ev_timer_start;
287 evapi.timer_stop = ev_timer_stop; 466 evapi.timer_stop = ev_timer_stop;
288 evapi.timer_again = ev_timer_again; 467 evapi.timer_again = ev_timer_again;
468 evapi.timer_remaining = ev_timer_remaining;
289 evapi.periodic_start = ev_periodic_start; 469 evapi.periodic_start = ev_periodic_start;
290 evapi.periodic_stop = ev_periodic_stop; 470 evapi.periodic_stop = ev_periodic_stop;
291 evapi.signal_start = ev_signal_start; 471 evapi.signal_start = ev_signal_start;
292 evapi.signal_stop = ev_signal_stop; 472 evapi.signal_stop = ev_signal_stop;
293 evapi.idle_start = ev_idle_start; 473 evapi.idle_start = ev_idle_start;
294 evapi.idle_stop = ev_idle_stop; 474 evapi.idle_stop = ev_idle_stop;
295 evapi.prepare_start = ev_prepare_start; 475 evapi.prepare_start = ev_prepare_start;
296 evapi.prepare_stop = ev_prepare_stop; 476 evapi.prepare_stop = ev_prepare_stop;
297 evapi.check_start = ev_check_start; 477 evapi.check_start = ev_check_start;
298 evapi.check_stop = ev_check_stop; 478 evapi.check_stop = ev_check_stop;
479#if EV_CHILD_ENABLE
299 evapi.child_start = ev_child_start; 480 evapi.child_start = ev_child_start;
300 evapi.child_stop = ev_child_stop; 481 evapi.child_stop = ev_child_stop;
482#endif
483 evapi.stat_start = ev_stat_start;
484 evapi.stat_stop = ev_stat_stop;
485 evapi.stat_stat = ev_stat_stat;
486 evapi.embed_start = ev_embed_start;
487 evapi.embed_stop = ev_embed_stop;
488 evapi.embed_sweep = ev_embed_sweep;
489 evapi.fork_start = ev_fork_start;
490 evapi.fork_stop = ev_fork_stop;
491 evapi.async_start = ev_async_start;
492 evapi.async_stop = ev_async_stop;
493 evapi.async_send = ev_async_send;
494 evapi.clear_pending = ev_clear_pending;
495 evapi.invoke = ev_invoke;
301 496
302 sv_setiv (sv, (IV)&evapi); 497 sv_setiv (sv, (IV)&evapi);
303 SvREADONLY_on (sv); 498 SvREADONLY_on (sv);
304 } 499 }
305 500#if !defined(_WIN32) && !defined(_MINIX)
306 pthread_atfork (ev_fork_prepare, ev_fork_parent, ev_fork_child); 501 pthread_atfork (0, 0, ev_default_fork);
502#endif
307} 503}
504
505SV *ev_default_loop (unsigned int flags = 0)
506 CODE:
507{
508 if (!default_loop_sv)
509 {
510 evapi.default_loop = ev_default_loop (flags);
511
512 if (!evapi.default_loop)
513 XSRETURN_UNDEF;
514
515 default_loop_sv = sv_bless (newRV_noinc (newSViv (PTR2IV (evapi.default_loop))), stash_loop);
516 }
517
518 RETVAL = newSVsv (default_loop_sv);
519}
520 OUTPUT:
521 RETVAL
522
523void ev_default_destroy ()
524 CODE:
525 ev_default_destroy ();
526 SvREFCNT_dec (default_loop_sv);
527 default_loop_sv = 0;
528
529unsigned int ev_supported_backends ()
530
531unsigned int ev_recommended_backends ()
532
533unsigned int ev_embeddable_backends ()
534
535void ev_sleep (NV interval)
536
537NV ev_time ()
308 538
309NV ev_now () 539NV ev_now ()
310 CODE: 540 C_ARGS: evapi.default_loop
311 RETVAL = ev_now;
312 OUTPUT:
313 RETVAL
314 541
315int ev_method () 542void ev_now_update ()
316 CODE: 543 C_ARGS: evapi.default_loop
317 RETVAL = ev_method;
318 OUTPUT:
319 RETVAL
320 544
321NV ev_time () 545void ev_suspend ()
546 C_ARGS: evapi.default_loop
322 547
323void ev_init (int flags = 0) 548void ev_resume ()
549 C_ARGS: evapi.default_loop
550
551unsigned int ev_backend ()
552 C_ARGS: evapi.default_loop
553
554void ev_verify ()
555 C_ARGS: evapi.default_loop
556
557unsigned int ev_iteration ()
558 C_ARGS: evapi.default_loop
559
560unsigned int ev_depth ()
561 C_ARGS: evapi.default_loop
562
563void ev_set_io_collect_interval (NV interval)
564 C_ARGS: evapi.default_loop, interval
565
566void ev_set_timeout_collect_interval (NV interval)
567 C_ARGS: evapi.default_loop, interval
324 568
325void ev_loop (int flags = 0) 569void ev_loop (int flags = 0)
570 C_ARGS: evapi.default_loop, flags
326 571
327void ev_loop_done (int value = 1) 572void ev_unloop (int how = EVUNLOOP_ONE)
328 CODE: 573 C_ARGS: evapi.default_loop, how
329 ev_loop_done = value;
330 574
575void ev_feed_fd_event (int fd, int revents = EV_NONE)
576 C_ARGS: evapi.default_loop, fd, revents
577
578void ev_feed_signal_event (SV *signal)
579 CODE:
580{
581 Signal signum = s_signum (signal);
582 CHECK_SIG (signal, signum);
583
584 ev_feed_signal_event (evapi.default_loop, signum);
585}
586
587unsigned int ev_pending_count ()
588 C_ARGS: evapi.default_loop
589
590void ev_invoke_pending ()
591 C_ARGS: evapi.default_loop
592
331struct ev_io *io (SV *fh, int events, SV *cb) 593ev_io *io (SV *fh, int events, SV *cb)
332 ALIAS: 594 ALIAS:
333 io_ns = 1 595 io_ns = 1
596 _ae_io = 2
334 CODE: 597 CODE:
335{ 598{
336 int fd = sv_fileno (fh); 599 int fd = s_fileno (fh, events & EV_WRITE);
337 CHECK_FD (fh, fd); 600 CHECK_FD (fh, fd);
338 601
602 if (ix == 2)
603 {
604 ix = 0;
605 events = events ? EV_WRITE : EV_READ;
606 }
607
339 RETVAL = e_new (sizeof (struct ev_io), cb); 608 RETVAL = e_new (sizeof (ev_io), cb, default_loop_sv);
340 RETVAL->fh = newSVsv (fh); 609 e_fh (RETVAL) = newSVsv (fh);
341 ev_io_set (RETVAL, fd, events); 610 ev_io_set (RETVAL, fd, events);
342 if (!ix) ev_io_start (RETVAL); 611 if (!ix) START (io, RETVAL);
343} 612}
344 OUTPUT: 613 OUTPUT:
345 RETVAL 614 RETVAL
346 615
347struct ev_timer *timer (NV after, NV repeat, SV *cb) 616ev_timer *timer (NV after, NV repeat, SV *cb)
348 ALIAS: 617 ALIAS:
349 timer_ns = 1 618 timer_ns = 1
350 INIT: 619 INIT:
351 CHECK_REPEAT (repeat); 620 CHECK_REPEAT (repeat);
352 CODE: 621 CODE:
353 RETVAL = e_new (sizeof (struct ev_timer), cb); 622 RETVAL = e_new (sizeof (ev_timer), cb, default_loop_sv);
354 ev_timer_set (RETVAL, after, repeat); 623 ev_timer_set (RETVAL, after, repeat);
355 if (!ix) ev_timer_start (RETVAL); 624 if (!ix) START (timer, RETVAL);
356 OUTPUT: 625 OUTPUT:
357 RETVAL 626 RETVAL
358 627
359struct ev_periodic *periodic (NV at, NV interval, SV *cb) 628SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
360 ALIAS: 629 ALIAS:
361 periodic_ns = 1 630 periodic_ns = 1
362 INIT: 631 INIT:
363 CHECK_REPEAT (interval); 632 CHECK_REPEAT (interval);
364 CODE: 633 CODE:
365 RETVAL = e_new (sizeof (struct ev_periodic), cb); 634{
366 ev_periodic_set (RETVAL, at, interval); 635 ev_periodic *w;
367 if (!ix) ev_periodic_start (RETVAL); 636 w = e_new (sizeof (ev_periodic), cb, default_loop_sv);
637 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
638 ev_periodic_set (w, at, interval, e_fh (w) ? e_periodic_cb : 0);
639 RETVAL = e_bless ((ev_watcher *)w, stash_periodic);
640 if (!ix) START (periodic, w);
641}
368 OUTPUT: 642 OUTPUT:
369 RETVAL 643 RETVAL
370 644
371struct ev_signal *signal (Signal signum, SV *cb) 645ev_signal *signal (SV *signal, SV *cb)
372 ALIAS: 646 ALIAS:
373 signal_ns = 1 647 signal_ns = 1
374 CODE: 648 CODE:
649{
650 Signal signum = s_signum (signal);
651 CHECK_SIG (signal, signum);
652
375 RETVAL = e_new (sizeof (struct ev_signal), cb); 653 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv);
376 ev_signal_set (RETVAL, signum); 654 ev_signal_set (RETVAL, signum);
377 if (!ix) ev_signal_start (RETVAL); 655 if (!ix) START_SIGNAL (RETVAL);
656}
378 OUTPUT: 657 OUTPUT:
379 RETVAL 658 RETVAL
380 659
381struct ev_idle *idle (SV *cb) 660ev_idle *idle (SV *cb)
382 ALIAS: 661 ALIAS:
383 idle_ns = 1 662 idle_ns = 1
384 CODE: 663 CODE:
385 RETVAL = e_new (sizeof (struct ev_idle), cb); 664 RETVAL = e_new (sizeof (ev_idle), cb, default_loop_sv);
386 ev_idle_set (RETVAL); 665 ev_idle_set (RETVAL);
387 if (!ix) ev_idle_start (RETVAL); 666 if (!ix) START (idle, RETVAL);
388 OUTPUT: 667 OUTPUT:
389 RETVAL 668 RETVAL
390 669
391struct ev_prepare *prepare (SV *cb) 670ev_prepare *prepare (SV *cb)
392 ALIAS: 671 ALIAS:
393 prepare_ns = 1 672 prepare_ns = 1
394 CODE: 673 CODE:
395 RETVAL = e_new (sizeof (struct ev_prepare), cb); 674 RETVAL = e_new (sizeof (ev_prepare), cb, default_loop_sv);
396 ev_prepare_set (RETVAL); 675 ev_prepare_set (RETVAL);
397 if (!ix) ev_prepare_start (RETVAL); 676 if (!ix) START (prepare, RETVAL);
398 OUTPUT: 677 OUTPUT:
399 RETVAL 678 RETVAL
400 679
401struct ev_check *check (SV *cb) 680ev_check *check (SV *cb)
402 ALIAS: 681 ALIAS:
403 check_ns = 1 682 check_ns = 1
404 CODE: 683 CODE:
405 RETVAL = e_new (sizeof (struct ev_check), cb); 684 RETVAL = e_new (sizeof (ev_check), cb, default_loop_sv);
406 ev_check_set (RETVAL); 685 ev_check_set (RETVAL);
407 if (!ix) ev_check_start (RETVAL); 686 if (!ix) START (check, RETVAL);
408 OUTPUT: 687 OUTPUT:
409 RETVAL 688 RETVAL
410 689
690ev_fork *fork (SV *cb)
691 ALIAS:
692 fork_ns = 1
693 CODE:
694 RETVAL = e_new (sizeof (ev_fork), cb, default_loop_sv);
695 ev_fork_set (RETVAL);
696 if (!ix) START (fork, RETVAL);
697 OUTPUT:
698 RETVAL
699
700
411struct ev_child *child (int pid, SV *cb) 701ev_child *child (int pid, int trace, SV *cb)
412 ALIAS: 702 ALIAS:
413 check_ns = 1 703 child_ns = 1
414 CODE: 704 CODE:
415 RETVAL = e_new (sizeof (struct ev_check), cb); 705#if EV_CHILD_ENABLE
706 RETVAL = e_new (sizeof (ev_child), cb, default_loop_sv);
416 ev_child_set (RETVAL, pid); 707 ev_child_set (RETVAL, pid, trace);
417 if (!ix) ev_child_start (RETVAL); 708 if (!ix) START (child, RETVAL);
709#else
710 croak ("EV::child watchers not supported on this platform");
711#endif
418 OUTPUT: 712 OUTPUT:
419 RETVAL 713 RETVAL
420 714
715
716ev_stat *stat (SV *path, NV interval, SV *cb)
717 ALIAS:
718 stat_ns = 1
719 CODE:
720 RETVAL = e_new (sizeof (ev_stat), cb, default_loop_sv);
721 e_fh (RETVAL) = newSVsv (path);
722 ev_stat_set (RETVAL, SvPVbyte_nolen (e_fh (RETVAL)), interval);
723 if (!ix) START (stat, RETVAL);
724 OUTPUT:
725 RETVAL
726
727ev_embed *embed (struct ev_loop *loop, SV *cb = 0)
728 ALIAS:
729 embed_ns = 1
730 CODE:
731{
732 if (!(ev_backend (loop) & ev_embeddable_backends ()))
733 croak ("passed loop is not embeddable via EV::embed,");
734
735 RETVAL = e_new (sizeof (ev_embed), cb, default_loop_sv);
736 e_fh (RETVAL) = newSVsv (ST (0));
737 ev_embed_set (RETVAL, loop);
738 if (!ix) START (embed, RETVAL);
739}
740 OUTPUT:
741 RETVAL
742
743ev_async *async (SV *cb)
744 ALIAS:
745 async_ns = 1
746 CODE:
747 RETVAL = e_new (sizeof (ev_async), cb, default_loop_sv);
748 ev_async_set (RETVAL);
749 if (!ix) START (async, RETVAL);
750 OUTPUT:
751 RETVAL
752
753void once (SV *fh, int events, SV *timeout, SV *cb)
754 CODE:
755 ev_once (
756 evapi.default_loop,
757 s_fileno (fh, events & EV_WRITE), events,
758 SvOK (timeout) ? SvNV (timeout) : -1.,
759 e_once_cb,
760 newSVsv (cb)
761 );
421 762
422PROTOTYPES: DISABLE 763PROTOTYPES: DISABLE
423 764
424MODULE = EV PACKAGE = EV::Watcher PREFIX = ev_ 765MODULE = EV PACKAGE = EV::Watcher PREFIX = ev_
425 766
426int ev_is_active (struct ev_watcher *w) 767int ev_is_active (ev_watcher *w)
427 768
769int ev_is_pending (ev_watcher *w)
770
771void ev_invoke (ev_watcher *w, int revents = EV_NONE)
772 C_ARGS: e_loop (w), w, revents
773
774int ev_clear_pending (ev_watcher *w)
775 C_ARGS: e_loop (w), w
776
777void ev_feed_event (ev_watcher *w, int revents = EV_NONE)
778 C_ARGS: e_loop (w), w, revents
779
780int keepalive (ev_watcher *w, int new_value = 0)
781 CODE:
782{
783 RETVAL = w->e_flags & WFLAG_KEEPALIVE;
784 new_value = new_value ? WFLAG_KEEPALIVE : 0;
785
786 if (items > 1 && ((new_value ^ w->e_flags) & WFLAG_KEEPALIVE))
787 {
788 w->e_flags = (w->e_flags & ~WFLAG_KEEPALIVE) | new_value;
789 REF (w);
790 UNREF (w);
791 }
792}
793 OUTPUT:
794 RETVAL
795
428SV *cb (struct ev_watcher *w, SV *new_cb = 0) 796SV *cb (ev_watcher *w, SV *new_cb = 0)
429 CODE: 797 CODE:
430{ 798{
431 RETVAL = newSVsv (w->cb_sv);
432
433 if (items > 1)
434 sv_setsv (w->cb_sv, new_cb);
435}
436 OUTPUT:
437 RETVAL
438
439void trigger (struct ev_watcher *w, int revents = EV_NONE)
440 CODE:
441 w->cb (w, revents);
442
443MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
444
445void ev_io_start (struct ev_io *w)
446
447void ev_io_stop (struct ev_io *w)
448
449void DESTROY (struct ev_io *w)
450 CODE:
451 ev_io_stop (w);
452 e_destroy (w);
453
454void set (struct ev_io *w, SV *fh, int events)
455 CODE:
456{
457 int active = w->active;
458 int fd = sv_fileno (fh);
459 CHECK_FD (fh, fd);
460
461 if (active) ev_io_stop (w);
462
463 sv_setsv (w->fh, fh);
464 ev_io_set (w, fd, events);
465
466 if (active) ev_io_start (w);
467}
468
469SV *fh (struct ev_io *w, SV *new_fh = 0)
470 CODE:
471{
472 RETVAL = newSVsv (w->fh);
473
474 if (items > 1) 799 if (items > 1)
475 { 800 {
476 int active = w->active; 801 new_cb = s_get_cv_croak (new_cb);
477 if (active) ev_io_stop (w); 802 RETVAL = newRV_noinc (w->cb_sv);
478 803 w->cb_sv = SvREFCNT_inc (new_cb);
479 sv_setsv (w->fh, new_fh);
480 ev_io_set (w, sv_fileno (w->fh), w->events);
481
482 if (active) ev_io_start (w);
483 } 804 }
805 else
806 RETVAL = newRV_inc (w->cb_sv);
484} 807}
485 OUTPUT: 808 OUTPUT:
486 RETVAL 809 RETVAL
487 810
488short events (struct ev_io *w, short new_events = EV_UNDEF) 811SV *data (ev_watcher *w, SV *new_data = 0)
489 CODE: 812 CODE:
490{ 813{
491 RETVAL = w->events; 814 RETVAL = w->data ? newSVsv (w->data) : &PL_sv_undef;
492 815
493 if (items > 1) 816 if (items > 1)
494 { 817 {
495 int active = w->active; 818 SvREFCNT_dec (w->data);
496 if (active) ev_io_stop (w); 819 w->data = newSVsv (new_data);
497
498 ev_io_set (w, w->fd, new_events);
499
500 if (active) ev_io_start (w);
501 } 820 }
502} 821}
503 OUTPUT: 822 OUTPUT:
504 RETVAL 823 RETVAL
505 824
825SV *loop (ev_watcher *w)
826 CODE:
827 RETVAL = newRV_inc (w->loop);
828 OUTPUT:
829 RETVAL
830
831int priority (ev_watcher *w, int new_priority = 0)
832 CODE:
833{
834 RETVAL = w->priority;
835
836 if (items > 1)
837 {
838 int active = ev_is_active (w);
839
840 if (active)
841 {
842 /* grrr. */
843 PUSHMARK (SP);
844 XPUSHs (ST (0));
845 PUTBACK;
846 call_method ("stop", G_DISCARD | G_VOID);
847 }
848
849 ev_set_priority (w, new_priority);
850
851 if (active)
852 {
853 PUSHMARK (SP);
854 XPUSHs (ST (0));
855 PUTBACK;
856 call_method ("start", G_DISCARD | G_VOID);
857 }
858 }
859}
860 OUTPUT:
861 RETVAL
862
863MODULE = EV PACKAGE = EV::IO PREFIX = ev_io_
864
865void ev_io_start (ev_io *w)
866 CODE:
867 START (io, w);
868
869void ev_io_stop (ev_io *w)
870 CODE:
871 STOP (io, w);
872
873void DESTROY (ev_io *w)
874 CODE:
875 STOP (io, w);
876 e_destroy (w);
877
878void set (ev_io *w, SV *fh, int events)
879 CODE:
880{
881 int fd = s_fileno (fh, events & EV_WRITE);
882 CHECK_FD (fh, fd);
883
884 sv_setsv (e_fh (w), fh);
885 RESET (io, w, (w, fd, events));
886}
887
888SV *fh (ev_io *w, SV *new_fh = 0)
889 CODE:
890{
891 if (items > 1)
892 {
893 int fd = s_fileno (new_fh, w->events & EV_WRITE);
894 CHECK_FD (new_fh, fd);
895
896 RETVAL = e_fh (w);
897 e_fh (w) = newSVsv (new_fh);
898
899 RESET (io, w, (w, fd, w->events));
900 }
901 else
902 RETVAL = newSVsv (e_fh (w));
903}
904 OUTPUT:
905 RETVAL
906
907int events (ev_io *w, int new_events = EV_UNDEF)
908 CODE:
909{
910 RETVAL = w->events;
911
912 if (items > 1)
913 RESET (io, w, (w, w->fd, new_events));
914}
915 OUTPUT:
916 RETVAL
917
506MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_ 918MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
507 919
508void ev_signal_start (struct ev_signal *w) 920void ev_signal_start (ev_signal *w)
921 CODE:
922 START_SIGNAL (w);
509 923
510void ev_signal_stop (struct ev_signal *w) 924void ev_signal_stop (ev_signal *w)
925 CODE:
926 STOP (signal, w);
511 927
512void DESTROY (struct ev_signal *w) 928void DESTROY (ev_signal *w)
513 CODE: 929 CODE:
514 ev_signal_stop (w); 930 STOP (signal, w);
515 e_destroy (w); 931 e_destroy (w);
516 932
517void set (struct ev_signal *w, SV *signal = 0) 933void set (ev_signal *w, SV *signal)
518 CODE: 934 CODE:
519{ 935{
520 Signal signum = sv_signum (signal); /* may croak here */ 936 Signal signum = s_signum (signal);
521 int active = w->active; 937 CHECK_SIG (signal, signum);
522 938
523 if (active) ev_signal_stop (w); 939 RESET_SIGNAL (w, (w, signum));
524 ev_signal_set (w, signum);
525 if (active) ev_signal_start (w);
526} 940}
527 941
528MODULE = EV PACKAGE = EV::Time 942int signal (ev_signal *w, SV *new_signal = 0)
943 CODE:
944{
945 RETVAL = w->signum;
946
947 if (items > 1)
948 {
949 Signal signum = s_signum (new_signal);
950 CHECK_SIG (new_signal, signum);
951
952 RESET_SIGNAL (w, (w, signum));
953 }
954}
955 OUTPUT:
956 RETVAL
529 957
530MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 958MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
531 959
532void ev_timer_start (struct ev_timer *w) 960void ev_timer_start (ev_timer *w)
533 INIT: 961 INIT:
534 CHECK_REPEAT (w->repeat); 962 CHECK_REPEAT (w->repeat);
963 CODE:
964 START (timer, w);
535 965
536void ev_timer_stop (struct ev_timer *w) 966void ev_timer_stop (ev_timer *w)
967 CODE:
968 STOP (timer, w);
537 969
538void ev_timer_again (struct ev_timer *w) 970void ev_timer_again (ev_timer *w)
539 INIT: 971 INIT:
540 CHECK_REPEAT (w->repeat); 972 CHECK_REPEAT (w->repeat);
973 CODE:
974 ev_timer_again (e_loop (w), w);
975 UNREF (w);
541 976
977NV ev_timer_remaining (ev_timer *w)
978 C_ARGS: e_loop (w), w
979
542void DESTROY (struct ev_timer *w) 980void DESTROY (ev_timer *w)
543 CODE: 981 CODE:
544 ev_timer_stop (w); 982 STOP (timer, w);
545 e_destroy (w); 983 e_destroy (w);
546 984
547void set (struct ev_timer *w, NV after, NV repeat = 0.) 985void set (ev_timer *w, NV after, NV repeat = 0.)
548 INIT: 986 INIT:
549 CHECK_REPEAT (repeat); 987 CHECK_REPEAT (repeat);
550 CODE: 988 CODE:
551{
552 int active = w->active;
553 if (active) ev_timer_stop (w);
554 ev_timer_set (w, after, repeat); 989 RESET (timer, w, (w, after, repeat));
555 if (active) ev_timer_start (w);
556}
557 990
558MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_ 991MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
559 992
560void ev_periodic_start (struct ev_periodic *w) 993void ev_periodic_start (ev_periodic *w)
561 INIT: 994 INIT:
562 CHECK_REPEAT (w->interval); 995 CHECK_REPEAT (w->interval);
996 CODE:
997 START (periodic, w);
563 998
564void ev_periodic_stop (struct ev_periodic *w) 999void ev_periodic_stop (ev_periodic *w)
1000 CODE:
1001 STOP (periodic, w);
565 1002
1003void ev_periodic_again (ev_periodic *w)
1004 CODE:
1005 ev_periodic_again (e_loop (w), w);
1006 UNREF (w);
1007
566void DESTROY (struct ev_periodic *w) 1008void DESTROY (ev_periodic *w)
567 CODE: 1009 CODE:
568 ev_periodic_stop (w); 1010 STOP (periodic, w);
569 e_destroy (w); 1011 e_destroy (w);
570 1012
571void set (struct ev_periodic *w, NV at, NV interval = 0.) 1013void set (ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef)
572 INIT: 1014 INIT:
573 CHECK_REPEAT (interval); 1015 CHECK_REPEAT (interval);
574 CODE: 1016 CODE:
575{ 1017{
576 int active = w->active; 1018 SvREFCNT_dec (e_fh (w));
577 if (active) ev_periodic_stop (w); 1019 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
578 ev_periodic_set (w, at, interval); 1020
579 if (active) ev_periodic_start (w); 1021 RESET (periodic, w, (w, at, interval, e_fh (w) ? e_periodic_cb : 0));
580} 1022}
1023
1024NV at (ev_periodic *w)
1025 CODE:
1026 RETVAL = ev_periodic_at (w);
1027 OUTPUT:
1028 RETVAL
581 1029
582MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 1030MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
583 1031
584void ev_idle_start (struct ev_idle *w) 1032void ev_idle_start (ev_idle *w)
1033 CODE:
1034 START (idle, w);
585 1035
586void ev_idle_stop (struct ev_idle *w) 1036void ev_idle_stop (ev_idle *w)
1037 CODE:
1038 STOP (idle, w);
587 1039
588void DESTROY (struct ev_idle *w) 1040void DESTROY (ev_idle *w)
589 CODE: 1041 CODE:
590 ev_idle_stop (w); 1042 STOP (idle, w);
591 e_destroy (w); 1043 e_destroy (w);
592 1044
593MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_ 1045MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_prepare_
594 1046
595void ev_prepare_start (struct ev_prepare *w) 1047void ev_prepare_start (ev_prepare *w)
1048 CODE:
1049 START (prepare, w);
596 1050
597void ev_prepare_stop (struct ev_prepare *w) 1051void ev_prepare_stop (ev_prepare *w)
1052 CODE:
1053 STOP (prepare, w);
598 1054
599void DESTROY (struct ev_prepare *w) 1055void DESTROY (ev_prepare *w)
600 CODE: 1056 CODE:
601 ev_prepare_stop (w); 1057 STOP (prepare, w);
602 e_destroy (w); 1058 e_destroy (w);
603 1059
604MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_ 1060MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
605 1061
606void ev_check_start (struct ev_check *w) 1062void ev_check_start (ev_check *w)
1063 CODE:
1064 START (check, w);
607 1065
608void ev_check_stop (struct ev_check *w) 1066void ev_check_stop (ev_check *w)
1067 CODE:
1068 STOP (check, w);
609 1069
610void DESTROY (struct ev_check *w) 1070void DESTROY (ev_check *w)
611 CODE: 1071 CODE:
612 ev_check_stop (w); 1072 STOP (check, w);
613 e_destroy (w); 1073 e_destroy (w);
614 1074
1075MODULE = EV PACKAGE = EV::Fork PREFIX = ev_fork_
1076
1077void ev_fork_start (ev_fork *w)
1078 CODE:
1079 START (fork, w);
1080
1081void ev_fork_stop (ev_fork *w)
1082 CODE:
1083 STOP (fork, w);
1084
1085void DESTROY (ev_fork *w)
1086 CODE:
1087 STOP (fork, w);
1088 e_destroy (w);
1089
615MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 1090MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
616 1091
1092#if EV_CHILD_ENABLE
1093
617void ev_child_start (struct ev_child *w) 1094void ev_child_start (ev_child *w)
1095 CODE:
1096 START (child, w);
618 1097
619void ev_child_stop (struct ev_child *w) 1098void ev_child_stop (ev_child *w)
1099 CODE:
1100 STOP (child, w);
620 1101
621void DESTROY (struct ev_child *w) 1102void DESTROY (ev_child *w)
622 CODE: 1103 CODE:
623 ev_child_stop (w); 1104 STOP (child, w);
624 e_destroy (w); 1105 e_destroy (w);
625 1106
626void set (struct ev_child *w, int pid) 1107void set (ev_child *w, int pid, int trace)
1108 CODE:
1109 RESET (child, w, (w, pid, trace));
1110
1111int pid (ev_child *w)
1112 ALIAS:
1113 rpid = 1
1114 rstatus = 2
1115 CODE:
1116 RETVAL = ix == 0 ? w->pid
1117 : ix == 1 ? w->rpid
1118 : w->rstatus;
1119 OUTPUT:
1120 RETVAL
1121
1122#endif
1123
1124MODULE = EV PACKAGE = EV::Stat PREFIX = ev_stat_
1125
1126void ev_stat_start (ev_stat *w)
1127 CODE:
1128 START (stat, w);
1129
1130void ev_stat_stop (ev_stat *w)
1131 CODE:
1132 STOP (stat, w);
1133
1134void DESTROY (ev_stat *w)
1135 CODE:
1136 STOP (stat, w);
1137 e_destroy (w);
1138
1139void set (ev_stat *w, SV *path, NV interval)
1140 CODE:
1141{
1142 sv_setsv (e_fh (w), path);
1143 RESET (stat, w, (w, SvPVbyte_nolen (e_fh (w)), interval));
1144}
1145
1146SV *path (ev_stat *w, SV *new_path = 0)
1147 CODE:
1148{
1149 RETVAL = SvREFCNT_inc (e_fh (w));
1150
1151 if (items > 1)
1152 {
1153 SvREFCNT_dec (e_fh (w));
1154 e_fh (w) = newSVsv (new_path);
1155 RESET (stat, w, (w, SvPVbyte_nolen (e_fh (w)), w->interval));
1156 }
1157}
1158 OUTPUT:
1159 RETVAL
1160
1161NV interval (ev_stat *w, NV new_interval = 0.)
1162 CODE:
1163{
1164 RETVAL = w->interval;
1165
1166 if (items > 1)
1167 RESET (stat, w, (w, SvPVbyte_nolen (e_fh (w)), new_interval));
1168}
1169 OUTPUT:
1170 RETVAL
1171
1172void prev (ev_stat *w)
1173 ALIAS:
1174 stat = 1
1175 attr = 2
627 CODE: 1176 PPCODE:
628{ 1177{
629 int active = w->active; 1178 ev_statdata *s = ix ? &w->attr : &w->prev;
630 if (active) ev_child_stop (w);
631 ev_child_set (w, pid);
632 if (active) ev_child_start (w);
633}
634 1179
635int status (struct ev_child *w) 1180 if (ix == 1)
1181 ev_stat_stat (e_loop (w), w);
1182 else if (!s->st_nlink)
1183 errno = ENOENT;
1184
1185 PL_statcache.st_dev = s->st_nlink;
1186 PL_statcache.st_ino = s->st_ino;
1187 PL_statcache.st_mode = s->st_mode;
1188 PL_statcache.st_nlink = s->st_nlink;
1189 PL_statcache.st_uid = s->st_uid;
1190 PL_statcache.st_gid = s->st_gid;
1191 PL_statcache.st_rdev = s->st_rdev;
1192 PL_statcache.st_size = s->st_size;
1193 PL_statcache.st_atime = s->st_atime;
1194 PL_statcache.st_mtime = s->st_mtime;
1195 PL_statcache.st_ctime = s->st_ctime;
1196
1197 if (GIMME_V == G_SCALAR)
1198 XPUSHs (boolSV (s->st_nlink));
1199 else if (GIMME_V == G_ARRAY && s->st_nlink)
1200 {
1201 EXTEND (SP, 13);
1202 PUSHs (sv_2mortal (newSViv (s->st_dev)));
1203 PUSHs (sv_2mortal (newSViv (s->st_ino)));
1204 PUSHs (sv_2mortal (newSVuv (s->st_mode)));
1205 PUSHs (sv_2mortal (newSVuv (s->st_nlink)));
1206 PUSHs (sv_2mortal (newSViv (s->st_uid)));
1207 PUSHs (sv_2mortal (newSViv (s->st_gid)));
1208 PUSHs (sv_2mortal (newSViv (s->st_rdev)));
1209 PUSHs (sv_2mortal (newSVnv ((NV)s->st_size)));
1210 PUSHs (sv_2mortal (newSVnv (s->st_atime)));
1211 PUSHs (sv_2mortal (newSVnv (s->st_mtime)));
1212 PUSHs (sv_2mortal (newSVnv (s->st_ctime)));
1213 PUSHs (sv_2mortal (newSVuv (4096)));
1214 PUSHs (sv_2mortal (newSVnv ((NV)((s->st_size + 4095) / 4096))));
1215 }
1216}
1217
1218MODULE = EV PACKAGE = EV::Embed PREFIX = ev_embed_
1219
1220void ev_embed_start (ev_embed *w)
636 CODE: 1221 CODE:
637 RETVAL = w->status; 1222 START (embed, w);
1223
1224void ev_embed_stop (ev_embed *w)
1225 CODE:
1226 STOP (embed, w);
1227
1228void DESTROY (ev_embed *w)
1229 CODE:
1230 STOP (embed, w);
1231 e_destroy (w);
1232
1233void set (ev_embed *w, struct ev_loop *loop)
1234 CODE:
1235{
1236 sv_setsv (e_fh (w), ST (1));
1237 RESET (embed, w, (w, loop));
1238}
1239
1240SV *other (ev_embed *w)
1241 CODE:
1242 RETVAL = newSVsv (e_fh (w));
638 OUTPUT: 1243 OUTPUT:
639 RETVAL 1244 RETVAL
1245
1246void ev_embed_sweep (ev_embed *w)
1247 C_ARGS: e_loop (w), w
1248
1249MODULE = EV PACKAGE = EV::Async PREFIX = ev_async_
1250
1251void ev_async_start (ev_async *w)
1252 CODE:
1253 START (async, w);
1254
1255void ev_async_stop (ev_async *w)
1256 CODE:
1257 STOP (async, w);
1258
1259void DESTROY (ev_async *w)
1260 CODE:
1261 STOP (async, w);
1262 e_destroy (w);
1263
1264void ev_async_send (ev_async *w)
1265 C_ARGS: e_loop (w), w
1266
1267SV *ev_async_async_pending (ev_async *w)
1268 CODE:
1269 RETVAL = boolSV (ev_async_pending (w));
1270 OUTPUT:
1271 RETVAL
1272
1273MODULE = EV PACKAGE = EV::Loop PREFIX = ev_
1274
1275SV *new (SV *klass, unsigned int flags = 0)
1276 CODE:
1277{
1278 struct ev_loop *loop = ev_loop_new (flags);
1279
1280 if (!loop)
1281 XSRETURN_UNDEF;
1282
1283 RETVAL = sv_bless (newRV_noinc (newSViv (PTR2IV (loop))), stash_loop);
1284}
1285 OUTPUT:
1286 RETVAL
1287
1288void DESTROY (struct ev_loop *loop)
1289 CODE:
1290 if (loop != evapi.default_loop) /* global destruction sucks */
1291 ev_loop_destroy (loop);
1292
1293void ev_loop_fork (struct ev_loop *loop)
1294
1295void ev_verify (struct ev_loop *loop)
1296
1297NV ev_now (struct ev_loop *loop)
1298
1299void ev_now_update (struct ev_loop *loop)
1300
1301void ev_suspend (struct ev_loop *loop)
1302
1303void ev_resume (struct ev_loop *loop)
1304
1305void ev_set_io_collect_interval (struct ev_loop *loop, NV interval)
1306
1307void ev_set_timeout_collect_interval (struct ev_loop *loop, NV interval)
1308
1309unsigned int ev_backend (struct ev_loop *loop)
1310
1311unsigned int ev_iteration (struct ev_loop *loop)
1312
1313unsigned int ev_depth (struct ev_loop *loop)
1314
1315void ev_loop (struct ev_loop *loop, int flags = 0)
1316
1317void ev_unloop (struct ev_loop *loop, int how = 1)
1318
1319void ev_feed_fd_event (struct ev_loop *loop, int fd, int revents = EV_NONE)
1320
1321unsigned int ev_pending_count (struct ev_loop *loop)
1322
1323void ev_invoke_pending (struct ev_loop *loop)
640 1324
641#if 0 1325#if 0
642 1326
643MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 1327void ev_feed_signal_event (struct ev_loop *loop, SV *signal)
644 1328 CODE:
645BOOT:
646{ 1329{
647 HV *stash = gv_stashpv ("EV::DNS", 1); 1330 Signal signum = s_signum (signal);
1331 CHECK_SIG (signal, signum);
648 1332
649 static const struct { 1333 ev_feed_signal_event (loop, signum);
650 const char *name;
651 IV iv;
652 } *civ, const_iv[] = {
653# define const_iv(pfx, name) { # name, (IV) pfx ## name },
654 const_iv (DNS_, ERR_NONE)
655 const_iv (DNS_, ERR_FORMAT)
656 const_iv (DNS_, ERR_SERVERFAILED)
657 const_iv (DNS_, ERR_NOTEXIST)
658 const_iv (DNS_, ERR_NOTIMPL)
659 const_iv (DNS_, ERR_REFUSED)
660 const_iv (DNS_, ERR_TRUNCATED)
661 const_iv (DNS_, ERR_UNKNOWN)
662 const_iv (DNS_, ERR_TIMEOUT)
663 const_iv (DNS_, ERR_SHUTDOWN)
664 const_iv (DNS_, IPv4_A)
665 const_iv (DNS_, PTR)
666 const_iv (DNS_, IPv6_AAAA)
667 const_iv (DNS_, QUERY_NO_SEARCH)
668 const_iv (DNS_, OPTION_SEARCH)
669 const_iv (DNS_, OPTION_NAMESERVERS)
670 const_iv (DNS_, OPTION_MISC)
671 const_iv (DNS_, OPTIONS_ALL)
672 const_iv (DNS_, NO_SEARCH)
673 };
674
675 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
676 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
677} 1334}
678
679int evdns_init ()
680
681void evdns_shutdown (int fail_requests = 1)
682
683const char *evdns_err_to_string (int err)
684
685int evdns_nameserver_add (U32 address)
686
687int evdns_count_nameservers ()
688
689int evdns_clear_nameservers_and_suspend ()
690
691int evdns_resume ()
692
693int evdns_nameserver_ip_add (char *ip_as_string)
694
695int evdns_resolve_ipv4 (const char *name, int flags, SV *cb)
696 C_ARGS: name, flags, dns_cb, (void *)SvREFCNT_inc (cb)
697
698int evdns_resolve_ipv6 (const char *name, int flags, SV *cb)
699 C_ARGS: name, flags, dns_cb, (void *)SvREFCNT_inc (cb)
700
701int evdns_resolve_reverse (SV *addr, int flags, SV *cb)
702 ALIAS:
703 evdns_resolve_reverse_ipv6 = 1
704 CODE:
705{
706 STRLEN len;
707 char *data = SvPVbyte (addr, len);
708 if (len != (ix ? 16 : 4))
709 croak ("ipv4/ipv6 address to be resolved must be given as 4/16 byte octet string");
710
711 RETVAL = ix
712 ? evdns_resolve_reverse_ipv6 ((struct in6_addr *)data, flags, dns_cb, (void *)SvREFCNT_inc (cb))
713 : evdns_resolve_reverse ((struct in_addr *)data, flags, dns_cb, (void *)SvREFCNT_inc (cb));
714}
715 OUTPUT:
716 RETVAL
717
718int evdns_set_option (char *option, char *val, int flags)
719
720int evdns_resolv_conf_parse (int flags, const char *filename)
721
722#ifdef MS_WINDOWS
723
724int evdns_config_windows_nameservers ()
725 1335
726#endif 1336#endif
727 1337
728void evdns_search_clear () 1338ev_io *io (struct ev_loop *loop, SV *fh, int events, SV *cb)
729 1339 ALIAS:
730void evdns_search_add (char *domain) 1340 io_ns = 1
731 1341 CODE:
732void evdns_search_ndots_set (int ndots)
733
734
735MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
736
737BOOT:
738{ 1342{
739 HV *stash = gv_stashpv ("EV::HTTP", 1); 1343 int fd = s_fileno (fh, events & EV_WRITE);
1344 CHECK_FD (fh, fd);
740 1345
741 static const struct { 1346 RETVAL = e_new (sizeof (ev_io), cb, ST (0));
742 const char *name; 1347 e_fh (RETVAL) = newSVsv (fh);
743 IV iv; 1348 ev_io_set (RETVAL, fd, events);
744 } *civ, const_iv[] = { 1349 if (!ix) START (io, RETVAL);
745# define const_iv(pfx, name) { # name, (IV) pfx ## name },
746 const_iv (HTTP_, OK)
747 const_iv (HTTP_, NOCONTENT)
748 const_iv (HTTP_, MOVEPERM)
749 const_iv (HTTP_, MOVETEMP)
750 const_iv (HTTP_, NOTMODIFIED)
751 const_iv (HTTP_, BADREQUEST)
752 const_iv (HTTP_, NOTFOUND)
753 const_iv (HTTP_, SERVUNAVAIL)
754 const_iv (EVHTTP_, REQ_OWN_CONNECTION)
755 const_iv (EVHTTP_, PROXY_REQUEST)
756 const_iv (EVHTTP_, REQ_GET)
757 const_iv (EVHTTP_, REQ_POST)
758 const_iv (EVHTTP_, REQ_HEAD)
759 const_iv (EVHTTP_, REQUEST)
760 const_iv (EVHTTP_, RESPONSE)
761 };
762
763 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
764 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
765} 1350}
1351 OUTPUT:
1352 RETVAL
766 1353
767MODULE = EV PACKAGE = EV::HTTP::Request PREFIX = evhttp_request_ 1354ev_timer *timer (struct ev_loop *loop, NV after, NV repeat, SV *cb)
1355 ALIAS:
1356 timer_ns = 1
1357 INIT:
1358 CHECK_REPEAT (repeat);
1359 CODE:
1360 RETVAL = e_new (sizeof (ev_timer), cb, ST (0));
1361 ev_timer_set (RETVAL, after, repeat);
1362 if (!ix) START (timer, RETVAL);
1363 OUTPUT:
1364 RETVAL
768 1365
769#HttpRequest new (SV *klass, SV *cb) 1366SV *periodic (struct ev_loop *loop, NV at, NV interval, SV *reschedule_cb, SV *cb)
1367 ALIAS:
1368 periodic_ns = 1
1369 INIT:
1370 CHECK_REPEAT (interval);
1371 CODE:
1372{
1373 ev_periodic *w;
1374 w = e_new (sizeof (ev_periodic), cb, ST (0));
1375 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
1376 ev_periodic_set (w, at, interval, e_fh (w) ? e_periodic_cb : 0);
1377 RETVAL = e_bless ((ev_watcher *)w, stash_periodic);
1378 if (!ix) START (periodic, w);
1379}
1380 OUTPUT:
1381 RETVAL
770 1382
771#void DESTROY (struct evhttp_request *req); 1383ev_signal *signal (struct ev_loop *loop, SV *signal, SV *cb)
1384 ALIAS:
1385 signal_ns = 1
1386 CODE:
1387{
1388 Signal signum = s_signum (signal);
1389 CHECK_SIG (signal, signum);
772 1390
1391 RETVAL = e_new (sizeof (ev_signal), cb, ST (0));
1392 ev_signal_set (RETVAL, signum);
1393 if (!ix) START_SIGNAL (RETVAL);
1394}
1395 OUTPUT:
1396 RETVAL
1397
1398ev_idle *idle (struct ev_loop *loop, SV *cb)
1399 ALIAS:
1400 idle_ns = 1
1401 CODE:
1402 RETVAL = e_new (sizeof (ev_idle), cb, ST (0));
1403 ev_idle_set (RETVAL);
1404 if (!ix) START (idle, RETVAL);
1405 OUTPUT:
1406 RETVAL
1407
1408ev_prepare *prepare (struct ev_loop *loop, SV *cb)
1409 ALIAS:
1410 prepare_ns = 1
1411 CODE:
1412 RETVAL = e_new (sizeof (ev_prepare), cb, ST (0));
1413 ev_prepare_set (RETVAL);
1414 if (!ix) START (prepare, RETVAL);
1415 OUTPUT:
1416 RETVAL
1417
1418ev_check *check (struct ev_loop *loop, SV *cb)
1419 ALIAS:
1420 check_ns = 1
1421 CODE:
1422 RETVAL = e_new (sizeof (ev_check), cb, ST (0));
1423 ev_check_set (RETVAL);
1424 if (!ix) START (check, RETVAL);
1425 OUTPUT:
1426 RETVAL
1427
1428ev_fork *fork (struct ev_loop *loop, SV *cb)
1429 ALIAS:
1430 fork_ns = 1
1431 CODE:
1432 RETVAL = e_new (sizeof (ev_fork), cb, ST (0));
1433 ev_fork_set (RETVAL);
1434 if (!ix) START (fork, RETVAL);
1435 OUTPUT:
1436 RETVAL
1437
1438
1439ev_child *child (struct ev_loop *loop, int pid, int trace, SV *cb)
1440 ALIAS:
1441 child_ns = 1
1442 CODE:
1443#if EV_CHILD_ENABLE
1444 RETVAL = e_new (sizeof (ev_child), cb, ST (0));
1445 ev_child_set (RETVAL, pid, trace);
1446 if (!ix) START (child, RETVAL);
1447#else
1448 croak ("EV::child watchers not supported on this platform");
773#endif 1449#endif
1450 OUTPUT:
1451 RETVAL
774 1452
1453ev_stat *stat (struct ev_loop *loop, SV *path, NV interval, SV *cb)
1454 ALIAS:
1455 stat_ns = 1
1456 CODE:
1457 RETVAL = e_new (sizeof (ev_stat), cb, ST (0));
1458 e_fh (RETVAL) = newSVsv (path);
1459 ev_stat_set (RETVAL, SvPVbyte_nolen (e_fh (RETVAL)), interval);
1460 if (!ix) START (stat, RETVAL);
1461 OUTPUT:
1462 RETVAL
775 1463
1464ev_embed *embed (struct ev_loop *loop, struct ev_loop *other, SV *cb = 0)
1465 ALIAS:
1466 embed_ns = 1
1467 CODE:
1468{
1469 if (!(ev_backend (other) & ev_embeddable_backends ()))
1470 croak ("passed loop is not embeddable via EV::embed,");
776 1471
1472 RETVAL = e_new (sizeof (ev_embed), cb, ST (0));
1473 e_fh (RETVAL) = newSVsv (ST (1));
1474 ev_embed_set (RETVAL, other);
1475 if (!ix) START (embed, RETVAL);
1476}
1477 OUTPUT:
1478 RETVAL
777 1479
1480ev_async *async (struct ev_loop *loop, SV *cb)
1481 ALIAS:
1482 async_ns = 1
1483 CODE:
1484 RETVAL = e_new (sizeof (ev_async), cb, ST (0));
1485 ev_async_set (RETVAL);
1486 if (!ix) START (async, RETVAL);
1487 OUTPUT:
1488 RETVAL
778 1489
1490void once (struct ev_loop *loop, SV *fh, int events, SV *timeout, SV *cb)
1491 CODE:
1492 ev_once (
1493 loop,
1494 s_fileno (fh, events & EV_WRITE), events,
1495 SvOK (timeout) ? SvNV (timeout) : -1.,
1496 e_once_cb,
1497 newSVsv (cb)
1498 );
779 1499
780
781

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines