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

Comparing EV/EV.xs (file contents):
Revision 1.32 by root, Thu Nov 1 11:11:39 2007 UTC vs.
Revision 1.39 by root, Fri Nov 2 11:02:22 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 EV_USE_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
13#include "libev/ev.c" 10#include "libev/ev.c"
11#include "libev/event.h"
12#include "libev/event.c"
13#include "libev/evdns.c"
14 14
15typedef int Signal; 15typedef int Signal;
16 16
17static struct EVAPI evapi; 17static struct EVAPI evapi;
18 18
83 w->self = self; 83 w->self = self;
84 84
85 return (void *)w; 85 return (void *)w;
86} 86}
87 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;
95}
96
88static SV * 97static SV *
89e_bless (struct ev_watcher *w, HV *stash) 98e_bless (struct ev_watcher *w, HV *stash)
90{ 99{
91 SV *rv; 100 SV *rv;
92 101
147 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 156 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
148 SP = PL_stack_base + mark; PUTBACK; 157 SP = PL_stack_base + mark; PUTBACK;
149 } 158 }
150} 159}
151 160
152#if 0
153///////////////////////////////////////////////////////////////////////////// 161/////////////////////////////////////////////////////////////////////////////
154// DNS 162// DNS
155 163
156static void 164static void
157dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 165dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
199 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 207 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
200 } 208 }
201 209
202 LEAVE; 210 LEAVE;
203} 211}
204#endif
205 212
206#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 213#define CHECK_REPEAT(repeat) if (repeat < 0.) \
207 croak (# repeat " value must be >= 0"); 214 croak (# repeat " value must be >= 0");
208 215
209#define CHECK_FD(fh,fd) if ((fd) < 0) \ 216#define CHECK_FD(fh,fd) if ((fd) < 0) \
291 evapi.child_stop = ev_child_stop; 298 evapi.child_stop = ev_child_stop;
292 299
293 sv_setiv (sv, (IV)&evapi); 300 sv_setiv (sv, (IV)&evapi);
294 SvREADONLY_on (sv); 301 SvREADONLY_on (sv);
295 } 302 }
303
304 pthread_atfork (ev_fork_prepare, ev_fork_parent, ev_fork_child);
296} 305}
297 306
298NV ev_now () 307NV ev_now ()
299 CODE: 308 CODE:
300 RETVAL = ev_now; 309 RETVAL = ev_now;
436void ev_io_stop (struct ev_io *w) 445void ev_io_stop (struct ev_io *w)
437 446
438void DESTROY (struct ev_io *w) 447void DESTROY (struct ev_io *w)
439 CODE: 448 CODE:
440 ev_io_stop (w); 449 ev_io_stop (w);
450 e_destroy (w);
441 451
442void set (struct ev_io *w, SV *fh, int events) 452void set (struct ev_io *w, SV *fh, int events)
443 CODE: 453 CODE:
444{ 454{
445 int active = w->active; 455 int active = w->active;
471 } 481 }
472} 482}
473 OUTPUT: 483 OUTPUT:
474 RETVAL 484 RETVAL
475 485
476short events (struct ev_io *w, short new_events = EV_UNDEF) 486int events (struct ev_io *w, int new_events = EV_UNDEF)
477 CODE: 487 CODE:
478{ 488{
479 RETVAL = w->events; 489 RETVAL = w->events;
480 490
481 if (items > 1) 491 if (items > 1)
498void ev_signal_stop (struct ev_signal *w) 508void ev_signal_stop (struct ev_signal *w)
499 509
500void DESTROY (struct ev_signal *w) 510void DESTROY (struct ev_signal *w)
501 CODE: 511 CODE:
502 ev_signal_stop (w); 512 ev_signal_stop (w);
513 e_destroy (w);
503 514
504void set (struct ev_signal *w, SV *signal = 0) 515void set (struct ev_signal *w, SV *signal = 0)
505 CODE: 516 CODE:
506{ 517{
507 Signal signum = sv_signum (signal); /* may croak here */ 518 Signal signum = sv_signum (signal); /* may croak here */
508 int active = w->active; 519 int active = w->active;
509 520
510 if (active) ev_signal_stop (w); 521 if (active) ev_signal_stop (w);
522
511 ev_signal_set (w, signum); 523 ev_signal_set (w, signum);
524
512 if (active) ev_signal_start (w); 525 if (active) ev_signal_start (w);
513} 526}
527
528int signal (struct ev_signal *w, SV *new_signal = 0)
529 CODE:
530{
531 Signal signum = new_signal ? sv_signum (signal) : 0; /* may croak here */
532 RETVAL = w->signum;
533
534 if (items > 1)
535 {
536 int active = w->active;
537 if (active) ev_signal_stop (w);
538
539 ev_signal_set (w, signum);
540
541 if (active) ev_signal_start (w);
542 }
543}
544 OUTPUT:
545 RETVAL
514 546
515MODULE = EV PACKAGE = EV::Time 547MODULE = EV PACKAGE = EV::Time
516 548
517MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 549MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
518 550
527 CHECK_REPEAT (w->repeat); 559 CHECK_REPEAT (w->repeat);
528 560
529void DESTROY (struct ev_timer *w) 561void DESTROY (struct ev_timer *w)
530 CODE: 562 CODE:
531 ev_timer_stop (w); 563 ev_timer_stop (w);
564 e_destroy (w);
532 565
533void set (struct ev_timer *w, NV after, NV repeat = 0.) 566void set (struct ev_timer *w, NV after, NV repeat = 0.)
534 INIT: 567 INIT:
535 CHECK_REPEAT (repeat); 568 CHECK_REPEAT (repeat);
536 CODE: 569 CODE:
550void ev_periodic_stop (struct ev_periodic *w) 583void ev_periodic_stop (struct ev_periodic *w)
551 584
552void DESTROY (struct ev_periodic *w) 585void DESTROY (struct ev_periodic *w)
553 CODE: 586 CODE:
554 ev_periodic_stop (w); 587 ev_periodic_stop (w);
588 e_destroy (w);
555 589
556void set (struct ev_periodic *w, NV at, NV interval = 0.) 590void set (struct ev_periodic *w, NV at, NV interval = 0.)
557 INIT: 591 INIT:
558 CHECK_REPEAT (interval); 592 CHECK_REPEAT (interval);
559 CODE: 593 CODE:
560{ 594{
561 int active = w->active; 595 int active = w->active;
562 if (active) ev_periodic_stop (w); 596 if (active) ev_periodic_stop (w);
597
563 ev_periodic_set (w, at, interval); 598 ev_periodic_set (w, at, interval);
599
564 if (active) ev_periodic_start (w); 600 if (active) ev_periodic_start (w);
565} 601}
566 602
567MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 603MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
568 604
571void ev_idle_stop (struct ev_idle *w) 607void ev_idle_stop (struct ev_idle *w)
572 608
573void DESTROY (struct ev_idle *w) 609void DESTROY (struct ev_idle *w)
574 CODE: 610 CODE:
575 ev_idle_stop (w); 611 ev_idle_stop (w);
612 e_destroy (w);
576 613
577MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_ 614MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
578 615
579void ev_prepare_start (struct ev_prepare *w) 616void ev_prepare_start (struct ev_prepare *w)
580 617
581void ev_prepare_stop (struct ev_prepare *w) 618void ev_prepare_stop (struct ev_prepare *w)
582 619
583void DESTROY (struct ev_prepare *w) 620void DESTROY (struct ev_prepare *w)
584 CODE: 621 CODE:
585 ev_prepare_stop (w); 622 ev_prepare_stop (w);
623 e_destroy (w);
586 624
587MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_ 625MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
588 626
589void ev_check_start (struct ev_check *w) 627void ev_check_start (struct ev_check *w)
590 628
591void ev_check_stop (struct ev_check *w) 629void ev_check_stop (struct ev_check *w)
592 630
593void DESTROY (struct ev_check *w) 631void DESTROY (struct ev_check *w)
594 CODE: 632 CODE:
595 ev_check_stop (w); 633 ev_check_stop (w);
634 e_destroy (w);
596 635
597MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 636MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
598 637
599void ev_child_start (struct ev_child *w) 638void ev_child_start (struct ev_child *w)
600 639
601void ev_child_stop (struct ev_child *w) 640void ev_child_stop (struct ev_child *w)
602 641
603void DESTROY (struct ev_child *w) 642void DESTROY (struct ev_child *w)
604 CODE: 643 CODE:
605 ev_child_stop (w); 644 ev_child_stop (w);
645 e_destroy (w);
606 646
607void set (struct ev_child *w, int pid) 647void set (struct ev_child *w, int pid)
608 CODE: 648 CODE:
609{ 649{
610 int active = w->active; 650 int active = w->active;
611 if (active) ev_child_stop (w); 651 if (active) ev_child_stop (w);
652
612 ev_child_set (w, pid); 653 ev_child_set (w, pid);
654
613 if (active) ev_child_start (w); 655 if (active) ev_child_start (w);
614} 656}
615 657
658int pid (struct ev_child *w, int new_pid = 0)
659 CODE:
660{
661 RETVAL = newSVsv (w->pid);
662
663 if (items > 1)
664 {
665 int active = w->active;
666 if (active) ev_child_stop (w);
667
668 ev_child_set (w, new_pid);
669
670 if (active) ev_child_start (w);
671 }
672}
673 OUTPUT:
674 RETVAL
675
676
616int status (struct ev_child *w) 677int status (struct ev_child *w)
617 CODE: 678 CODE:
618 RETVAL = w->status; 679 RETVAL = w->status;
619 OUTPUT: 680 OUTPUT:
620 RETVAL 681 RETVAL
621
622#if 0
623 682
624MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 683MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
625 684
626BOOT: 685BOOT:
627{ 686{
710 769
711void evdns_search_add (char *domain) 770void evdns_search_add (char *domain)
712 771
713void evdns_search_ndots_set (int ndots) 772void evdns_search_ndots_set (int ndots)
714 773
774#if 0
715 775
716MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 776MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
717 777
718BOOT: 778BOOT:
719{ 779{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines