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

Comparing EV/EV.xs (file contents):
Revision 1.19 by root, Wed Oct 31 11:59:54 2007 UTC vs.
Revision 1.34 by root, Thu Nov 1 12:11:07 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
100 return (void *)w; 85 return (void *)w;
86}
87
88static void *
89e_destroy (void *w_)
90{
91 struct ev_watcher *w = w_;
92
93 SvREFCNT_dec (w->fh ); w->fh = 0;
94 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
101} 95}
102 96
103static SV * 97static SV *
104e_bless (struct ev_watcher *w, HV *stash) 98e_bless (struct ev_watcher *w, HV *stash)
105{ 99{
120static void 114static void
121e_cb (struct ev_watcher *w, int revents) 115e_cb (struct ev_watcher *w, int revents)
122{ 116{
123 dSP; 117 dSP;
124 I32 mark = SP - PL_stack_base; 118 I32 mark = SP - PL_stack_base;
125 SV *sv_self, *sv_events; 119 SV *sv_self, *sv_events, *sv_status = 0;
126 static SV *sv_events_cache; 120 static SV *sv_events_cache;
127 121
128 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */ 122 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */
129 123
130 if (sv_events_cache) 124 if (sv_events_cache)
137 131
138 PUSHMARK (SP); 132 PUSHMARK (SP);
139 EXTEND (SP, 2); 133 EXTEND (SP, 2);
140 PUSHs (sv_self); 134 PUSHs (sv_self);
141 PUSHs (sv_events); 135 PUSHs (sv_events);
136
137 if (revents & EV_CHILD)
138 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
139
142 PUTBACK; 140 PUTBACK;
143 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 141 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
144 SP = PL_stack_base + mark; PUTBACK; 142 SP = PL_stack_base + mark; PUTBACK;
145 143
146 SvREFCNT_dec (sv_self); 144 SvREFCNT_dec (sv_self);
145 SvREFCNT_dec (sv_status);
147 146
148 if (sv_events_cache) 147 if (sv_events_cache)
149 SvREFCNT_dec (sv_events); 148 SvREFCNT_dec (sv_events);
150 else 149 else
151 sv_events_cache = sv_events; 150 sv_events_cache = sv_events;
214#endif 213#endif
215 214
216#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 215#define CHECK_REPEAT(repeat) if (repeat < 0.) \
217 croak (# repeat " value must be >= 0"); 216 croak (# repeat " value must be >= 0");
218 217
218#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));
220
219///////////////////////////////////////////////////////////////////////////// 221/////////////////////////////////////////////////////////////////////////////
220// XS interface functions 222// XS interface functions
221 223
222MODULE = EV PACKAGE = EV PREFIX = ev_ 224MODULE = EV PACKAGE = EV PREFIX = ev_
225
226PROTOTYPES: ENABLE
223 227
224BOOT: 228BOOT:
225{ 229{
226 int i; 230 int i;
227 HV *stash = gv_stashpv ("EV", 1); 231 HV *stash = gv_stashpv ("EV", 1);
229 static const struct { 233 static const struct {
230 const char *name; 234 const char *name;
231 IV iv; 235 IV iv;
232 } *civ, const_iv[] = { 236 } *civ, const_iv[] = {
233# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 237# define const_iv(pfx, name) { # name, (IV) pfx ## name },
238 const_iv (EV_, UNDEF)
234 const_iv (EV_, NONE) 239 const_iv (EV_, NONE)
235 const_iv (EV_, TIMEOUT) 240 const_iv (EV_, TIMEOUT)
236 const_iv (EV_, READ) 241 const_iv (EV_, READ)
237 const_iv (EV_, WRITE) 242 const_iv (EV_, WRITE)
238 const_iv (EV_, SIGNAL) 243 const_iv (EV_, SIGNAL)
239 const_iv (EV_, IDLE) 244 const_iv (EV_, IDLE)
240 const_iv (EV_, CHECK) 245 const_iv (EV_, CHECK)
246 const_iv (EV_, ERROR)
241 247
242 const_iv (EV, LOOP_ONESHOT) 248 const_iv (EV, LOOP_ONESHOT)
243 const_iv (EV, LOOP_NONBLOCK) 249 const_iv (EV, LOOP_NONBLOCK)
244 250
245 const_iv (EV, METHOD_NONE) 251 const_iv (EV, METHOD_NONE)
249 255
250 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 256 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
251 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 257 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
252 258
253 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 259 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
254 stash_io = gv_stashpv ("EV::IO" , 1); 260 stash_io = gv_stashpv ("EV::Io" , 1);
255 stash_time = gv_stashpv ("EV::Time" , 1);
256 stash_timer = gv_stashpv ("EV::Timer" , 1); 261 stash_timer = gv_stashpv ("EV::Timer" , 1);
257 stash_periodic = gv_stashpv ("EV::Periodic", 1); 262 stash_periodic = gv_stashpv ("EV::Periodic", 1);
258 stash_signal = gv_stashpv ("EV::Signal" , 1); 263 stash_signal = gv_stashpv ("EV::Signal" , 1);
259 stash_idle = gv_stashpv ("EV::Idle" , 1); 264 stash_idle = gv_stashpv ("EV::Idle" , 1);
265 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
260 stash_check = gv_stashpv ("EV::Check" , 1); 266 stash_check = gv_stashpv ("EV::Check" , 1);
267 stash_child = gv_stashpv ("EV::Child" , 1);
261 268
262 { 269 {
263 SV *sv = perl_get_sv ("EV::API", TRUE); 270 SV *sv = perl_get_sv ("EV::API", TRUE);
264 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 271 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
265 272
266 /* the poor man's shared library emulator */ 273 /* the poor man's shared library emulator */
267 evapi.ver = EV_API_VERSION; 274 evapi.ver = EV_API_VERSION;
268 evapi.rev = EV_API_REVISION; 275 evapi.rev = EV_API_REVISION;
269 evapi.once = api_once;
270 evapi.sv_fileno = sv_fileno; 276 evapi.sv_fileno = sv_fileno;
271 evapi.sv_signum = sv_signum; 277 evapi.sv_signum = sv_signum;
272 evapi.now = &ev_now; 278 evapi.now = &ev_now;
273 evapi.method = &ev_method; 279 evapi.method = &ev_method;
274 evapi.loop_done = &ev_loop_done; 280 evapi.loop_done = &ev_loop_done;
275 evapi.time = ev_time; 281 evapi.time = ev_time;
276 evapi.loop = ev_loop; 282 evapi.loop = ev_loop;
283 evapi.once = ev_once;
277 evapi.io_start = evio_start; 284 evapi.io_start = ev_io_start;
278 evapi.io_stop = evio_stop; 285 evapi.io_stop = ev_io_stop;
279 evapi.timer_start = evtimer_start; 286 evapi.timer_start = ev_timer_start;
280 evapi.timer_stop = evtimer_stop; 287 evapi.timer_stop = ev_timer_stop;
281 evapi.timer_again = evtimer_again; 288 evapi.timer_again = ev_timer_again;
282 evapi.periodic_start = evperiodic_start; 289 evapi.periodic_start = ev_periodic_start;
283 evapi.periodic_stop = evperiodic_stop; 290 evapi.periodic_stop = ev_periodic_stop;
284 evapi.signal_start = evsignal_start; 291 evapi.signal_start = ev_signal_start;
285 evapi.signal_stop = evsignal_stop; 292 evapi.signal_stop = ev_signal_stop;
286 evapi.idle_start = evidle_start; 293 evapi.idle_start = ev_idle_start;
287 evapi.idle_stop = evidle_stop; 294 evapi.idle_stop = ev_idle_stop;
295 evapi.prepare_start = ev_prepare_start;
296 evapi.prepare_stop = ev_prepare_stop;
288 evapi.check_start = evcheck_start; 297 evapi.check_start = ev_check_start;
289 evapi.check_stop = evcheck_stop; 298 evapi.check_stop = ev_check_stop;
299 evapi.child_start = ev_child_start;
300 evapi.child_stop = ev_child_stop;
290 301
291 sv_setiv (sv, (IV)&evapi); 302 sv_setiv (sv, (IV)&evapi);
292 SvREADONLY_on (sv); 303 SvREADONLY_on (sv);
293 } 304 }
305
306 pthread_atfork (ev_fork_prepare, ev_fork_parent, ev_fork_child);
294} 307}
295 308
296NV ev_now () 309NV ev_now ()
297 CODE: 310 CODE:
298 RETVAL = ev_now; 311 RETVAL = ev_now;
314void ev_loop_done (int value = 1) 327void ev_loop_done (int value = 1)
315 CODE: 328 CODE:
316 ev_loop_done = value; 329 ev_loop_done = value;
317 330
318struct ev_io *io (SV *fh, int events, SV *cb) 331struct ev_io *io (SV *fh, int events, SV *cb)
319 PROTOTYPE: $$&
320 ALIAS: 332 ALIAS:
321 io_ns = 1 333 io_ns = 1
322 CODE: 334 CODE:
335{
336 int fd = sv_fileno (fh);
337 CHECK_FD (fh, fd);
338
323 RETVAL = e_new (sizeof (struct ev_io), cb); 339 RETVAL = e_new (sizeof (struct ev_io), cb);
324 RETVAL->fh = newSVsv (fh); 340 RETVAL->fh = newSVsv (fh);
325 evio_set (RETVAL, sv_fileno (RETVAL->fh), events); 341 ev_io_set (RETVAL, fd, events);
326 if (!ix) evio_start (RETVAL); 342 if (!ix) ev_io_start (RETVAL);
343}
327 OUTPUT: 344 OUTPUT:
328 RETVAL 345 RETVAL
329 346
330struct ev_timer *timer (NV after, NV repeat, SV *cb) 347struct ev_timer *timer (NV after, NV repeat, SV *cb)
331 PROTOTYPE: $$&
332 ALIAS: 348 ALIAS:
333 timer_ns = 1 349 timer_ns = 1
334 INIT: 350 INIT:
335 CHECK_REPEAT (repeat); 351 CHECK_REPEAT (repeat);
336 CODE: 352 CODE:
337 RETVAL = e_new (sizeof (struct ev_timer), cb); 353 RETVAL = e_new (sizeof (struct ev_timer), cb);
338 evtimer_set (RETVAL, after, repeat); 354 ev_timer_set (RETVAL, after, repeat);
339 if (!ix) evtimer_start (RETVAL); 355 if (!ix) ev_timer_start (RETVAL);
340 OUTPUT: 356 OUTPUT:
341 RETVAL 357 RETVAL
342 358
343struct ev_periodic *periodic (NV at, NV interval, SV *cb) 359struct ev_periodic *periodic (NV at, NV interval, SV *cb)
344 PROTOTYPE: $$&
345 ALIAS: 360 ALIAS:
346 periodic_ns = 1 361 periodic_ns = 1
347 INIT: 362 INIT:
348 CHECK_REPEAT (interval); 363 CHECK_REPEAT (interval);
349 CODE: 364 CODE:
350 RETVAL = e_new (sizeof (struct ev_periodic), cb); 365 RETVAL = e_new (sizeof (struct ev_periodic), cb);
351 evperiodic_set (RETVAL, at, interval); 366 ev_periodic_set (RETVAL, at, interval);
352 if (!ix) evperiodic_start (RETVAL); 367 if (!ix) ev_periodic_start (RETVAL);
353 OUTPUT: 368 OUTPUT:
354 RETVAL 369 RETVAL
355 370
356struct ev_signal *signal (Signal signum, SV *cb) 371struct ev_signal *signal (Signal signum, SV *cb)
357 PROTOTYPE: $&
358 ALIAS: 372 ALIAS:
359 signal_ns = 1 373 signal_ns = 1
360 CODE: 374 CODE:
361 RETVAL = e_new (sizeof (struct ev_signal), cb); 375 RETVAL = e_new (sizeof (struct ev_signal), cb);
362 evsignal_set (RETVAL, signum); 376 ev_signal_set (RETVAL, signum);
363 if (!ix) evsignal_start (RETVAL); 377 if (!ix) ev_signal_start (RETVAL);
364 OUTPUT: 378 OUTPUT:
365 RETVAL 379 RETVAL
366 380
367struct ev_idle *idle (SV *cb) 381struct ev_idle *idle (SV *cb)
368 PROTOTYPE: &
369 ALIAS: 382 ALIAS:
370 idle_ns = 1 383 idle_ns = 1
371 CODE: 384 CODE:
372 RETVAL = e_new (sizeof (struct ev_idle), cb); 385 RETVAL = e_new (sizeof (struct ev_idle), cb);
373 evidle_set (RETVAL); 386 ev_idle_set (RETVAL);
374 if (!ix) evidle_start (RETVAL); 387 if (!ix) ev_idle_start (RETVAL);
388 OUTPUT:
389 RETVAL
390
391struct ev_prepare *prepare (SV *cb)
392 ALIAS:
393 prepare_ns = 1
394 CODE:
395 RETVAL = e_new (sizeof (struct ev_prepare), cb);
396 ev_prepare_set (RETVAL);
397 if (!ix) ev_prepare_start (RETVAL);
375 OUTPUT: 398 OUTPUT:
376 RETVAL 399 RETVAL
377 400
378struct ev_check *check (SV *cb) 401struct ev_check *check (SV *cb)
379 PROTOTYPE: &
380 ALIAS: 402 ALIAS:
381 check_ns = 1 403 check_ns = 1
382 CODE: 404 CODE:
383 RETVAL = e_new (sizeof (struct ev_check), cb); 405 RETVAL = e_new (sizeof (struct ev_check), cb);
384 evcheck_set (RETVAL); 406 ev_check_set (RETVAL);
385 if (!ix) evcheck_start (RETVAL); 407 if (!ix) ev_check_start (RETVAL);
408 OUTPUT:
409 RETVAL
410
411struct ev_child *child (int pid, SV *cb)
412 ALIAS:
413 check_ns = 1
414 CODE:
415 RETVAL = e_new (sizeof (struct ev_check), cb);
416 ev_child_set (RETVAL, pid);
417 if (!ix) ev_child_start (RETVAL);
386 OUTPUT: 418 OUTPUT:
387 RETVAL 419 RETVAL
388 420
389 421
390PROTOTYPES: DISABLE 422PROTOTYPES: DISABLE
402 sv_setsv (w->cb_sv, new_cb); 434 sv_setsv (w->cb_sv, new_cb);
403} 435}
404 OUTPUT: 436 OUTPUT:
405 RETVAL 437 RETVAL
406 438
439void trigger (struct ev_watcher *w, int revents = EV_NONE)
440 CODE:
441 w->cb (w, revents);
442
407MODULE = EV PACKAGE = EV::IO PREFIX = evio_ 443MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
408 444
409void evio_start (struct ev_io *w) 445void ev_io_start (struct ev_io *w)
410 446
411void evio_stop (struct ev_io *w) 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);
412 453
413void set (struct ev_io *w, SV *fh, int events) 454void set (struct ev_io *w, SV *fh, int events)
414 CODE: 455 CODE:
415{ 456{
416 int active = w->active; 457 int active = w->active;
458 int fd = sv_fileno (fh);
459 CHECK_FD (fh, fd);
460
417 if (active) evio_stop (w); 461 if (active) ev_io_stop (w);
418 462
419 sv_setsv (w->fh, fh); 463 sv_setsv (w->fh, fh);
420 evio_set (w, sv_fileno (w->fh), events); 464 ev_io_set (w, fd, events);
421 465
422 if (active) evio_start (w); 466 if (active) ev_io_start (w);
423} 467}
424 468
425SV *fh (struct ev_io *w, SV *new_fh = 0) 469SV *fh (struct ev_io *w, SV *new_fh = 0)
426 CODE: 470 CODE:
427{ 471{
428 RETVAL = newSVsv (w->fh); 472 RETVAL = newSVsv (w->fh);
429 473
430 if (items > 1) 474 if (items > 1)
431 { 475 {
432 int active = w->active; 476 int active = w->active;
433 if (active) evio_stop (w); 477 if (active) ev_io_stop (w);
434 478
435 sv_setsv (w->fh, new_fh); 479 sv_setsv (w->fh, new_fh);
436 evio_set (w, sv_fileno (w->fh), w->events); 480 ev_io_set (w, sv_fileno (w->fh), w->events);
437 481
438 if (active) evio_start (w); 482 if (active) ev_io_start (w);
439 } 483 }
440} 484}
441 OUTPUT: 485 OUTPUT:
442 RETVAL 486 RETVAL
443 487
447 RETVAL = w->events; 491 RETVAL = w->events;
448 492
449 if (items > 1) 493 if (items > 1)
450 { 494 {
451 int active = w->active; 495 int active = w->active;
452 if (active) evio_stop (w); 496 if (active) ev_io_stop (w);
453 497
454 evio_set (w, w->fd, new_events); 498 ev_io_set (w, w->fd, new_events);
455 499
456 if (active) evio_start (w); 500 if (active) ev_io_start (w);
457 } 501 }
458} 502}
459 OUTPUT: 503 OUTPUT:
460 RETVAL 504 RETVAL
461 505
462MODULE = EV PACKAGE = EV::Signal PREFIX = evsignal_ 506MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
463 507
464void evsignal_start (struct ev_signal *w) 508void ev_signal_start (struct ev_signal *w)
465 509
466void evsignal_stop (struct ev_signal *w) 510void ev_signal_stop (struct ev_signal *w)
511
512void DESTROY (struct ev_signal *w)
513 CODE:
514 ev_signal_stop (w);
515 e_destroy (w);
467 516
468void set (struct ev_signal *w, SV *signal = 0) 517void set (struct ev_signal *w, SV *signal = 0)
469 CODE: 518 CODE:
470{ 519{
471 Signal signum = sv_signum (signal); /* may croak here */ 520 Signal signum = sv_signum (signal); /* may croak here */
472 int active = w->active; 521 int active = w->active;
473 522
474 if (active) evsignal_stop (w); 523 if (active) ev_signal_stop (w);
475 evsignal_set (w, signum); 524 ev_signal_set (w, signum);
476 if (active) evsignal_start (w); 525 if (active) ev_signal_start (w);
477} 526}
478 527
479MODULE = EV PACKAGE = EV::Time 528MODULE = EV PACKAGE = EV::Time
480 529
481MODULE = EV PACKAGE = EV::Timer PREFIX = evtimer_ 530MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
482 531
483void evtimer_start (struct ev_timer *w) 532void ev_timer_start (struct ev_timer *w)
484 INIT: 533 INIT:
485 CHECK_REPEAT (w->repeat); 534 CHECK_REPEAT (w->repeat);
486 535
487void evtimer_stop (struct ev_timer *w) 536void ev_timer_stop (struct ev_timer *w)
488 537
489void evtimer_again (struct ev_timer *w) 538void ev_timer_again (struct ev_timer *w)
490 INIT: 539 INIT:
491 CHECK_REPEAT (w->repeat); 540 CHECK_REPEAT (w->repeat);
541
542void DESTROY (struct ev_timer *w)
543 CODE:
544 ev_timer_stop (w);
545 e_destroy (w);
492 546
493void set (struct ev_timer *w, NV after, NV repeat = 0.) 547void set (struct ev_timer *w, NV after, NV repeat = 0.)
494 INIT: 548 INIT:
495 CHECK_REPEAT (repeat); 549 CHECK_REPEAT (repeat);
496 CODE: 550 CODE:
497{ 551{
498 int active = w->active; 552 int active = w->active;
499 if (active) evtimer_stop (w); 553 if (active) ev_timer_stop (w);
500 evtimer_set (w, after, repeat); 554 ev_timer_set (w, after, repeat);
501 if (active) evtimer_start (w); 555 if (active) ev_timer_start (w);
502} 556}
503 557
504MODULE = EV PACKAGE = EV::Periodic PREFIX = evperiodic_ 558MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
505 559
506void evperiodic_start (struct ev_periodic *w) 560void ev_periodic_start (struct ev_periodic *w)
507 INIT: 561 INIT:
508 CHECK_REPEAT (w->interval); 562 CHECK_REPEAT (w->interval);
509 563
510void evperiodic_stop (struct ev_periodic *w) 564void ev_periodic_stop (struct ev_periodic *w)
565
566void DESTROY (struct ev_periodic *w)
567 CODE:
568 ev_periodic_stop (w);
569 e_destroy (w);
511 570
512void set (struct ev_periodic *w, NV at, NV interval = 0.) 571void set (struct ev_periodic *w, NV at, NV interval = 0.)
513 INIT: 572 INIT:
514 CHECK_REPEAT (interval); 573 CHECK_REPEAT (interval);
515 CODE: 574 CODE:
516{ 575{
517 int active = w->active; 576 int active = w->active;
518 if (active) evperiodic_stop (w); 577 if (active) ev_periodic_stop (w);
519 evperiodic_set (w, at, interval); 578 ev_periodic_set (w, at, interval);
520 if (active) evperiodic_start (w); 579 if (active) ev_periodic_start (w);
521} 580}
522 581
523MODULE = EV PACKAGE = EV::Idle PREFIX = evidle_ 582MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
524 583
525void evidle_start (struct ev_idle *w) 584void ev_idle_start (struct ev_idle *w)
526 585
527void evidle_stop (struct ev_idle *w) 586void ev_idle_stop (struct ev_idle *w)
528 587
588void DESTROY (struct ev_idle *w)
589 CODE:
590 ev_idle_stop (w);
591 e_destroy (w);
592
593MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
594
595void ev_prepare_start (struct ev_prepare *w)
596
597void ev_prepare_stop (struct ev_prepare *w)
598
599void DESTROY (struct ev_prepare *w)
600 CODE:
601 ev_prepare_stop (w);
602 e_destroy (w);
603
529MODULE = EV PACKAGE = EV::Check PREFIX = evcheck_ 604MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
530 605
531void evcheck_start (struct ev_check *w) 606void ev_check_start (struct ev_check *w)
532 607
533void evcheck_stop (struct ev_check *w) 608void ev_check_stop (struct ev_check *w)
609
610void DESTROY (struct ev_check *w)
611 CODE:
612 ev_check_stop (w);
613 e_destroy (w);
614
615MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
616
617void ev_child_start (struct ev_child *w)
618
619void ev_child_stop (struct ev_child *w)
620
621void DESTROY (struct ev_child *w)
622 CODE:
623 ev_child_stop (w);
624 e_destroy (w);
625
626void set (struct ev_child *w, int pid)
627 CODE:
628{
629 int active = w->active;
630 if (active) ev_child_stop (w);
631 ev_child_set (w, pid);
632 if (active) ev_child_start (w);
633}
634
635int status (struct ev_child *w)
636 CODE:
637 RETVAL = w->status;
638 OUTPUT:
639 RETVAL
534 640
535#if 0 641#if 0
536 642
537MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 643MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
538 644

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines