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

Comparing EV/EV.xs (file contents):
Revision 1.18 by root, Wed Oct 31 11:55:42 2007 UTC vs.
Revision 1.31 by root, Thu Nov 1 11:11:21 2007 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 <math.h>
6#include <netinet/in.h> 5/*#include <netinet/in.h>*/
7 6
8#define TIMEOUT_NONE HUGE_VAL 7#define TIMEOUT_NONE HUGE_VAL
8#define EV_USE_EPOLL 1
9 9
10#define EV_COMMON \ 10#define EV_PROTOTYPES 1
11 SV *self; /* contains this struct */ \
12 SV *cb_sv, *fh;
13
14#include "EV/EVAPI.h" 11#include "EV/EVAPI.h"
15 12
16#include "libev/ev.c" 13#include "libev/ev.c"
17 14
18typedef int Signal; 15typedef int Signal;
20static struct EVAPI evapi; 17static struct EVAPI evapi;
21 18
22static HV 19static HV
23 *stash_watcher, 20 *stash_watcher,
24 *stash_io, 21 *stash_io,
25 *stash_time,
26 *stash_timer, 22 *stash_timer,
27 *stash_periodic, 23 *stash_periodic,
28 *stash_signal, 24 *stash_signal,
29 *stash_idle, 25 *stash_idle,
26 *stash_prepare,
30 *stash_check; 27 *stash_check,
28 *stash_child;
31 29
32static int 30static int
33sv_signum (SV *sig) 31sv_signum (SV *sig)
34{ 32{
35 int signum; 33 int signum;
36 34
37 if (SvIV (sig) > 0) 35 SvGETMAGIC (sig);
38 return SvIV (sig);
39 36
40 for (signum = 1; signum < SIG_SIZE; ++signum) 37 for (signum = 1; signum < SIG_SIZE; ++signum)
41 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum])) 38 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum]))
42 return signum; 39 return signum;
43 40
41 if (SvIV (sig) > 0)
42 return SvIV (sig);
43
44 return -1; 44 return -1;
45}
46
47static void
48api_once (int fd, short events, double timeout, void (*cb)(int, short, void *), void *arg)
49{
50#if 0
51 if (timeout >= 0.)
52 {
53 struct timeval tv;
54 tv_set (&tv, timeout);
55 event_once (fd, events, cb, arg, &tv);
56 }
57 else
58 event_once (fd, events, cb, arg, 0);
59#endif
60} 45}
61 46
62///////////////////////////////////////////////////////////////////////////// 47/////////////////////////////////////////////////////////////////////////////
63// Event 48// Event
64 49
73 fh = SvRV (fh); 58 fh = SvRV (fh);
74 59
75 if (SvTYPE (fh) == SVt_PVGV) 60 if (SvTYPE (fh) == SVt_PVGV)
76 return PerlIO_fileno (IoIFP (sv_2io (fh))); 61 return PerlIO_fileno (IoIFP (sv_2io (fh)));
77 62
78 if (SvIOK (fh)) 63 if ((SvIV (fh) >= 0) && (SvIV (fh) < 0x7ffffff))
79 return SvIV (fh); 64 return SvIV (fh);
80 65
81 return -1; 66 return -1;
82} 67}
83 68
89 SvPOK_only (self); 74 SvPOK_only (self);
90 SvCUR_set (self, size); 75 SvCUR_set (self, size);
91 76
92 w = (struct ev_watcher *)SvPVX (self); 77 w = (struct ev_watcher *)SvPVX (self);
93 78
94 evw_init (w, e_cb); 79 ev_watcher_init (w, e_cb);
95 80
96 w->fh = 0; 81 w->fh = 0;
97 w->cb_sv = newSVsv (cb_sv); 82 w->cb_sv = newSVsv (cb_sv);
98 w->self = self; 83 w->self = self;
99 84
120static void 105static void
121e_cb (struct ev_watcher *w, int revents) 106e_cb (struct ev_watcher *w, int revents)
122{ 107{
123 dSP; 108 dSP;
124 I32 mark = SP - PL_stack_base; 109 I32 mark = SP - PL_stack_base;
125 SV *sv_self, *sv_events; 110 SV *sv_self, *sv_events, *sv_status = 0;
126 static SV *sv_events_cache; 111 static SV *sv_events_cache;
112
113 fprintf (stderr, "e_cb %p,%x\n", w, revents);//D
127 114
128 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */ 115 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */
129 116
130 if (sv_events_cache) 117 if (sv_events_cache)
131 { 118 {
137 124
138 PUSHMARK (SP); 125 PUSHMARK (SP);
139 EXTEND (SP, 2); 126 EXTEND (SP, 2);
140 PUSHs (sv_self); 127 PUSHs (sv_self);
141 PUSHs (sv_events); 128 PUSHs (sv_events);
129
130 if (revents & EV_CHILD)
131 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
132
142 PUTBACK; 133 PUTBACK;
143 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 134 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
144 SP = PL_stack_base + mark; PUTBACK; 135 SP = PL_stack_base + mark; PUTBACK;
145 136
146 SvREFCNT_dec (sv_self); 137 SvREFCNT_dec (sv_self);
138 SvREFCNT_dec (sv_status);
147 139
148 if (sv_events_cache) 140 if (sv_events_cache)
149 SvREFCNT_dec (sv_events); 141 SvREFCNT_dec (sv_events);
150 else 142 else
151 sv_events_cache = sv_events; 143 sv_events_cache = sv_events;
214#endif 206#endif
215 207
216#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 208#define CHECK_REPEAT(repeat) if (repeat < 0.) \
217 croak (# repeat " value must be >= 0"); 209 croak (# repeat " value must be >= 0");
218 210
211#define CHECK_FD(fh,fd) if ((fd) < 0) \
212 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
213
219///////////////////////////////////////////////////////////////////////////// 214/////////////////////////////////////////////////////////////////////////////
220// XS interface functions 215// XS interface functions
221 216
222MODULE = EV PACKAGE = EV PREFIX = ev_ 217MODULE = EV PACKAGE = EV PREFIX = ev_
218
219PROTOTYPES: ENABLE
223 220
224BOOT: 221BOOT:
225{ 222{
226 int i; 223 int i;
227 HV *stash = gv_stashpv ("EV", 1); 224 HV *stash = gv_stashpv ("EV", 1);
229 static const struct { 226 static const struct {
230 const char *name; 227 const char *name;
231 IV iv; 228 IV iv;
232 } *civ, const_iv[] = { 229 } *civ, const_iv[] = {
233# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 230# define const_iv(pfx, name) { # name, (IV) pfx ## name },
231 const_iv (EV_, UNDEF)
234 const_iv (EV_, NONE) 232 const_iv (EV_, NONE)
235 const_iv (EV_, TIMEOUT) 233 const_iv (EV_, TIMEOUT)
236 const_iv (EV_, READ) 234 const_iv (EV_, READ)
237 const_iv (EV_, WRITE) 235 const_iv (EV_, WRITE)
238 const_iv (EV_, SIGNAL) 236 const_iv (EV_, SIGNAL)
239 const_iv (EV_, IDLE) 237 const_iv (EV_, IDLE)
240 const_iv (EV_, CHECK) 238 const_iv (EV_, CHECK)
239 const_iv (EV_, ERROR)
241 240
242 const_iv (EV, LOOP_ONESHOT) 241 const_iv (EV, LOOP_ONESHOT)
243 const_iv (EV, LOOP_NONBLOCK) 242 const_iv (EV, LOOP_NONBLOCK)
244 243
245 const_iv (EV, METHOD_NONE) 244 const_iv (EV, METHOD_NONE)
249 248
250 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 249 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
251 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 250 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
252 251
253 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 252 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
254 stash_io = gv_stashpv ("EV::IO" , 1); 253 stash_io = gv_stashpv ("EV::Io" , 1);
255 stash_time = gv_stashpv ("EV::Time" , 1);
256 stash_timer = gv_stashpv ("EV::Timer" , 1); 254 stash_timer = gv_stashpv ("EV::Timer" , 1);
257 stash_periodic = gv_stashpv ("EV::Periodic", 1); 255 stash_periodic = gv_stashpv ("EV::Periodic", 1);
258 stash_signal = gv_stashpv ("EV::Signal" , 1); 256 stash_signal = gv_stashpv ("EV::Signal" , 1);
259 stash_idle = gv_stashpv ("EV::Idle" , 1); 257 stash_idle = gv_stashpv ("EV::Idle" , 1);
258 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
260 stash_check = gv_stashpv ("EV::Check" , 1); 259 stash_check = gv_stashpv ("EV::Check" , 1);
260 stash_child = gv_stashpv ("EV::Child" , 1);
261 261
262 { 262 {
263 SV *sv = perl_get_sv ("EV::API", TRUE); 263 SV *sv = perl_get_sv ("EV::API", TRUE);
264 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 264 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
265 265
266 /* the poor man's shared library emulator */ 266 /* the poor man's shared library emulator */
267 evapi.ver = EV_API_VERSION; 267 evapi.ver = EV_API_VERSION;
268 evapi.rev = EV_API_REVISION; 268 evapi.rev = EV_API_REVISION;
269 evapi.once = api_once;
270 evapi.sv_fileno = sv_fileno; 269 evapi.sv_fileno = sv_fileno;
271 evapi.sv_signum = sv_signum; 270 evapi.sv_signum = sv_signum;
272 evapi.now = &ev_now; 271 evapi.now = &ev_now;
273 evapi.method = &ev_method; 272 evapi.method = &ev_method;
274 evapi.loop_done = &ev_loop_done; 273 evapi.loop_done = &ev_loop_done;
275 evapi.time = ev_time; 274 evapi.time = ev_time;
276 evapi.loop = ev_loop; 275 evapi.loop = ev_loop;
276 evapi.once = ev_once;
277 evapi.io_start = evio_start; 277 evapi.io_start = ev_io_start;
278 evapi.io_stop = evio_stop; 278 evapi.io_stop = ev_io_stop;
279 evapi.timer_start = evtimer_start; 279 evapi.timer_start = ev_timer_start;
280 evapi.timer_stop = evtimer_stop; 280 evapi.timer_stop = ev_timer_stop;
281 evapi.timer_again = evtimer_again; 281 evapi.timer_again = ev_timer_again;
282 evapi.periodic_start = evperiodic_start; 282 evapi.periodic_start = ev_periodic_start;
283 evapi.periodic_stop = evperiodic_stop; 283 evapi.periodic_stop = ev_periodic_stop;
284 evapi.signal_start = evsignal_start; 284 evapi.signal_start = ev_signal_start;
285 evapi.signal_stop = evsignal_stop; 285 evapi.signal_stop = ev_signal_stop;
286 evapi.idle_start = evidle_start; 286 evapi.idle_start = ev_idle_start;
287 evapi.idle_stop = evidle_stop; 287 evapi.idle_stop = ev_idle_stop;
288 evapi.prepare_start = ev_prepare_start;
289 evapi.prepare_stop = ev_prepare_stop;
288 evapi.check_start = evcheck_start; 290 evapi.check_start = ev_check_start;
289 evapi.check_stop = evcheck_stop; 291 evapi.check_stop = ev_check_stop;
292 evapi.child_start = ev_child_start;
293 evapi.child_stop = ev_child_stop;
290 294
291 sv_setiv (sv, (IV)&evapi); 295 sv_setiv (sv, (IV)&evapi);
292 SvREADONLY_on (sv); 296 SvREADONLY_on (sv);
293 } 297 }
294} 298}
317 321
318struct ev_io *io (SV *fh, int events, SV *cb) 322struct ev_io *io (SV *fh, int events, SV *cb)
319 ALIAS: 323 ALIAS:
320 io_ns = 1 324 io_ns = 1
321 CODE: 325 CODE:
326{
327 int fd = sv_fileno (fh);
328 CHECK_FD (fh, fd);
329
322 RETVAL = e_new (sizeof (struct ev_io), cb); 330 RETVAL = e_new (sizeof (struct ev_io), cb);
323 RETVAL->fh = newSVsv (fh); 331 RETVAL->fh = newSVsv (fh);
324 evio_set (RETVAL, sv_fileno (RETVAL->fh), events); 332 ev_io_set (RETVAL, fd, events);
325 if (!ix) evio_start (RETVAL); 333 if (!ix) ev_io_start (RETVAL);
334}
326 OUTPUT: 335 OUTPUT:
327 RETVAL 336 RETVAL
328 337
329struct ev_timer *timer (NV after, NV repeat, SV *cb) 338struct ev_timer *timer (NV after, NV repeat, SV *cb)
330 ALIAS: 339 ALIAS:
331 timer_ns = 1 340 timer_ns = 1
332 INIT: 341 INIT:
333 CHECK_REPEAT (repeat); 342 CHECK_REPEAT (repeat);
334 CODE: 343 CODE:
335 RETVAL = e_new (sizeof (struct ev_timer), cb); 344 RETVAL = e_new (sizeof (struct ev_timer), cb);
336 evtimer_set (RETVAL, after, repeat); 345 ev_timer_set (RETVAL, after, repeat);
337 if (!ix) evtimer_start (RETVAL); 346 if (!ix) ev_timer_start (RETVAL);
338 OUTPUT: 347 OUTPUT:
339 RETVAL 348 RETVAL
340 349
341struct ev_periodic *periodic (NV at, NV interval, SV *cb) 350struct ev_periodic *periodic (NV at, NV interval, SV *cb)
342 ALIAS: 351 ALIAS:
343 periodic_ns = 1 352 periodic_ns = 1
344 INIT: 353 INIT:
345 CHECK_REPEAT (interval); 354 CHECK_REPEAT (interval);
346 CODE: 355 CODE:
347 RETVAL = e_new (sizeof (struct ev_periodic), cb); 356 RETVAL = e_new (sizeof (struct ev_periodic), cb);
348 evperiodic_set (RETVAL, at, interval); 357 ev_periodic_set (RETVAL, at, interval);
349 if (!ix) evperiodic_start (RETVAL); 358 if (!ix) ev_periodic_start (RETVAL);
350 OUTPUT: 359 OUTPUT:
351 RETVAL 360 RETVAL
352 361
353struct ev_signal *signal (Signal signum, SV *cb) 362struct ev_signal *signal (Signal signum, SV *cb)
354 ALIAS: 363 ALIAS:
355 signal_ns = 1 364 signal_ns = 1
356 CODE: 365 CODE:
357 RETVAL = e_new (sizeof (struct ev_signal), cb); 366 RETVAL = e_new (sizeof (struct ev_signal), cb);
358 evsignal_set (RETVAL, signum); 367 ev_signal_set (RETVAL, signum);
359 if (!ix) evsignal_start (RETVAL); 368 if (!ix) ev_signal_start (RETVAL);
360 OUTPUT: 369 OUTPUT:
361 RETVAL 370 RETVAL
362 371
363struct ev_idle *idle (SV *cb) 372struct ev_idle *idle (SV *cb)
364 ALIAS: 373 ALIAS:
365 idle_ns = 1 374 idle_ns = 1
366 CODE: 375 CODE:
367 RETVAL = e_new (sizeof (struct ev_idle), cb); 376 RETVAL = e_new (sizeof (struct ev_idle), cb);
368 evidle_set (RETVAL); 377 ev_idle_set (RETVAL);
369 if (!ix) evidle_start (RETVAL); 378 if (!ix) ev_idle_start (RETVAL);
379 OUTPUT:
380 RETVAL
381
382struct ev_prepare *prepare (SV *cb)
383 ALIAS:
384 prepare_ns = 1
385 CODE:
386 RETVAL = e_new (sizeof (struct ev_prepare), cb);
387 ev_prepare_set (RETVAL);
388 if (!ix) ev_prepare_start (RETVAL);
370 OUTPUT: 389 OUTPUT:
371 RETVAL 390 RETVAL
372 391
373struct ev_check *check (SV *cb) 392struct ev_check *check (SV *cb)
374 ALIAS: 393 ALIAS:
375 check_ns = 1 394 check_ns = 1
376 CODE: 395 CODE:
377 RETVAL = e_new (sizeof (struct ev_check), cb); 396 RETVAL = e_new (sizeof (struct ev_check), cb);
378 evcheck_set (RETVAL); 397 ev_check_set (RETVAL);
379 if (!ix) evcheck_start (RETVAL); 398 if (!ix) ev_check_start (RETVAL);
399 OUTPUT:
400 RETVAL
401
402struct ev_child *child (int pid, SV *cb)
403 ALIAS:
404 check_ns = 1
405 CODE:
406 RETVAL = e_new (sizeof (struct ev_check), cb);
407 ev_child_set (RETVAL, pid);
408 if (!ix) ev_child_start (RETVAL);
380 OUTPUT: 409 OUTPUT:
381 RETVAL 410 RETVAL
382 411
383 412
384PROTOTYPES: DISABLE 413PROTOTYPES: DISABLE
396 sv_setsv (w->cb_sv, new_cb); 425 sv_setsv (w->cb_sv, new_cb);
397} 426}
398 OUTPUT: 427 OUTPUT:
399 RETVAL 428 RETVAL
400 429
430void trigger (struct ev_watcher *w, int revents = EV_NONE)
431 CODE:
432 w->cb (w, revents);
433
401MODULE = EV PACKAGE = EV::IO PREFIX = evio_ 434MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
402 435
403void evio_start (struct ev_io *w) 436void ev_io_start (struct ev_io *w)
404 437
405void evio_stop (struct ev_io *w) 438void ev_io_stop (struct ev_io *w)
439
440void DESTROY (struct ev_io *w)
441 CODE:
442 ev_io_stop (w);
406 443
407void set (struct ev_io *w, SV *fh, int events) 444void set (struct ev_io *w, SV *fh, int events)
408 CODE: 445 CODE:
409{ 446{
410 int active = w->active; 447 int active = w->active;
448 int fd = sv_fileno (fh);
449 CHECK_FD (fh, fd);
450
411 if (active) evio_stop (w); 451 if (active) ev_io_stop (w);
412 452
413 sv_setsv (w->fh, fh); 453 sv_setsv (w->fh, fh);
414 evio_set (w, sv_fileno (w->fh), events); 454 ev_io_set (w, fd, events);
415 455
416 if (active) evio_start (w); 456 if (active) ev_io_start (w);
417} 457}
418 458
419SV *fh (struct ev_io *w, SV *new_fh = 0) 459SV *fh (struct ev_io *w, SV *new_fh = 0)
420 CODE: 460 CODE:
421{ 461{
422 RETVAL = newSVsv (w->fh); 462 RETVAL = newSVsv (w->fh);
423 463
424 if (items > 1) 464 if (items > 1)
425 { 465 {
426 int active = w->active; 466 int active = w->active;
427 if (active) evio_stop (w); 467 if (active) ev_io_stop (w);
428 468
429 sv_setsv (w->fh, new_fh); 469 sv_setsv (w->fh, new_fh);
430 evio_set (w, sv_fileno (w->fh), w->events); 470 ev_io_set (w, sv_fileno (w->fh), w->events);
431 471
432 if (active) evio_start (w); 472 if (active) ev_io_start (w);
433 } 473 }
434} 474}
435 OUTPUT: 475 OUTPUT:
436 RETVAL 476 RETVAL
437 477
441 RETVAL = w->events; 481 RETVAL = w->events;
442 482
443 if (items > 1) 483 if (items > 1)
444 { 484 {
445 int active = w->active; 485 int active = w->active;
446 if (active) evio_stop (w); 486 if (active) ev_io_stop (w);
447 487
448 evio_set (w, w->fd, new_events); 488 ev_io_set (w, w->fd, new_events);
449 489
450 if (active) evio_start (w); 490 if (active) ev_io_start (w);
451 } 491 }
452} 492}
453 OUTPUT: 493 OUTPUT:
454 RETVAL 494 RETVAL
455 495
456MODULE = EV PACKAGE = EV::Signal PREFIX = evsignal_ 496MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
457 497
458void evsignal_start (struct ev_signal *w) 498void ev_signal_start (struct ev_signal *w)
459 499
460void evsignal_stop (struct ev_signal *w) 500void ev_signal_stop (struct ev_signal *w)
501
502void DESTROY (struct ev_signal *w)
503 CODE:
504 ev_signal_stop (w);
461 505
462void set (struct ev_signal *w, SV *signal = 0) 506void set (struct ev_signal *w, SV *signal = 0)
463 CODE: 507 CODE:
464{ 508{
465 Signal signum = sv_signum (signal); /* may croak here */ 509 Signal signum = sv_signum (signal); /* may croak here */
466 int active = w->active; 510 int active = w->active;
467 511
468 if (active) evsignal_stop (w); 512 if (active) ev_signal_stop (w);
469 evsignal_set (w, signum); 513 ev_signal_set (w, signum);
470 if (active) evsignal_start (w); 514 if (active) ev_signal_start (w);
471} 515}
472 516
473MODULE = EV PACKAGE = EV::Time 517MODULE = EV PACKAGE = EV::Time
474 518
475MODULE = EV PACKAGE = EV::Timer PREFIX = evtimer_ 519MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
476 520
477void evtimer_start (struct ev_timer *w) 521void ev_timer_start (struct ev_timer *w)
478 INIT: 522 INIT:
479 CHECK_REPEAT (w->repeat); 523 CHECK_REPEAT (w->repeat);
480 524
481void evtimer_stop (struct ev_timer *w) 525void ev_timer_stop (struct ev_timer *w)
482 526
483void evtimer_again (struct ev_timer *w) 527void ev_timer_again (struct ev_timer *w)
484 INIT: 528 INIT:
485 CHECK_REPEAT (w->repeat); 529 CHECK_REPEAT (w->repeat);
530
531void DESTROY (struct ev_timer *w)
532 CODE:
533 ev_timer_stop (w);
486 534
487void set (struct ev_timer *w, NV after, NV repeat = 0.) 535void set (struct ev_timer *w, NV after, NV repeat = 0.)
488 INIT: 536 INIT:
489 CHECK_REPEAT (repeat); 537 CHECK_REPEAT (repeat);
490 CODE: 538 CODE:
491{ 539{
492 int active = w->active; 540 int active = w->active;
493 if (active) evtimer_stop (w); 541 if (active) ev_timer_stop (w);
494 evtimer_set (w, after, repeat); 542 ev_timer_set (w, after, repeat);
495 if (active) evtimer_start (w); 543 if (active) ev_timer_start (w);
496} 544}
497 545
498MODULE = EV PACKAGE = EV::Periodic PREFIX = evperiodic_ 546MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
499 547
500void evperiodic_start (struct ev_periodic *w) 548void ev_periodic_start (struct ev_periodic *w)
501 INIT: 549 INIT:
502 CHECK_REPEAT (w->interval); 550 CHECK_REPEAT (w->interval);
503 551
504void evperiodic_stop (struct ev_periodic *w) 552void ev_periodic_stop (struct ev_periodic *w)
553
554void DESTROY (struct ev_periodic *w)
555 CODE:
556 ev_periodic_stop (w);
505 557
506void set (struct ev_periodic *w, NV at, NV interval = 0.) 558void set (struct ev_periodic *w, NV at, NV interval = 0.)
507 INIT: 559 INIT:
508 CHECK_REPEAT (interval); 560 CHECK_REPEAT (interval);
509 CODE: 561 CODE:
510{ 562{
511 int active = w->active; 563 int active = w->active;
512 if (active) evperiodic_stop (w); 564 if (active) ev_periodic_stop (w);
513 evperiodic_set (w, at, interval); 565 ev_periodic_set (w, at, interval);
514 if (active) evperiodic_start (w); 566 if (active) ev_periodic_start (w);
515} 567}
516 568
517MODULE = EV PACKAGE = EV::Idle PREFIX = evidle_ 569MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
518 570
519void evidle_start (struct ev_idle *w) 571void ev_idle_start (struct ev_idle *w)
520 572
521void evidle_stop (struct ev_idle *w) 573void ev_idle_stop (struct ev_idle *w)
522 574
575void DESTROY (struct ev_idle *w)
576 CODE:
577 ev_idle_stop (w);
578
579MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
580
581void ev_prepare_start (struct ev_prepare *w)
582
583void ev_prepare_stop (struct ev_prepare *w)
584
585void DESTROY (struct ev_prepare *w)
586 CODE:
587 ev_prepare_stop (w);
588
523MODULE = EV PACKAGE = EV::Check PREFIX = evcheck_ 589MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
524 590
525void evcheck_start (struct ev_check *w) 591void ev_check_start (struct ev_check *w)
526 592
527void evcheck_stop (struct ev_check *w) 593void ev_check_stop (struct ev_check *w)
594
595void DESTROY (struct ev_check *w)
596 CODE:
597 ev_check_stop (w);
598
599MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
600
601void ev_child_start (struct ev_child *w)
602
603void ev_child_stop (struct ev_child *w)
604
605void DESTROY (struct ev_child *w)
606 CODE:
607 ev_child_stop (w);
608
609void set (struct ev_child *w, int pid)
610 CODE:
611{
612 int active = w->active;
613 if (active) ev_child_stop (w);
614 ev_child_set (w, pid);
615 if (active) ev_child_start (w);
616}
617
618int status (struct ev_child *w)
619 CODE:
620 RETVAL = w->status;
621 OUTPUT:
622 RETVAL
528 623
529#if 0 624#if 0
530 625
531MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 626MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
532 627

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines