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.60 by root, Thu Nov 8 02:19:36 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;
121 SvREFCNT_dec (w->data ); w->data = 0;
85} 122}
86 123
87static SV * 124static SV *
88e_bless (struct ev_watcher *w, HV *stash) 125e_bless (struct ev_watcher *w, HV *stash)
89{ 126{
122 PUSHMARK (SP); 159 PUSHMARK (SP);
123 EXTEND (SP, 2); 160 EXTEND (SP, 2);
124 PUSHs (sv_self); 161 PUSHs (sv_self);
125 PUSHs (sv_events); 162 PUSHs (sv_events);
126 163
127 if (revents & EV_CHILD)
128 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
129
130 PUTBACK; 164 PUTBACK;
131 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 165 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
132 SP = PL_stack_base + mark; PUTBACK; 166 SP = PL_stack_base + mark; PUTBACK;
133 167
134 SvREFCNT_dec (sv_self); 168 SvREFCNT_dec (sv_self);
146 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 180 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
147 SP = PL_stack_base + mark; PUTBACK; 181 SP = PL_stack_base + mark; PUTBACK;
148 } 182 }
149} 183}
150 184
151#if 0 185static ev_tstamp
186e_periodic_cb (struct ev_periodic *w, ev_tstamp now)
187{
188 ev_tstamp retval;
189 int count;
190 dSP;
191
192 ENTER;
193 SAVETMPS;
194
195 PUSHMARK (SP);
196 EXTEND (SP, 2);
197 PUSHs (newRV_inc (w->self)); /* w->self MUST be blessed by now */
198 PUSHs (newSVnv (now));
199
200 PUTBACK;
201 count = call_sv (w->fh, G_SCALAR | G_EVAL);
202 SPAGAIN;
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 SPAGAIN;
210 }
211
212 if (count > 0)
213 {
214 retval = SvNV (TOPs);
215
216 if (retval < now)
217 retval = now;
218 }
219 else
220 retval = now;
221
222 FREETMPS;
223 LEAVE;
224
225 return retval;
226}
227
152///////////////////////////////////////////////////////////////////////////// 228/////////////////////////////////////////////////////////////////////////////
153// DNS 229// DNS
154 230
231#ifndef WIN32
155static void 232static void
156dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 233dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
157{ 234{
158 dSP; 235 dSP;
159 SV *cb = (SV *)arg; 236 SV *cb = (SV *)arg;
203#endif 280#endif
204 281
205#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 282#define CHECK_REPEAT(repeat) if (repeat < 0.) \
206 croak (# repeat " value must be >= 0"); 283 croak (# repeat " value must be >= 0");
207 284
285#define CHECK_FD(fh,fd) if ((fd) < 0) \
286 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
287
208///////////////////////////////////////////////////////////////////////////// 288/////////////////////////////////////////////////////////////////////////////
209// XS interface functions 289// XS interface functions
210 290
211MODULE = EV PACKAGE = EV PREFIX = ev_ 291MODULE = EV PACKAGE = EV PREFIX = ev_
212 292
213PROTOTYPES: ENABLE 293PROTOTYPES: ENABLE
214 294
215BOOT: 295BOOT:
216{ 296{
217 int i;
218 HV *stash = gv_stashpv ("EV", 1); 297 HV *stash = gv_stashpv ("EV", 1);
219 298
220 static const struct { 299 static const struct {
221 const char *name; 300 const char *name;
222 IV iv; 301 IV iv;
223 } *civ, const_iv[] = { 302 } *civ, const_iv[] = {
224# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 303# define const_iv(pfx, name) { # name, (IV) pfx ## name },
304 const_iv (EV_, MINPRI)
305 const_iv (EV_, MAXPRI)
306
225 const_iv (EV_, UNDEF) 307 const_iv (EV_, UNDEF)
226 const_iv (EV_, NONE) 308 const_iv (EV_, NONE)
227 const_iv (EV_, TIMEOUT) 309 const_iv (EV_, TIMEOUT)
228 const_iv (EV_, READ) 310 const_iv (EV_, READ)
229 const_iv (EV_, WRITE) 311 const_iv (EV_, WRITE)
233 const_iv (EV_, ERROR) 315 const_iv (EV_, ERROR)
234 316
235 const_iv (EV, LOOP_ONESHOT) 317 const_iv (EV, LOOP_ONESHOT)
236 const_iv (EV, LOOP_NONBLOCK) 318 const_iv (EV, LOOP_NONBLOCK)
237 319
238 const_iv (EV, METHOD_NONE) 320 const_iv (EV, METHOD_AUTO)
239 const_iv (EV, METHOD_SELECT) 321 const_iv (EV, METHOD_SELECT)
322 const_iv (EV, METHOD_POLL)
240 const_iv (EV, METHOD_EPOLL) 323 const_iv (EV, METHOD_EPOLL)
324 const_iv (EV, METHOD_KQUEUE)
325 const_iv (EV, METHOD_DEVPOLL)
326 const_iv (EV, METHOD_PORT)
327 const_iv (EV, METHOD_ANY)
241 }; 328 };
242 329
243 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 330 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
244 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 331 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
245 332
246 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 333 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
247 stash_io = gv_stashpv ("EV::Io" , 1); 334 stash_io = gv_stashpv ("EV::Io" , 1);
248 stash_time = gv_stashpv ("EV::Time" , 1);
249 stash_timer = gv_stashpv ("EV::Timer" , 1); 335 stash_timer = gv_stashpv ("EV::Timer" , 1);
250 stash_periodic = gv_stashpv ("EV::Periodic", 1); 336 stash_periodic = gv_stashpv ("EV::Periodic", 1);
251 stash_signal = gv_stashpv ("EV::Signal" , 1); 337 stash_signal = gv_stashpv ("EV::Signal" , 1);
252 stash_idle = gv_stashpv ("EV::Idle" , 1); 338 stash_idle = gv_stashpv ("EV::Idle" , 1);
253 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 339 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
261 /* the poor man's shared library emulator */ 347 /* the poor man's shared library emulator */
262 evapi.ver = EV_API_VERSION; 348 evapi.ver = EV_API_VERSION;
263 evapi.rev = EV_API_REVISION; 349 evapi.rev = EV_API_REVISION;
264 evapi.sv_fileno = sv_fileno; 350 evapi.sv_fileno = sv_fileno;
265 evapi.sv_signum = sv_signum; 351 evapi.sv_signum = sv_signum;
266 evapi.now = &ev_now; 352 evapi.now = ev_now;
267 evapi.method = &ev_method; 353 evapi.method = ev_method;
268 evapi.loop_done = &ev_loop_done; 354 evapi.unloop = ev_unloop;
269 evapi.time = ev_time; 355 evapi.time = ev_time;
270 evapi.loop = ev_loop; 356 evapi.loop = ev_loop;
271 evapi.once = ev_once; 357 evapi.once = ev_once;
272 evapi.io_start = ev_io_start; 358 evapi.io_start = ev_io_start;
273 evapi.io_stop = ev_io_stop; 359 evapi.io_stop = ev_io_stop;
288 evapi.child_stop = ev_child_stop; 374 evapi.child_stop = ev_child_stop;
289 375
290 sv_setiv (sv, (IV)&evapi); 376 sv_setiv (sv, (IV)&evapi);
291 SvREADONLY_on (sv); 377 SvREADONLY_on (sv);
292 } 378 }
379#ifndef WIN32
380 pthread_atfork (0, 0, ev_default_fork);
381#endif
293} 382}
294 383
295NV ev_now () 384NV ev_now ()
296 CODE:
297 RETVAL = ev_now;
298 OUTPUT:
299 RETVAL
300 385
301int ev_method () 386int ev_method ()
302 CODE:
303 RETVAL = ev_method;
304 OUTPUT:
305 RETVAL
306 387
307NV ev_time () 388NV ev_time ()
308 389
309void ev_init (int flags = 0) 390int ev_default_loop (int methods = EVMETHOD_AUTO)
310 391
311void ev_loop (int flags = 0) 392void ev_loop (int flags = 0)
312 393
313void ev_loop_done (int value = 1) 394void ev_unloop (int how = 1)
314 CODE:
315 ev_loop_done = value;
316 395
317struct ev_io *io (SV *fh, int events, SV *cb) 396struct ev_io *io (SV *fh, int events, SV *cb)
318 ALIAS: 397 ALIAS:
319 io_ns = 1 398 io_ns = 1
320 CODE: 399 CODE:
400{
401 int fd = sv_fileno (fh);
402 CHECK_FD (fh, fd);
403
321 RETVAL = e_new (sizeof (struct ev_io), cb); 404 RETVAL = e_new (sizeof (struct ev_io), cb);
322 RETVAL->fh = newSVsv (fh); 405 RETVAL->fh = newSVsv (fh);
323 ev_io_set (RETVAL, sv_fileno (RETVAL->fh), events); 406 ev_io_set (RETVAL, fd, events);
324 if (!ix) ev_io_start (RETVAL); 407 if (!ix) ev_io_start (RETVAL);
408}
325 OUTPUT: 409 OUTPUT:
326 RETVAL 410 RETVAL
327 411
328struct ev_timer *timer (NV after, NV repeat, SV *cb) 412struct ev_timer *timer (NV after, NV repeat, SV *cb)
329 ALIAS: 413 ALIAS:
335 ev_timer_set (RETVAL, after, repeat); 419 ev_timer_set (RETVAL, after, repeat);
336 if (!ix) ev_timer_start (RETVAL); 420 if (!ix) ev_timer_start (RETVAL);
337 OUTPUT: 421 OUTPUT:
338 RETVAL 422 RETVAL
339 423
340struct ev_periodic *periodic (NV at, NV interval, SV *cb) 424SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
341 ALIAS: 425 ALIAS:
342 periodic_ns = 1 426 periodic_ns = 1
343 INIT: 427 INIT:
344 CHECK_REPEAT (interval); 428 CHECK_REPEAT (interval);
345 CODE: 429 CODE:
430{
431 struct ev_periodic *w;
346 RETVAL = e_new (sizeof (struct ev_periodic), cb); 432 w = e_new (sizeof (struct ev_periodic), cb);
347 ev_periodic_set (RETVAL, at, interval); 433 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
434 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
435 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic);
348 if (!ix) ev_periodic_start (RETVAL); 436 if (!ix) ev_periodic_start (w);
437}
349 OUTPUT: 438 OUTPUT:
350 RETVAL 439 RETVAL
351 440
352struct ev_signal *signal (Signal signum, SV *cb) 441struct ev_signal *signal (Signal signum, SV *cb)
353 ALIAS: 442 ALIAS:
391 480
392struct ev_child *child (int pid, SV *cb) 481struct ev_child *child (int pid, SV *cb)
393 ALIAS: 482 ALIAS:
394 check_ns = 1 483 check_ns = 1
395 CODE: 484 CODE:
396 RETVAL = e_new (sizeof (struct ev_check), cb); 485 RETVAL = e_new (sizeof (struct ev_child), cb);
397 ev_child_set (RETVAL, pid); 486 ev_child_set (RETVAL, pid);
398 if (!ix) ev_child_start (RETVAL); 487 if (!ix) ev_child_start (RETVAL);
399 OUTPUT: 488 OUTPUT:
400 RETVAL 489 RETVAL
401 490
415 sv_setsv (w->cb_sv, new_cb); 504 sv_setsv (w->cb_sv, new_cb);
416} 505}
417 OUTPUT: 506 OUTPUT:
418 RETVAL 507 RETVAL
419 508
509SV *data (struct ev_watcher *w, SV *new_data = 0)
510 CODE:
511{
512 RETVAL = w->data ? newSVsv (w->data) : &PL_sv_undef;
513}
514 OUTPUT:
515 RETVAL
516
420void trigger (struct ev_watcher *w, int revents = EV_NONE) 517void trigger (struct ev_watcher *w, int revents = EV_NONE)
421 CODE: 518 CODE:
422 w->cb (w, revents); 519 w->cb (w, revents);
423 520
424MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_ 521int 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: 522 CODE:
432 ev_io_stop (w);
433
434void set (struct ev_io *w, SV *fh, int events)
435 CODE:
436{ 523{
437 int active = w->active; 524 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 525
451 if (items > 1) 526 if (items > 1)
452 { 527 {
453 int active = w->active; 528 int active = ev_is_active (w);
529
530 if (new_priority < EV_MINPRI || new_priority > EV_MAXPRI)
531 croak ("watcher priority out of range, value must be between %d and %d, inclusive", EV_MINPRI, EV_MAXPRI);
532
533 if (active)
534 {
535 /* grrr. */
536 PUSHMARK (SP);
537 XPUSHs (ST (0));
538 call_method ("stop", G_DISCARD | G_VOID);
539 }
540
541 ev_set_priority (w, new_priority);
542
543 if (active)
544 {
545 PUSHMARK (SP);
546 XPUSHs (ST (0));
547 call_method ("start", G_DISCARD | G_VOID);
548 }
549 }
550}
551 OUTPUT:
552 RETVAL
553
554MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
555
556void ev_io_start (struct ev_io *w)
557
558void ev_io_stop (struct ev_io *w)
559
560void DESTROY (struct ev_io *w)
561 CODE:
562 ev_io_stop (w);
563 e_destroy (w);
564
565void set (struct ev_io *w, SV *fh, int events)
566 CODE:
567{
568 int active = ev_is_active (w);
569 int fd = sv_fileno (fh);
570 CHECK_FD (fh, fd);
571
572 if (active) ev_io_stop (w);
573
574 sv_setsv (w->fh, fh);
575 ev_io_set (w, fd, events);
576
577 if (active) ev_io_start (w);
578}
579
580SV *fh (struct ev_io *w, SV *new_fh = 0)
581 CODE:
582{
583 RETVAL = newSVsv (w->fh);
584
585 if (items > 1)
586 {
587 int active = ev_is_active (w);
454 if (active) ev_io_stop (w); 588 if (active) ev_io_stop (w);
455 589
456 sv_setsv (w->fh, new_fh); 590 sv_setsv (w->fh, new_fh);
457 ev_io_set (w, sv_fileno (w->fh), w->events); 591 ev_io_set (w, sv_fileno (w->fh), w->events);
458 592
460 } 594 }
461} 595}
462 OUTPUT: 596 OUTPUT:
463 RETVAL 597 RETVAL
464 598
465short events (struct ev_io *w, short new_events = EV_UNDEF) 599int events (struct ev_io *w, int new_events = EV_UNDEF)
466 CODE: 600 CODE:
467{ 601{
468 RETVAL = w->events; 602 RETVAL = w->events;
469 603
470 if (items > 1) 604 if (items > 1)
471 { 605 {
472 int active = w->active; 606 int active = ev_is_active (w);
473 if (active) ev_io_stop (w); 607 if (active) ev_io_stop (w);
474 608
475 ev_io_set (w, w->fd, new_events); 609 ev_io_set (w, w->fd, new_events);
476 610
477 if (active) ev_io_start (w); 611 if (active) ev_io_start (w);
487void ev_signal_stop (struct ev_signal *w) 621void ev_signal_stop (struct ev_signal *w)
488 622
489void DESTROY (struct ev_signal *w) 623void DESTROY (struct ev_signal *w)
490 CODE: 624 CODE:
491 ev_signal_stop (w); 625 ev_signal_stop (w);
626 e_destroy (w);
492 627
493void set (struct ev_signal *w, SV *signal = 0) 628void set (struct ev_signal *w, SV *signal)
494 CODE: 629 CODE:
495{ 630{
496 Signal signum = sv_signum (signal); /* may croak here */ 631 Signal signum = sv_signum (signal); /* may croak here */
497 int active = w->active; 632 int active = ev_is_active (w);
498 633
499 if (active) ev_signal_stop (w); 634 if (active) ev_signal_stop (w);
635
500 ev_signal_set (w, signum); 636 ev_signal_set (w, signum);
637
501 if (active) ev_signal_start (w); 638 if (active) ev_signal_start (w);
502} 639}
503 640
504MODULE = EV PACKAGE = EV::Time 641int signal (struct ev_signal *w, SV *new_signal = 0)
642 CODE:
643{
644 RETVAL = w->signum;
645
646 if (items > 1)
647 {
648 Signal signum = sv_signum (new_signal); /* may croak here */
649 int active = ev_is_active (w);
650 if (active) ev_signal_stop (w);
651
652 ev_signal_set (w, signum);
653
654 if (active) ev_signal_start (w);
655 }
656}
657 OUTPUT:
658 RETVAL
505 659
506MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 660MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
507 661
508void ev_timer_start (struct ev_timer *w) 662void ev_timer_start (struct ev_timer *w)
509 INIT: 663 INIT:
516 CHECK_REPEAT (w->repeat); 670 CHECK_REPEAT (w->repeat);
517 671
518void DESTROY (struct ev_timer *w) 672void DESTROY (struct ev_timer *w)
519 CODE: 673 CODE:
520 ev_timer_stop (w); 674 ev_timer_stop (w);
675 e_destroy (w);
521 676
522void set (struct ev_timer *w, NV after, NV repeat = 0.) 677void set (struct ev_timer *w, NV after, NV repeat = 0.)
523 INIT: 678 INIT:
524 CHECK_REPEAT (repeat); 679 CHECK_REPEAT (repeat);
525 CODE: 680 CODE:
526{ 681{
527 int active = w->active; 682 int active = ev_is_active (w);
528 if (active) ev_timer_stop (w); 683 if (active) ev_timer_stop (w);
529 ev_timer_set (w, after, repeat); 684 ev_timer_set (w, after, repeat);
530 if (active) ev_timer_start (w); 685 if (active) ev_timer_start (w);
531} 686}
532 687
536 INIT: 691 INIT:
537 CHECK_REPEAT (w->interval); 692 CHECK_REPEAT (w->interval);
538 693
539void ev_periodic_stop (struct ev_periodic *w) 694void ev_periodic_stop (struct ev_periodic *w)
540 695
696void ev_periodic_again (struct ev_periodic *w)
697
541void DESTROY (struct ev_periodic *w) 698void DESTROY (struct ev_periodic *w)
542 CODE: 699 CODE:
543 ev_periodic_stop (w); 700 ev_periodic_stop (w);
701 e_destroy (w);
544 702
545void set (struct ev_periodic *w, NV at, NV interval = 0.) 703void set (struct ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef)
546 INIT: 704 INIT:
547 CHECK_REPEAT (interval); 705 CHECK_REPEAT (interval);
548 CODE: 706 CODE:
549{ 707{
550 int active = w->active; 708 int active = ev_is_active (w);
551 if (active) ev_periodic_stop (w); 709 if (active) ev_periodic_stop (w);
710
711 SvREFCNT_dec (w->fh);
712 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
552 ev_periodic_set (w, at, interval); 713 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
714
553 if (active) ev_periodic_start (w); 715 if (active) ev_periodic_start (w);
554} 716}
555 717
556MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 718MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
557 719
560void ev_idle_stop (struct ev_idle *w) 722void ev_idle_stop (struct ev_idle *w)
561 723
562void DESTROY (struct ev_idle *w) 724void DESTROY (struct ev_idle *w)
563 CODE: 725 CODE:
564 ev_idle_stop (w); 726 ev_idle_stop (w);
727 e_destroy (w);
565 728
566MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_ 729MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
567 730
568void ev_prepare_start (struct ev_prepare *w) 731void ev_prepare_start (struct ev_prepare *w)
569 732
570void ev_prepare_stop (struct ev_prepare *w) 733void ev_prepare_stop (struct ev_prepare *w)
571 734
572void DESTROY (struct ev_prepare *w) 735void DESTROY (struct ev_prepare *w)
573 CODE: 736 CODE:
574 ev_prepare_stop (w); 737 ev_prepare_stop (w);
738 e_destroy (w);
575 739
576MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_ 740MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
577 741
578void ev_check_start (struct ev_check *w) 742void ev_check_start (struct ev_check *w)
579 743
580void ev_check_stop (struct ev_check *w) 744void ev_check_stop (struct ev_check *w)
581 745
582void DESTROY (struct ev_check *w) 746void DESTROY (struct ev_check *w)
583 CODE: 747 CODE:
584 ev_check_stop (w); 748 ev_check_stop (w);
749 e_destroy (w);
585 750
586MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 751MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
587 752
588void ev_child_start (struct ev_child *w) 753void ev_child_start (struct ev_child *w)
589 754
590void ev_child_stop (struct ev_child *w) 755void ev_child_stop (struct ev_child *w)
591 756
592void DESTROY (struct ev_child *w) 757void DESTROY (struct ev_child *w)
593 CODE: 758 CODE:
594 ev_child_stop (w); 759 ev_child_stop (w);
760 e_destroy (w);
595 761
596void set (struct ev_child *w, int pid) 762void set (struct ev_child *w, int pid)
597 CODE: 763 CODE:
598{ 764{
599 int active = w->active; 765 int active = ev_is_active (w);
600 if (active) ev_child_stop (w); 766 if (active) ev_child_stop (w);
767
601 ev_child_set (w, pid); 768 ev_child_set (w, pid);
769
602 if (active) ev_child_start (w); 770 if (active) ev_child_start (w);
603} 771}
604 772
773int pid (struct ev_child *w, int new_pid = 0)
774 CODE:
775{
776 RETVAL = w->pid;
777
778 if (items > 1)
779 {
780 int active = ev_is_active (w);
781 if (active) ev_child_stop (w);
782
783 ev_child_set (w, new_pid);
784
785 if (active) ev_child_start (w);
786 }
787}
788 OUTPUT:
789 RETVAL
790
791
605int status (struct ev_child *w) 792int rstatus (struct ev_child *w)
793 ALIAS:
794 rpid = 1
606 CODE: 795 CODE:
607 RETVAL = w->status; 796 RETVAL = ix ? w->rpid : w->rstatus;
608 OUTPUT: 797 OUTPUT:
609 RETVAL 798 RETVAL
610 799
611#if 0 800#ifndef WIN32
612 801
613MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 802MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
614 803
615BOOT: 804BOOT:
616{ 805{
699 888
700void evdns_search_add (char *domain) 889void evdns_search_add (char *domain)
701 890
702void evdns_search_ndots_set (int ndots) 891void evdns_search_ndots_set (int ndots)
703 892
893#if 0
704 894
705MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 895MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
706 896
707BOOT: 897BOOT:
708{ 898{
740 930
741#void DESTROY (struct evhttp_request *req); 931#void DESTROY (struct evhttp_request *req);
742 932
743#endif 933#endif
744 934
935#endif
745 936
746 937
747 938
748 939
749 940

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines