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

Comparing EV/EV.xs (file contents):
Revision 1.90 by root, Mon Dec 17 07:24:12 2007 UTC vs.
Revision 1.93 by root, Thu Dec 20 09:26:40 2007 UTC

3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
8#define EV_H <ev.h>
8#include "EV/EVAPI.h" 9#include "EV/EVAPI.h"
9 10
10/* fix perl api breakage */ 11/* fix perl api breakage */
11#undef signal 12#undef signal
12#undef sigaction 13#undef sigaction
17# define NFDBITS PERL_NFDBITS 18# define NFDBITS PERL_NFDBITS
18# define fd_mask Perl_fd_mask 19# define fd_mask Perl_fd_mask
19#endif 20#endif
20/* due to bugs in OS X we have to use libev/ explicitly here */ 21/* due to bugs in OS X we have to use libev/ explicitly here */
21#include "libev/ev.c" 22#include "libev/ev.c"
22#include "event.c"
23 23
24#ifndef _WIN32 24#ifndef _WIN32
25# include <pthread.h> 25# include <pthread.h>
26#endif 26#endif
27 27
28#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX ((w)->loop))
29
28#define WFLAG_KEEPALIVE 1 30#define WFLAG_KEEPALIVE 1
29 31
30#define UNREF(w) \ 32#define UNREF(w) \
31 if (!((w)->flags & WFLAG_KEEPALIVE) \ 33 if (!((w)->flags & WFLAG_KEEPALIVE) \
32 && !ev_is_active (w)) \ 34 && !ev_is_active (w)) \
33 ev_unref (); 35 ev_unref (e_loop (w));
34 36
35#define REF(w) \ 37#define REF(w) \
36 if (!((w)->flags & WFLAG_KEEPALIVE) \ 38 if (!((w)->flags & WFLAG_KEEPALIVE) \
37 && ev_is_active (w)) \ 39 && ev_is_active (w)) \
38 ev_ref (); 40 ev_ref (e_loop (w));
39 41
40#define START(type,w) \ 42#define START(type,w) \
41 do { \ 43 do { \
42 UNREF (w); \ 44 UNREF (w); \
43 ev_ ## type ## _start (w); \ 45 ev_ ## type ## _start (e_loop (w), w); \
44 } while (0) 46 } while (0)
45 47
46#define STOP(type,w) \ 48#define STOP(type,w) \
47 do { \ 49 do { \
48 REF (w); \ 50 REF (w); \
49 ev_ ## type ## _stop (w); \ 51 ev_ ## type ## _stop (e_loop (w), w); \
50 } while (0) 52 } while (0)
51 53
52#define RESET(type,w,seta) \ 54#define RESET(type,w,seta) \
53 do { \ 55 do { \
54 int active = ev_is_active (w); \ 56 int active = ev_is_active (w); \
57 if (active) START (type, w); \ 59 if (active) START (type, w); \
58 } while (0) 60 } while (0)
59 61
60typedef int Signal; 62typedef int Signal;
61 63
64static SV *default_loop_sv;
65
62static struct EVAPI evapi; 66static struct EVAPI evapi;
63 67
64static HV 68static HV
69 *stash_loop,
65 *stash_watcher, 70 *stash_watcher,
66 *stash_io, 71 *stash_io,
67 *stash_timer, 72 *stash_timer,
68 *stash_periodic, 73 *stash_periodic,
69 *stash_signal, 74 *stash_signal,
101} 106}
102 107
103///////////////////////////////////////////////////////////////////////////// 108/////////////////////////////////////////////////////////////////////////////
104// Event 109// Event
105 110
106static void e_cb (ev_watcher *w, int revents); 111static void e_cb (EV_P_ ev_watcher *w, int revents);
107 112
108static int 113static int
109sv_fileno (SV *fh) 114sv_fileno (SV *fh)
110{ 115{
111 SvGETMAGIC (fh); 116 SvGETMAGIC (fh);
121 126
122 return -1; 127 return -1;
123} 128}
124 129
125static void * 130static void *
126e_new (int size, SV *cb_sv) 131e_new (int size, SV *cb_sv, SV *loop)
127{ 132{
128 ev_watcher *w; 133 ev_watcher *w;
129 SV *self = NEWSV (0, size); 134 SV *self = NEWSV (0, size);
130 SvPOK_only (self); 135 SvPOK_only (self);
131 SvCUR_set (self, size); 136 SvCUR_set (self, size);
132 137
133 w = (ev_watcher *)SvPVX (self); 138 w = (ev_watcher *)SvPVX (self);
134 139
135 ev_init (w, e_cb); 140 ev_init (w, e_cb);
136 141
142 w->loop = SvREFCNT_inc (SvRV (loop));
137 w->flags = WFLAG_KEEPALIVE; 143 w->flags = WFLAG_KEEPALIVE;
138 w->data = 0; 144 w->data = 0;
139 w->fh = 0; 145 w->fh = 0;
140 w->cb_sv = newSVsv (cb_sv); 146 w->cb_sv = SvTEMP (cb_sv) && SvREFCNT (cb_sv) == 1 ? SvREFCNT_inc (cb_sv) : newSVsv (cb_sv);
141 w->self = self; 147 w->self = self;
142 148
143 return (void *)w; 149 return (void *)w;
144} 150}
145 151
146static void 152static void
147e_destroy (void *w_) 153e_destroy (void *w_)
148{ 154{
149 ev_watcher *w = (ev_watcher *)w_; 155 ev_watcher *w = (ev_watcher *)w_;
150 156
157 SvREFCNT_dec (w->loop ); w->loop = 0;
151 SvREFCNT_dec (w->fh ); w->fh = 0; 158 SvREFCNT_dec (w->fh ); w->fh = 0;
152 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 159 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
153 SvREFCNT_dec (w->data ); w->data = 0; 160 SvREFCNT_dec (w->data ); w->data = 0;
154} 161}
155 162
171} 178}
172 179
173static SV *sv_events_cache; 180static SV *sv_events_cache;
174 181
175static void 182static void
176e_cb (ev_watcher *w, int revents) 183e_cb (EV_P_ ev_watcher *w, int revents)
177{ 184{
178 dSP; 185 dSP;
179 I32 mark = SP - PL_stack_base; 186 I32 mark = SP - PL_stack_base;
180 SV *sv_self, *sv_events; 187 SV *sv_self, *sv_events;
181 188
354 }; 361 };
355 362
356 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 363 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
357 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 364 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
358 365
366 stash_loop = gv_stashpv ("EV::Loop" , 1);
359 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 367 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
360 stash_io = gv_stashpv ("EV::IO" , 1); 368 stash_io = gv_stashpv ("EV::IO" , 1);
361 stash_timer = gv_stashpv ("EV::Timer" , 1); 369 stash_timer = gv_stashpv ("EV::Timer" , 1);
362 stash_periodic = gv_stashpv ("EV::Periodic", 1); 370 stash_periodic = gv_stashpv ("EV::Periodic", 1);
363 stash_signal = gv_stashpv ("EV::Signal" , 1); 371 stash_signal = gv_stashpv ("EV::Signal" , 1);
365 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 373 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
366 stash_check = gv_stashpv ("EV::Check" , 1); 374 stash_check = gv_stashpv ("EV::Check" , 1);
367 stash_child = gv_stashpv ("EV::Child" , 1); 375 stash_child = gv_stashpv ("EV::Child" , 1);
368 stash_embed = gv_stashpv ("EV::Embed" , 1); 376 stash_embed = gv_stashpv ("EV::Embed" , 1);
369 stash_stat = gv_stashpv ("EV::Stat" , 1); 377 stash_stat = gv_stashpv ("EV::Stat" , 1);
378 stash_fork = gv_stashpv ("EV::Fork" , 1);
370 379
371 { 380 {
372 SV *sv = perl_get_sv ("EV::API", TRUE); 381 SV *sv = perl_get_sv ("EV::API", TRUE);
373 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 382 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
374 383
375 /* the poor man's shared library emulator */ 384 /* the poor man's shared library emulator */
376 evapi.ver = EV_API_VERSION; 385 evapi.ver = EV_API_VERSION;
377 evapi.rev = EV_API_REVISION; 386 evapi.rev = EV_API_REVISION;
378 evapi.sv_fileno = sv_fileno; 387 evapi.sv_fileno = sv_fileno;
379 evapi.sv_signum = sv_signum; 388 evapi.sv_signum = sv_signum;
389 evapi.supported_backends = ev_supported_backends ();
390 evapi.recommended_backends = ev_recommended_backends ();
391 evapi.embeddable_backends = ev_embeddable_backends ();
392 evapi.time = ev_time;
393 evapi.loop_new = ev_loop_new;
394 evapi.loop_destroy = ev_loop_destroy;
395 evapi.loop_fork = ev_loop_fork;
396 evapi.loop_count = ev_loop_count;
380 evapi.now = ev_now; 397 evapi.now = ev_now;
381 evapi.backend = ev_backend; 398 evapi.backend = ev_backend;
382 evapi.unloop = ev_unloop; 399 evapi.unloop = ev_unloop;
383 evapi.ref = ev_ref; 400 evapi.ref = ev_ref;
384 evapi.unref = ev_unref; 401 evapi.unref = ev_unref;
385 evapi.time = ev_time;
386 evapi.loop = ev_loop; 402 evapi.loop = ev_loop;
387 evapi.once = ev_once; 403 evapi.once = ev_once;
388 evapi.io_start = ev_io_start; 404 evapi.io_start = ev_io_start;
389 evapi.io_stop = ev_io_stop; 405 evapi.io_stop = ev_io_stop;
390 evapi.timer_start = ev_timer_start; 406 evapi.timer_start = ev_timer_start;
391 evapi.timer_stop = ev_timer_stop; 407 evapi.timer_stop = ev_timer_stop;
392 evapi.timer_again = ev_timer_again; 408 evapi.timer_again = ev_timer_again;
393 evapi.periodic_start = ev_periodic_start; 409 evapi.periodic_start = ev_periodic_start;
394 evapi.periodic_stop = ev_periodic_stop; 410 evapi.periodic_stop = ev_periodic_stop;
395 evapi.signal_start = ev_signal_start; 411 evapi.signal_start = ev_signal_start;
396 evapi.signal_stop = ev_signal_stop; 412 evapi.signal_stop = ev_signal_stop;
397 evapi.idle_start = ev_idle_start; 413 evapi.idle_start = ev_idle_start;
398 evapi.idle_stop = ev_idle_stop; 414 evapi.idle_stop = ev_idle_stop;
399 evapi.prepare_start = ev_prepare_start; 415 evapi.prepare_start = ev_prepare_start;
400 evapi.prepare_stop = ev_prepare_stop; 416 evapi.prepare_stop = ev_prepare_stop;
401 evapi.check_start = ev_check_start; 417 evapi.check_start = ev_check_start;
402 evapi.check_stop = ev_check_stop; 418 evapi.check_stop = ev_check_stop;
403 evapi.child_start = ev_child_start; 419 evapi.child_start = ev_child_start;
404 evapi.child_stop = ev_child_stop; 420 evapi.child_stop = ev_child_stop;
405 evapi.stat_start = ev_stat_start; 421 evapi.stat_start = ev_stat_start;
406 evapi.stat_stop = ev_stat_stop; 422 evapi.stat_stop = ev_stat_stop;
407 evapi.stat_stat = ev_stat_stat; 423 evapi.stat_stat = ev_stat_stat;
424 evapi.embed_start = ev_embed_start;
425 evapi.embed_stop = ev_embed_stop;
426 evapi.embed_sweep = ev_embed_sweep;
427 evapi.fork_start = ev_fork_start;
428 evapi.fork_stop = ev_fork_stop;
408 evapi.clear_pending = ev_clear_pending; 429 evapi.clear_pending = ev_clear_pending;
409 evapi.invoke = ev_invoke; 430 evapi.invoke = ev_invoke;
410 431
411 sv_setiv (sv, (IV)&evapi); 432 sv_setiv (sv, (IV)&evapi);
412 SvREADONLY_on (sv); 433 SvREADONLY_on (sv);
413 } 434 }
414#ifndef _WIN32 435#ifndef _WIN32
415 pthread_atfork (0, 0, ev_default_fork); 436 pthread_atfork (0, 0, ev_default_fork);
416#endif 437#endif
417} 438}
418 439
440SV *ev_default_loop (unsigned int flags = ev_supported_backends ())
441 CODE:
442{
443 if (!default_loop_sv)
444 {
445 evapi.default_loop = ev_default_loop (flags);
446
447 if (!evapi.default_loop)
448 XSRETURN_UNDEF;
449
450 default_loop_sv = sv_bless (newRV_noinc (newSViv (PTR2IV (evapi.default_loop))), stash_loop);
451 }
452
453 RETVAL = newSVsv (default_loop_sv);
454}
455 OUTPUT:
456 RETVAL
457
458NV ev_time ()
459
419NV ev_now () 460NV ev_now ()
461 C_ARGS: evapi.default_loop
420 462
421unsigned int ev_backend () 463unsigned int ev_backend ()
422 464 C_ARGS: evapi.default_loop
423NV ev_time ()
424
425unsigned int ev_default_loop (unsigned int flags = ev_supported_backends ())
426 465
427unsigned int ev_loop_count () 466unsigned int ev_loop_count ()
467 C_ARGS: evapi.default_loop
428 468
429void ev_loop (int flags = 0) 469void ev_loop (int flags = 0)
470 C_ARGS: evapi.default_loop, flags
430 471
431void ev_unloop (int how = 1) 472void ev_unloop (int how = 1)
473 C_ARGS: evapi.default_loop, how
432 474
433void ev_feed_fd_event (int fd, int revents = EV_NONE) 475void ev_feed_fd_event (int fd, int revents = EV_NONE)
476 C_ARGS: evapi.default_loop, fd, revents
434 477
435void ev_feed_signal_event (SV *signal) 478void ev_feed_signal_event (SV *signal)
436 CODE: 479 CODE:
437{ 480{
438 Signal signum = sv_signum (signal); 481 Signal signum = sv_signum (signal);
439 CHECK_SIG (signal, signum); 482 CHECK_SIG (signal, signum);
440 483
441 ev_feed_signal_event (EV_DEFAULT_ signum); 484 ev_feed_signal_event (evapi.default_loop, signum);
442} 485}
443 486
444ev_io *io (SV *fh, int events, SV *cb) 487ev_io *io (SV *fh, int events, SV *cb)
445 ALIAS: 488 ALIAS:
446 io_ns = 1 489 io_ns = 1
447 CODE: 490 CODE:
448{ 491{
449 int fd = sv_fileno (fh); 492 int fd = sv_fileno (fh);
450 CHECK_FD (fh, fd); 493 CHECK_FD (fh, fd);
451 494
452 RETVAL = e_new (sizeof (ev_io), cb); 495 RETVAL = e_new (sizeof (ev_io), cb, default_loop_sv);
453 RETVAL->fh = newSVsv (fh); 496 RETVAL->fh = newSVsv (fh);
454 ev_io_set (RETVAL, fd, events); 497 ev_io_set (RETVAL, fd, events);
455 if (!ix) START (io, RETVAL); 498 if (!ix) START (io, RETVAL);
456} 499}
457 OUTPUT: 500 OUTPUT:
461 ALIAS: 504 ALIAS:
462 timer_ns = 1 505 timer_ns = 1
463 INIT: 506 INIT:
464 CHECK_REPEAT (repeat); 507 CHECK_REPEAT (repeat);
465 CODE: 508 CODE:
466 RETVAL = e_new (sizeof (ev_timer), cb); 509 RETVAL = e_new (sizeof (ev_timer), cb, default_loop_sv);
467 ev_timer_set (RETVAL, after, repeat); 510 ev_timer_set (RETVAL, after, repeat);
468 if (!ix) START (timer, RETVAL); 511 if (!ix) START (timer, RETVAL);
469 OUTPUT: 512 OUTPUT:
470 RETVAL 513 RETVAL
471 514
475 INIT: 518 INIT:
476 CHECK_REPEAT (interval); 519 CHECK_REPEAT (interval);
477 CODE: 520 CODE:
478{ 521{
479 ev_periodic *w; 522 ev_periodic *w;
480 w = e_new (sizeof (ev_periodic), cb); 523 w = e_new (sizeof (ev_periodic), cb, default_loop_sv);
481 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 524 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
482 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0); 525 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
483 RETVAL = e_bless ((ev_watcher *)w, stash_periodic); 526 RETVAL = e_bless ((ev_watcher *)w, stash_periodic);
484 if (!ix) START (periodic, w); 527 if (!ix) START (periodic, w);
485} 528}
492 CODE: 535 CODE:
493{ 536{
494 Signal signum = sv_signum (signal); 537 Signal signum = sv_signum (signal);
495 CHECK_SIG (signal, signum); 538 CHECK_SIG (signal, signum);
496 539
497 RETVAL = e_new (sizeof (ev_signal), cb); 540 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv);
498 ev_signal_set (RETVAL, signum); 541 ev_signal_set (RETVAL, signum);
499 if (!ix) START (signal, RETVAL); 542 if (!ix) START (signal, RETVAL);
500} 543}
501 OUTPUT: 544 OUTPUT:
502 RETVAL 545 RETVAL
503 546
504ev_idle *idle (SV *cb) 547ev_idle *idle (SV *cb)
505 ALIAS: 548 ALIAS:
506 idle_ns = 1 549 idle_ns = 1
507 CODE: 550 CODE:
508 RETVAL = e_new (sizeof (ev_idle), cb); 551 RETVAL = e_new (sizeof (ev_idle), cb, default_loop_sv);
509 ev_idle_set (RETVAL); 552 ev_idle_set (RETVAL);
510 if (!ix) START (idle, RETVAL); 553 if (!ix) START (idle, RETVAL);
511 OUTPUT: 554 OUTPUT:
512 RETVAL 555 RETVAL
513 556
514ev_prepare *prepare (SV *cb) 557ev_prepare *prepare (SV *cb)
515 ALIAS: 558 ALIAS:
516 prepare_ns = 1 559 prepare_ns = 1
517 CODE: 560 CODE:
518 RETVAL = e_new (sizeof (ev_prepare), cb); 561 RETVAL = e_new (sizeof (ev_prepare), cb, default_loop_sv);
519 ev_prepare_set (RETVAL); 562 ev_prepare_set (RETVAL);
520 if (!ix) START (prepare, RETVAL); 563 if (!ix) START (prepare, RETVAL);
521 OUTPUT: 564 OUTPUT:
522 RETVAL 565 RETVAL
523 566
524ev_check *check (SV *cb) 567ev_check *check (SV *cb)
525 ALIAS: 568 ALIAS:
526 check_ns = 1 569 check_ns = 1
527 CODE: 570 CODE:
528 RETVAL = e_new (sizeof (ev_check), cb); 571 RETVAL = e_new (sizeof (ev_check), cb, default_loop_sv);
529 ev_check_set (RETVAL); 572 ev_check_set (RETVAL);
530 if (!ix) START (check, RETVAL); 573 if (!ix) START (check, RETVAL);
531 OUTPUT: 574 OUTPUT:
532 RETVAL 575 RETVAL
533 576
577ev_fork *fork (SV *cb)
578 ALIAS:
579 fork_ns = 1
580 CODE:
581 RETVAL = e_new (sizeof (ev_fork), cb, default_loop_sv);
582 ev_fork_set (RETVAL);
583 if (!ix) START (fork, RETVAL);
584 OUTPUT:
585 RETVAL
586
534ev_child *child (int pid, SV *cb) 587ev_child *child (int pid, SV *cb)
535 ALIAS: 588 ALIAS:
536 child_ns = 1 589 child_ns = 1
537 CODE: 590 CODE:
538 RETVAL = e_new (sizeof (ev_child), cb); 591 RETVAL = e_new (sizeof (ev_child), cb, default_loop_sv);
539 ev_child_set (RETVAL, pid); 592 ev_child_set (RETVAL, pid);
540 if (!ix) START (child, RETVAL); 593 if (!ix) START (child, RETVAL);
541 OUTPUT: 594 OUTPUT:
542 RETVAL 595 RETVAL
543 596
544ev_stat *stat (SV *path, NV interval, SV *cb) 597ev_stat *stat (SV *path, NV interval, SV *cb)
545 ALIAS: 598 ALIAS:
546 stat_ns = 1 599 stat_ns = 1
547 CODE: 600 CODE:
548 RETVAL = e_new (sizeof (ev_stat), cb); 601 RETVAL = e_new (sizeof (ev_stat), cb, default_loop_sv);
549 RETVAL->fh = newSVsv (path); 602 RETVAL->fh = newSVsv (path);
550 ev_stat_set (RETVAL, SvPVbyte_nolen (RETVAL->fh), interval); 603 ev_stat_set (RETVAL, SvPVbyte_nolen (RETVAL->fh), interval);
551 if (!ix) START (stat, RETVAL); 604 if (!ix) START (stat, RETVAL);
552 OUTPUT: 605 OUTPUT:
553 RETVAL 606 RETVAL
554 607
608ev_embed *embed (struct ev_loop *loop, SV *cb)
609 ALIAS:
610 embed_ns = 1
611 CODE:
612 RETVAL = e_new (sizeof (ev_embed), cb, default_loop_sv);
613 RETVAL->fh = newSVsv (ST (0));
614 ev_embed_set (RETVAL, loop);
615 if (!ix) START (embed, RETVAL);
616 OUTPUT:
617 RETVAL
618
555void once (SV *fh, int events, SV *timeout, SV *cb) 619void once (SV *fh, int events, SV *timeout, SV *cb)
556 CODE: 620 CODE:
557 ev_once ( 621 ev_once (
622 evapi.default_loop,
558 sv_fileno (fh), events, 623 sv_fileno (fh), events,
559 SvOK (timeout) ? SvNV (timeout) : -1., 624 SvOK (timeout) ? SvNV (timeout) : -1.,
560 e_once_cb, 625 e_once_cb,
561 newSVsv (cb) 626 newSVsv (cb)
562 ); 627 );
568int ev_is_active (ev_watcher *w) 633int ev_is_active (ev_watcher *w)
569 634
570int ev_is_pending (ev_watcher *w) 635int ev_is_pending (ev_watcher *w)
571 636
572void ev_invoke (ev_watcher *w, int revents = EV_NONE) 637void ev_invoke (ev_watcher *w, int revents = EV_NONE)
638 C_ARGS: e_loop (w), w, revents
573 639
574int ev_clear_pending (ev_watcher *w) 640int ev_clear_pending (ev_watcher *w)
641 C_ARGS: e_loop (w), w
575 642
576void ev_feed_event (ev_watcher *w, int revents = EV_NONE) 643void ev_feed_event (ev_watcher *w, int revents = EV_NONE)
644 C_ARGS: e_loop (w), w, revents
577 645
578int keepalive (ev_watcher *w, int new_value = 0) 646int keepalive (ev_watcher *w, int new_value = 0)
579 CODE: 647 CODE:
580{ 648{
581 RETVAL = w->flags & WFLAG_KEEPALIVE; 649 RETVAL = w->flags & WFLAG_KEEPALIVE;
758void ev_timer_again (ev_timer *w) 826void ev_timer_again (ev_timer *w)
759 INIT: 827 INIT:
760 CHECK_REPEAT (w->repeat); 828 CHECK_REPEAT (w->repeat);
761 CODE: 829 CODE:
762 REF (w); 830 REF (w);
763 ev_timer_again (w); 831 ev_timer_again (e_loop (w), w);
764 UNREF (w); 832 UNREF (w);
765 833
766void DESTROY (ev_timer *w) 834void DESTROY (ev_timer *w)
767 CODE: 835 CODE:
768 STOP (timer, w); 836 STOP (timer, w);
793 STOP (periodic, w); 861 STOP (periodic, w);
794 862
795void ev_periodic_again (ev_periodic *w) 863void ev_periodic_again (ev_periodic *w)
796 CODE: 864 CODE:
797 REF (w); 865 REF (w);
798 ev_periodic_again (w); 866 ev_periodic_again (e_loop (w), w);
799 UNREF (w); 867 UNREF (w);
800 868
801void DESTROY (ev_periodic *w) 869void DESTROY (ev_periodic *w)
802 CODE: 870 CODE:
803 STOP (periodic, w); 871 STOP (periodic, w);
861 STOP (check, w); 929 STOP (check, w);
862 930
863void DESTROY (ev_check *w) 931void DESTROY (ev_check *w)
864 CODE: 932 CODE:
865 STOP (check, w); 933 STOP (check, w);
934 e_destroy (w);
935
936MODULE = EV PACKAGE = EV::Fork PREFIX = ev_fork_
937
938void ev_fork_start (ev_fork *w)
939 CODE:
940 START (fork, w);
941
942void ev_fork_stop (ev_fork *w)
943 CODE:
944 STOP (fork, w);
945
946void DESTROY (ev_fork *w)
947 CODE:
948 STOP (fork, w);
866 e_destroy (w); 949 e_destroy (w);
867 950
868MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 951MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
869 952
870void ev_child_start (ev_child *w) 953void ev_child_start (ev_child *w)
959 PPCODE: 1042 PPCODE:
960{ 1043{
961 ev_statdata *s = ix ? &w->attr : &w->prev; 1044 ev_statdata *s = ix ? &w->attr : &w->prev;
962 1045
963 if (ix == 1) 1046 if (ix == 1)
964 ev_stat_stat (w); 1047 ev_stat_stat (e_loop (w), w);
965 else if (!s->st_nlink) 1048 else if (!s->st_nlink)
966 errno = ENOENT; 1049 errno = ENOENT;
967 1050
968 PL_statcache.st_dev = s->st_nlink; 1051 PL_statcache.st_dev = s->st_nlink;
969 PL_statcache.st_ino = s->st_ino; 1052 PL_statcache.st_ino = s->st_ino;
996 PUSHs (sv_2mortal (newSVuv (4096))); 1079 PUSHs (sv_2mortal (newSVuv (4096)));
997 PUSHs (sv_2mortal (newSVnv ((NV)((s->st_size + 4095) / 4096)))); 1080 PUSHs (sv_2mortal (newSVnv ((NV)((s->st_size + 4095) / 4096))));
998 } 1081 }
999} 1082}
1000 1083
1001#if 0 1084MODULE = EV PACKAGE = EV::Embed PREFIX = ev_embed_
1002 1085
1086void ev_embed_start (ev_embed *w)
1087 CODE:
1088 START (embed, w);
1089
1090void ev_embed_stop (ev_embed *w)
1091 CODE:
1092 STOP (embed, w);
1093
1094void DESTROY (ev_embed *w)
1095 CODE:
1096 STOP (embed, w);
1097 e_destroy (w);
1098
1099void set (ev_embed *w, struct ev_loop *loop)
1100 CODE:
1101{
1102 sv_setsv (w->fh, ST (1));
1103 RESET (embed, w, (w, loop));
1104}
1105
1003MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 1106MODULE = EV PACKAGE = EV::Loop PREFIX = ev_loop_
1004 1107
1005BOOT: 1108SV *new (SV *klass, unsigned int flags = ev_supported_backends ())
1109 CODE:
1006{ 1110{
1007 HV *stash = gv_stashpv ("EV::HTTP", 1); 1111 struct ev_loop *loop = ev_loop_new (flags);
1008 1112
1009 static const struct { 1113 if (!loop)
1010 const char *name; 1114 XSRETURN_UNDEF;
1011 IV iv;
1012 } *civ, const_iv[] = {
1013# define const_iv(pfx, name) { # name, (IV) pfx ## name },
1014 const_iv (HTTP_, OK)
1015 const_iv (HTTP_, NOCONTENT)
1016 const_iv (HTTP_, MOVEPERM)
1017 const_iv (HTTP_, MOVETEMP)
1018 const_iv (HTTP_, NOTMODIFIED)
1019 const_iv (HTTP_, BADREQUEST)
1020 const_iv (HTTP_, NOTFOUND)
1021 const_iv (HTTP_, SERVUNAVAIL)
1022 const_iv (EVHTTP_, REQ_OWN_CONNECTION)
1023 const_iv (EVHTTP_, PROXY_REQUEST)
1024 const_iv (EVHTTP_, REQ_GET)
1025 const_iv (EVHTTP_, REQ_POST)
1026 const_iv (EVHTTP_, REQ_HEAD)
1027 const_iv (EVHTTP_, REQUEST)
1028 const_iv (EVHTTP_, RESPONSE)
1029 };
1030 1115
1031 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1116 RETVAL = sv_bless (newRV_noinc (newSViv (PTR2IV (evapi.default_loop))), stash_loop);
1032 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1033} 1117}
1118 OUTPUT:
1119 RETVAL
1034 1120
1035MODULE = EV PACKAGE = EV::HTTP::Request PREFIX = evhttp_request_ 1121void DESTROY (struct ev_loop *loop)
1122 CODE:
1123 if (loop != evapi.default_loop) /* global destruction sucks */
1124 ev_loop_destroy (loop);
1036 1125
1037#HttpRequest new (SV *klass, SV *cb)
1038
1039#void DESTROY (struct evhttp_request *req);
1040
1041#endif
1042
1043
1044
1045
1046
1047
1048
1049

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines