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

Comparing EV/EV.xs (file contents):
Revision 1.29 by root, Thu Nov 1 06:48:49 2007 UTC vs.
Revision 1.59 by root, Thu Nov 8 00:44:17 2007 UTC

2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define TIMEOUT_NONE HUGE_VAL
8#define HAVE_EPOLL 1
9
10#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
11#include "EV/EVAPI.h" 8#include "EV/EVAPI.h"
12 9
10/* fix perl api breakage */
11#undef signal
12#undef sigaction
13
14#define EV_SELECT_USE_WIN32_HANDLES 0
15#define EV_SELECT_USE_FD_SET 0
16/* due to bugs in OS X we have to use libev/ explicitly here */
13#include "libev/ev.c" 17#include "libev/ev.c"
18#include "event.c"
19
20#ifndef WIN32
21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
22#if !defined (WIN32) && !defined(__CYGWIN__)
23# define HAVE_STRUCT_IN6_ADDR 1
24#endif
25#undef HAVE_STRTOK_R
26#undef strtok_r
27#define strtok_r fake_strtok_r
28#include "evdns.c"
29#endif
30
31#ifndef WIN32
32# include <pthread.h>
33#endif
14 34
15typedef int Signal; 35typedef int Signal;
16 36
17static struct EVAPI evapi; 37static struct EVAPI evapi;
18 38
19static HV 39static HV
20 *stash_watcher, 40 *stash_watcher,
21 *stash_io, 41 *stash_io,
22 *stash_time,
23 *stash_timer, 42 *stash_timer,
24 *stash_periodic, 43 *stash_periodic,
25 *stash_signal, 44 *stash_signal,
26 *stash_idle, 45 *stash_idle,
27 *stash_prepare, 46 *stash_prepare,
28 *stash_check, 47 *stash_check,
29 *stash_child; 48 *stash_child;
30 49
50#ifndef SIG_SIZE
51/* kudos to Slaven Rezic for the idea */
52static char sig_size [] = { SIG_NUM };
53# define SIG_SIZE (sizeof (sig_size) + 1)
54#endif
55
31static int 56static int
32sv_signum (SV *sig) 57sv_signum (SV *sig)
33{ 58{
34 int signum; 59 int signum;
35 60
36 if (SvIV (sig) > 0) 61 SvGETMAGIC (sig);
37 return SvIV (sig);
38 62
39 for (signum = 1; signum < SIG_SIZE; ++signum) 63 for (signum = 1; signum < SIG_SIZE; ++signum)
40 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum])) 64 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum]))
41 return signum; 65 return signum;
42 66
67 if (SvIV (sig) > 0)
68 return SvIV (sig);
69
43 return -1; 70 return -1;
44} 71}
45 72
46///////////////////////////////////////////////////////////////////////////// 73/////////////////////////////////////////////////////////////////////////////
47// Event 74// Event
57 fh = SvRV (fh); 84 fh = SvRV (fh);
58 85
59 if (SvTYPE (fh) == SVt_PVGV) 86 if (SvTYPE (fh) == SVt_PVGV)
60 return PerlIO_fileno (IoIFP (sv_2io (fh))); 87 return PerlIO_fileno (IoIFP (sv_2io (fh)));
61 88
62 if (SvIOK (fh)) 89 if ((SvIV (fh) >= 0) && (SvIV (fh) < 0x7ffffff))
63 return SvIV (fh); 90 return SvIV (fh);
64 91
65 return -1; 92 return -1;
66} 93}
67 94
80 w->fh = 0; 107 w->fh = 0;
81 w->cb_sv = newSVsv (cb_sv); 108 w->cb_sv = newSVsv (cb_sv);
82 w->self = self; 109 w->self = self;
83 110
84 return (void *)w; 111 return (void *)w;
112}
113
114static void
115e_destroy (void *w_)
116{
117 struct ev_watcher *w = (struct ev_watcher *)w_;
118
119 SvREFCNT_dec (w->fh ); w->fh = 0;
120 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
85} 121}
86 122
87static SV * 123static SV *
88e_bless (struct ev_watcher *w, HV *stash) 124e_bless (struct ev_watcher *w, HV *stash)
89{ 125{
122 PUSHMARK (SP); 158 PUSHMARK (SP);
123 EXTEND (SP, 2); 159 EXTEND (SP, 2);
124 PUSHs (sv_self); 160 PUSHs (sv_self);
125 PUSHs (sv_events); 161 PUSHs (sv_events);
126 162
127 if (revents & EV_CHILD)
128 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
129
130 PUTBACK; 163 PUTBACK;
131 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 164 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
132 SP = PL_stack_base + mark; PUTBACK; 165 SP = PL_stack_base + mark; PUTBACK;
133 166
134 SvREFCNT_dec (sv_self); 167 SvREFCNT_dec (sv_self);
146 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 179 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
147 SP = PL_stack_base + mark; PUTBACK; 180 SP = PL_stack_base + mark; PUTBACK;
148 } 181 }
149} 182}
150 183
151#if 0 184static ev_tstamp
185e_periodic_cb (struct ev_periodic *w, ev_tstamp now)
186{
187 ev_tstamp retval;
188 int count;
189 dSP;
190
191 ENTER;
192 SAVETMPS;
193
194 PUSHMARK (SP);
195 EXTEND (SP, 2);
196 PUSHs (newRV_inc (w->self)); /* w->self MUST be blessed by now */
197 PUSHs (newSVnv (now));
198
199 PUTBACK;
200 count = call_sv (w->fh, G_SCALAR | G_EVAL);
201 SPAGAIN;
202
203 if (SvTRUE (ERRSV))
204 {
205 PUSHMARK (SP);
206 PUTBACK;
207 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
208 SPAGAIN;
209 }
210
211 if (count > 0)
212 {
213 retval = SvNV (TOPs);
214
215 if (retval < now)
216 retval = now;
217 }
218 else
219 retval = now;
220
221 FREETMPS;
222 LEAVE;
223
224 return retval;
225}
226
152///////////////////////////////////////////////////////////////////////////// 227/////////////////////////////////////////////////////////////////////////////
153// DNS 228// DNS
154 229
230#ifndef WIN32
155static void 231static void
156dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 232dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
157{ 233{
158 dSP; 234 dSP;
159 SV *cb = (SV *)arg; 235 SV *cb = (SV *)arg;
203#endif 279#endif
204 280
205#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 281#define CHECK_REPEAT(repeat) if (repeat < 0.) \
206 croak (# repeat " value must be >= 0"); 282 croak (# repeat " value must be >= 0");
207 283
284#define CHECK_FD(fh,fd) if ((fd) < 0) \
285 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
286
208///////////////////////////////////////////////////////////////////////////// 287/////////////////////////////////////////////////////////////////////////////
209// XS interface functions 288// XS interface functions
210 289
211MODULE = EV PACKAGE = EV PREFIX = ev_ 290MODULE = EV PACKAGE = EV PREFIX = ev_
212 291
213PROTOTYPES: ENABLE 292PROTOTYPES: ENABLE
214 293
215BOOT: 294BOOT:
216{ 295{
217 int i;
218 HV *stash = gv_stashpv ("EV", 1); 296 HV *stash = gv_stashpv ("EV", 1);
219 297
220 static const struct { 298 static const struct {
221 const char *name; 299 const char *name;
222 IV iv; 300 IV iv;
223 } *civ, const_iv[] = { 301 } *civ, const_iv[] = {
224# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 302# define const_iv(pfx, name) { # name, (IV) pfx ## name },
303 const_iv (EV_, MINPRI)
304 const_iv (EV_, MAXPRI)
305
225 const_iv (EV_, UNDEF) 306 const_iv (EV_, UNDEF)
226 const_iv (EV_, NONE) 307 const_iv (EV_, NONE)
227 const_iv (EV_, TIMEOUT) 308 const_iv (EV_, TIMEOUT)
228 const_iv (EV_, READ) 309 const_iv (EV_, READ)
229 const_iv (EV_, WRITE) 310 const_iv (EV_, WRITE)
233 const_iv (EV_, ERROR) 314 const_iv (EV_, ERROR)
234 315
235 const_iv (EV, LOOP_ONESHOT) 316 const_iv (EV, LOOP_ONESHOT)
236 const_iv (EV, LOOP_NONBLOCK) 317 const_iv (EV, LOOP_NONBLOCK)
237 318
238 const_iv (EV, METHOD_NONE) 319 const_iv (EV, METHOD_AUTO)
239 const_iv (EV, METHOD_SELECT) 320 const_iv (EV, METHOD_SELECT)
321 const_iv (EV, METHOD_POLL)
240 const_iv (EV, METHOD_EPOLL) 322 const_iv (EV, METHOD_EPOLL)
323 const_iv (EV, METHOD_KQUEUE)
324 const_iv (EV, METHOD_DEVPOLL)
325 const_iv (EV, METHOD_PORT)
326 const_iv (EV, METHOD_ANY)
241 }; 327 };
242 328
243 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 329 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
244 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 330 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
245 331
246 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 332 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
247 stash_io = gv_stashpv ("EV::Io" , 1); 333 stash_io = gv_stashpv ("EV::Io" , 1);
248 stash_time = gv_stashpv ("EV::Time" , 1);
249 stash_timer = gv_stashpv ("EV::Timer" , 1); 334 stash_timer = gv_stashpv ("EV::Timer" , 1);
250 stash_periodic = gv_stashpv ("EV::Periodic", 1); 335 stash_periodic = gv_stashpv ("EV::Periodic", 1);
251 stash_signal = gv_stashpv ("EV::Signal" , 1); 336 stash_signal = gv_stashpv ("EV::Signal" , 1);
252 stash_idle = gv_stashpv ("EV::Idle" , 1); 337 stash_idle = gv_stashpv ("EV::Idle" , 1);
253 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 338 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
261 /* the poor man's shared library emulator */ 346 /* the poor man's shared library emulator */
262 evapi.ver = EV_API_VERSION; 347 evapi.ver = EV_API_VERSION;
263 evapi.rev = EV_API_REVISION; 348 evapi.rev = EV_API_REVISION;
264 evapi.sv_fileno = sv_fileno; 349 evapi.sv_fileno = sv_fileno;
265 evapi.sv_signum = sv_signum; 350 evapi.sv_signum = sv_signum;
266 evapi.now = &ev_now; 351 evapi.now = ev_now;
267 evapi.method = &ev_method; 352 evapi.method = ev_method;
268 evapi.loop_done = &ev_loop_done; 353 evapi.unloop = ev_unloop;
269 evapi.time = ev_time; 354 evapi.time = ev_time;
270 evapi.loop = ev_loop; 355 evapi.loop = ev_loop;
271 evapi.once = ev_once; 356 evapi.once = ev_once;
272 evapi.io_start = ev_io_start; 357 evapi.io_start = ev_io_start;
273 evapi.io_stop = ev_io_stop; 358 evapi.io_stop = ev_io_stop;
288 evapi.child_stop = ev_child_stop; 373 evapi.child_stop = ev_child_stop;
289 374
290 sv_setiv (sv, (IV)&evapi); 375 sv_setiv (sv, (IV)&evapi);
291 SvREADONLY_on (sv); 376 SvREADONLY_on (sv);
292 } 377 }
378#ifndef WIN32
379 pthread_atfork (0, 0, ev_default_fork);
380#endif
293} 381}
294 382
295NV ev_now () 383NV ev_now ()
296 CODE:
297 RETVAL = ev_now;
298 OUTPUT:
299 RETVAL
300 384
301int ev_method () 385int ev_method ()
302 CODE:
303 RETVAL = ev_method;
304 OUTPUT:
305 RETVAL
306 386
307NV ev_time () 387NV ev_time ()
308 388
309void ev_init (int flags = 0) 389int ev_default_loop (int methods = EVMETHOD_AUTO)
310 390
311void ev_loop (int flags = 0) 391void ev_loop (int flags = 0)
312 392
313void ev_loop_done (int value = 1) 393void ev_unloop (int how = 1)
314 CODE:
315 ev_loop_done = value;
316 394
317struct ev_io *io (SV *fh, int events, SV *cb) 395struct ev_io *io (SV *fh, int events, SV *cb)
318 ALIAS: 396 ALIAS:
319 io_ns = 1 397 io_ns = 1
320 CODE: 398 CODE:
399{
400 int fd = sv_fileno (fh);
401 CHECK_FD (fh, fd);
402
321 RETVAL = e_new (sizeof (struct ev_io), cb); 403 RETVAL = e_new (sizeof (struct ev_io), cb);
322 RETVAL->fh = newSVsv (fh); 404 RETVAL->fh = newSVsv (fh);
323 ev_io_set (RETVAL, sv_fileno (RETVAL->fh), events); 405 ev_io_set (RETVAL, fd, events);
324 if (!ix) ev_io_start (RETVAL); 406 if (!ix) ev_io_start (RETVAL);
407}
325 OUTPUT: 408 OUTPUT:
326 RETVAL 409 RETVAL
327 410
328struct ev_timer *timer (NV after, NV repeat, SV *cb) 411struct ev_timer *timer (NV after, NV repeat, SV *cb)
329 ALIAS: 412 ALIAS:
335 ev_timer_set (RETVAL, after, repeat); 418 ev_timer_set (RETVAL, after, repeat);
336 if (!ix) ev_timer_start (RETVAL); 419 if (!ix) ev_timer_start (RETVAL);
337 OUTPUT: 420 OUTPUT:
338 RETVAL 421 RETVAL
339 422
340struct ev_periodic *periodic (NV at, NV interval, SV *cb) 423SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
341 ALIAS: 424 ALIAS:
342 periodic_ns = 1 425 periodic_ns = 1
343 INIT: 426 INIT:
344 CHECK_REPEAT (interval); 427 CHECK_REPEAT (interval);
345 CODE: 428 CODE:
429{
430 struct ev_periodic *w;
346 RETVAL = e_new (sizeof (struct ev_periodic), cb); 431 w = e_new (sizeof (struct ev_periodic), cb);
347 ev_periodic_set (RETVAL, at, interval); 432 w->fh = SvOK (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
433 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
434 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic);
348 if (!ix) ev_periodic_start (RETVAL); 435 if (!ix) ev_periodic_start (w);
436}
349 OUTPUT: 437 OUTPUT:
350 RETVAL 438 RETVAL
351 439
352struct ev_signal *signal (Signal signum, SV *cb) 440struct ev_signal *signal (Signal signum, SV *cb)
353 ALIAS: 441 ALIAS:
391 479
392struct ev_child *child (int pid, SV *cb) 480struct ev_child *child (int pid, SV *cb)
393 ALIAS: 481 ALIAS:
394 check_ns = 1 482 check_ns = 1
395 CODE: 483 CODE:
396 RETVAL = e_new (sizeof (struct ev_check), cb); 484 RETVAL = e_new (sizeof (struct ev_child), cb);
397 ev_child_set (RETVAL, pid); 485 ev_child_set (RETVAL, pid);
398 if (!ix) ev_child_start (RETVAL); 486 if (!ix) ev_child_start (RETVAL);
399 OUTPUT: 487 OUTPUT:
400 RETVAL 488 RETVAL
401 489
419 507
420void trigger (struct ev_watcher *w, int revents = EV_NONE) 508void trigger (struct ev_watcher *w, int revents = EV_NONE)
421 CODE: 509 CODE:
422 w->cb (w, revents); 510 w->cb (w, revents);
423 511
424MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_ 512int priority (struct ev_watcher *w, int new_priority = 0)
425
426void ev_io_start (struct ev_io *w)
427
428void ev_io_stop (struct ev_io *w)
429
430void DESTROY (struct ev_io *w)
431 CODE: 513 CODE:
432 ev_io_stop (w);
433
434void set (struct ev_io *w, SV *fh, int events)
435 CODE:
436{ 514{
437 int active = w->active; 515 RETVAL = w->priority;
438 if (active) ev_io_stop (w);
439
440 sv_setsv (w->fh, fh);
441 ev_io_set (w, sv_fileno (w->fh), events);
442
443 if (active) ev_io_start (w);
444}
445
446SV *fh (struct ev_io *w, SV *new_fh = 0)
447 CODE:
448{
449 RETVAL = newSVsv (w->fh);
450 516
451 if (items > 1) 517 if (items > 1)
452 { 518 {
453 int active = w->active; 519 int active = ev_is_active (w);
520
521 if (new_priority < EV_MINPRI || new_priority > EV_MAXPRI)
522 croak ("watcher priority out of range, value must be between %d and %d, inclusive", EV_MINPRI, EV_MAXPRI);
523
524 if (active)
525 {
526 /* grrr. */
527 PUSHMARK (SP);
528 XPUSHs (ST (0));
529 call_method ("stop", G_DISCARD | G_VOID);
530 }
531
532 ev_set_priority (w, new_priority);
533
534 if (active)
535 {
536 PUSHMARK (SP);
537 XPUSHs (ST (0));
538 call_method ("start", G_DISCARD | G_VOID);
539 }
540 }
541}
542 OUTPUT:
543 RETVAL
544
545MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
546
547void ev_io_start (struct ev_io *w)
548
549void ev_io_stop (struct ev_io *w)
550
551void DESTROY (struct ev_io *w)
552 CODE:
553 ev_io_stop (w);
554 e_destroy (w);
555
556void set (struct ev_io *w, SV *fh, int events)
557 CODE:
558{
559 int active = ev_is_active (w);
560 int fd = sv_fileno (fh);
561 CHECK_FD (fh, fd);
562
563 if (active) ev_io_stop (w);
564
565 sv_setsv (w->fh, fh);
566 ev_io_set (w, fd, events);
567
568 if (active) ev_io_start (w);
569}
570
571SV *fh (struct ev_io *w, SV *new_fh = 0)
572 CODE:
573{
574 RETVAL = newSVsv (w->fh);
575
576 if (items > 1)
577 {
578 int active = ev_is_active (w);
454 if (active) ev_io_stop (w); 579 if (active) ev_io_stop (w);
455 580
456 sv_setsv (w->fh, new_fh); 581 sv_setsv (w->fh, new_fh);
457 ev_io_set (w, sv_fileno (w->fh), w->events); 582 ev_io_set (w, sv_fileno (w->fh), w->events);
458 583
460 } 585 }
461} 586}
462 OUTPUT: 587 OUTPUT:
463 RETVAL 588 RETVAL
464 589
465short events (struct ev_io *w, short new_events = EV_UNDEF) 590int events (struct ev_io *w, int new_events = EV_UNDEF)
466 CODE: 591 CODE:
467{ 592{
468 RETVAL = w->events; 593 RETVAL = w->events;
469 594
470 if (items > 1) 595 if (items > 1)
471 { 596 {
472 int active = w->active; 597 int active = ev_is_active (w);
473 if (active) ev_io_stop (w); 598 if (active) ev_io_stop (w);
474 599
475 ev_io_set (w, w->fd, new_events); 600 ev_io_set (w, w->fd, new_events);
476 601
477 if (active) ev_io_start (w); 602 if (active) ev_io_start (w);
487void ev_signal_stop (struct ev_signal *w) 612void ev_signal_stop (struct ev_signal *w)
488 613
489void DESTROY (struct ev_signal *w) 614void DESTROY (struct ev_signal *w)
490 CODE: 615 CODE:
491 ev_signal_stop (w); 616 ev_signal_stop (w);
617 e_destroy (w);
492 618
493void set (struct ev_signal *w, SV *signal = 0) 619void set (struct ev_signal *w, SV *signal)
494 CODE: 620 CODE:
495{ 621{
496 Signal signum = sv_signum (signal); /* may croak here */ 622 Signal signum = sv_signum (signal); /* may croak here */
497 int active = w->active; 623 int active = ev_is_active (w);
498 624
499 if (active) ev_signal_stop (w); 625 if (active) ev_signal_stop (w);
626
500 ev_signal_set (w, signum); 627 ev_signal_set (w, signum);
628
501 if (active) ev_signal_start (w); 629 if (active) ev_signal_start (w);
502} 630}
503 631
504MODULE = EV PACKAGE = EV::Time 632int signal (struct ev_signal *w, SV *new_signal = 0)
633 CODE:
634{
635 RETVAL = w->signum;
636
637 if (items > 1)
638 {
639 Signal signum = sv_signum (new_signal); /* may croak here */
640 int active = ev_is_active (w);
641 if (active) ev_signal_stop (w);
642
643 ev_signal_set (w, signum);
644
645 if (active) ev_signal_start (w);
646 }
647}
648 OUTPUT:
649 RETVAL
505 650
506MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 651MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
507 652
508void ev_timer_start (struct ev_timer *w) 653void ev_timer_start (struct ev_timer *w)
509 INIT: 654 INIT:
516 CHECK_REPEAT (w->repeat); 661 CHECK_REPEAT (w->repeat);
517 662
518void DESTROY (struct ev_timer *w) 663void DESTROY (struct ev_timer *w)
519 CODE: 664 CODE:
520 ev_timer_stop (w); 665 ev_timer_stop (w);
666 e_destroy (w);
521 667
522void set (struct ev_timer *w, NV after, NV repeat = 0.) 668void set (struct ev_timer *w, NV after, NV repeat = 0.)
523 INIT: 669 INIT:
524 CHECK_REPEAT (repeat); 670 CHECK_REPEAT (repeat);
525 CODE: 671 CODE:
526{ 672{
527 int active = w->active; 673 int active = ev_is_active (w);
528 if (active) ev_timer_stop (w); 674 if (active) ev_timer_stop (w);
529 ev_timer_set (w, after, repeat); 675 ev_timer_set (w, after, repeat);
530 if (active) ev_timer_start (w); 676 if (active) ev_timer_start (w);
531} 677}
532 678
536 INIT: 682 INIT:
537 CHECK_REPEAT (w->interval); 683 CHECK_REPEAT (w->interval);
538 684
539void ev_periodic_stop (struct ev_periodic *w) 685void ev_periodic_stop (struct ev_periodic *w)
540 686
687void ev_periodic_again (struct ev_periodic *w)
688
541void DESTROY (struct ev_periodic *w) 689void DESTROY (struct ev_periodic *w)
542 CODE: 690 CODE:
543 ev_periodic_stop (w); 691 ev_periodic_stop (w);
692 e_destroy (w);
544 693
545void set (struct ev_periodic *w, NV at, NV interval = 0.) 694void set (struct ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef)
546 INIT: 695 INIT:
547 CHECK_REPEAT (interval); 696 CHECK_REPEAT (interval);
548 CODE: 697 CODE:
549{ 698{
550 int active = w->active; 699 int active = ev_is_active (w);
551 if (active) ev_periodic_stop (w); 700 if (active) ev_periodic_stop (w);
701
702 SvREFCNT_dec (w->fh);
703 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
552 ev_periodic_set (w, at, interval); 704 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
705
553 if (active) ev_periodic_start (w); 706 if (active) ev_periodic_start (w);
554} 707}
555 708
556MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 709MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
557 710
560void ev_idle_stop (struct ev_idle *w) 713void ev_idle_stop (struct ev_idle *w)
561 714
562void DESTROY (struct ev_idle *w) 715void DESTROY (struct ev_idle *w)
563 CODE: 716 CODE:
564 ev_idle_stop (w); 717 ev_idle_stop (w);
718 e_destroy (w);
565 719
566MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_ 720MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
567 721
568void ev_prepare_start (struct ev_prepare *w) 722void ev_prepare_start (struct ev_prepare *w)
569 723
570void ev_prepare_stop (struct ev_prepare *w) 724void ev_prepare_stop (struct ev_prepare *w)
571 725
572void DESTROY (struct ev_prepare *w) 726void DESTROY (struct ev_prepare *w)
573 CODE: 727 CODE:
574 ev_prepare_stop (w); 728 ev_prepare_stop (w);
729 e_destroy (w);
575 730
576MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_ 731MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
577 732
578void ev_check_start (struct ev_check *w) 733void ev_check_start (struct ev_check *w)
579 734
580void ev_check_stop (struct ev_check *w) 735void ev_check_stop (struct ev_check *w)
581 736
582void DESTROY (struct ev_check *w) 737void DESTROY (struct ev_check *w)
583 CODE: 738 CODE:
584 ev_check_stop (w); 739 ev_check_stop (w);
740 e_destroy (w);
585 741
586MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 742MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
587 743
588void ev_child_start (struct ev_child *w) 744void ev_child_start (struct ev_child *w)
589 745
590void ev_child_stop (struct ev_child *w) 746void ev_child_stop (struct ev_child *w)
591 747
592void DESTROY (struct ev_child *w) 748void DESTROY (struct ev_child *w)
593 CODE: 749 CODE:
594 ev_child_stop (w); 750 ev_child_stop (w);
751 e_destroy (w);
595 752
596void set (struct ev_child *w, int pid) 753void set (struct ev_child *w, int pid)
597 CODE: 754 CODE:
598{ 755{
599 int active = w->active; 756 int active = ev_is_active (w);
600 if (active) ev_child_stop (w); 757 if (active) ev_child_stop (w);
758
601 ev_child_set (w, pid); 759 ev_child_set (w, pid);
760
602 if (active) ev_child_start (w); 761 if (active) ev_child_start (w);
603} 762}
604 763
764int pid (struct ev_child *w, int new_pid = 0)
765 CODE:
766{
767 RETVAL = w->pid;
768
769 if (items > 1)
770 {
771 int active = ev_is_active (w);
772 if (active) ev_child_stop (w);
773
774 ev_child_set (w, new_pid);
775
776 if (active) ev_child_start (w);
777 }
778}
779 OUTPUT:
780 RETVAL
781
782
605int status (struct ev_child *w) 783int rstatus (struct ev_child *w)
784 ALIAS:
785 rpid = 1
606 CODE: 786 CODE:
607 RETVAL = w->status; 787 RETVAL = ix ? w->rpid : w->rstatus;
608 OUTPUT: 788 OUTPUT:
609 RETVAL 789 RETVAL
610 790
611#if 0 791#ifndef WIN32
612 792
613MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 793MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
614 794
615BOOT: 795BOOT:
616{ 796{
699 879
700void evdns_search_add (char *domain) 880void evdns_search_add (char *domain)
701 881
702void evdns_search_ndots_set (int ndots) 882void evdns_search_ndots_set (int ndots)
703 883
884#if 0
704 885
705MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 886MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
706 887
707BOOT: 888BOOT:
708{ 889{
740 921
741#void DESTROY (struct evhttp_request *req); 922#void DESTROY (struct evhttp_request *req);
742 923
743#endif 924#endif
744 925
926#endif
745 927
746 928
747 929
748 930
749 931

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines