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

Comparing EV/EV.xs (file contents):
Revision 1.35 by root, Thu Nov 1 13:33:12 2007 UTC vs.
Revision 1.41 by root, Fri Nov 2 20:21:33 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
9#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
10#include "EV/EVAPI.h" 8#include "EV/EVAPI.h"
11 9
12#include "libev/ev.c" 10#include "libev/ev.c"
11#include "libev/event.h"
12#include "libev/event.c"
13#include "libev/evdns.c"
13 14
14typedef int Signal; 15typedef int Signal;
15 16
16static struct EVAPI evapi; 17static struct EVAPI evapi;
17 18
155 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);
156 SP = PL_stack_base + mark; PUTBACK; 157 SP = PL_stack_base + mark; PUTBACK;
157 } 158 }
158} 159}
159 160
160#if 0
161///////////////////////////////////////////////////////////////////////////// 161/////////////////////////////////////////////////////////////////////////////
162// DNS 162// DNS
163 163
164static void 164static void
165dns_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)
207 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);
208 } 208 }
209 209
210 LEAVE; 210 LEAVE;
211} 211}
212#endif
213 212
214#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 213#define CHECK_REPEAT(repeat) if (repeat < 0.) \
215 croak (# repeat " value must be >= 0"); 214 croak (# repeat " value must be >= 0");
216 215
217#define CHECK_FD(fh,fd) if ((fd) < 0) \ 216#define CHECK_FD(fh,fd) if ((fd) < 0) \
232 static const struct { 231 static const struct {
233 const char *name; 232 const char *name;
234 IV iv; 233 IV iv;
235 } *civ, const_iv[] = { 234 } *civ, const_iv[] = {
236# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 235# define const_iv(pfx, name) { # name, (IV) pfx ## name },
236 const_iv (EV_, MINPRI)
237 const_iv (EV_, MAXPRI)
238
237 const_iv (EV_, UNDEF) 239 const_iv (EV_, UNDEF)
238 const_iv (EV_, NONE) 240 const_iv (EV_, NONE)
239 const_iv (EV_, TIMEOUT) 241 const_iv (EV_, TIMEOUT)
240 const_iv (EV_, READ) 242 const_iv (EV_, READ)
241 const_iv (EV_, WRITE) 243 const_iv (EV_, WRITE)
245 const_iv (EV_, ERROR) 247 const_iv (EV_, ERROR)
246 248
247 const_iv (EV, LOOP_ONESHOT) 249 const_iv (EV, LOOP_ONESHOT)
248 const_iv (EV, LOOP_NONBLOCK) 250 const_iv (EV, LOOP_NONBLOCK)
249 251
250 const_iv (EV, METHOD_NONE) 252 const_iv (EV, METHOD_AUTO)
251 const_iv (EV, METHOD_SELECT) 253 const_iv (EV, METHOD_SELECT)
254 const_iv (EV, METHOD_POLL)
252 const_iv (EV, METHOD_EPOLL) 255 const_iv (EV, METHOD_EPOLL)
256 const_iv (EV, METHOD_ANY)
253 }; 257 };
254 258
255 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 259 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
256 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 260 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
257 261
317 OUTPUT: 321 OUTPUT:
318 RETVAL 322 RETVAL
319 323
320NV ev_time () 324NV ev_time ()
321 325
322void ev_init (int flags = 0) 326void ev_init (int methods = EVMETHOD_AUTO)
323 327
324void ev_loop (int flags = 0) 328void ev_loop (int flags = 0)
325 329
326void ev_loop_done (int value = 1) 330void ev_loop_done (int value = 1)
327 CODE: 331 CODE:
437 441
438void trigger (struct ev_watcher *w, int revents = EV_NONE) 442void trigger (struct ev_watcher *w, int revents = EV_NONE)
439 CODE: 443 CODE:
440 w->cb (w, revents); 444 w->cb (w, revents);
441 445
446int priority (struct ev_watcher *w, int new_priority = 0)
447 CODE:
448{
449 RETVAL = w->priority;
450
451 if (items > 1)
452 {
453 int active = ev_is_active (w);
454
455 if (new_priority < EV_MINPRI || new_priority > EV_MAXPRI)
456 croak ("watcher priority out of range, value must be between %d and %d, inclusive", EV_MINPRI, EV_MAXPRI);
457
458 if (active)
459 {
460 /* grrr. */
461 PUSHMARK (SP);
462 XPUSHs (ST (0));
463 call_method ("stop", G_DISCARD | G_VOID);
464 }
465
466 ev_set_priority (w, new_priority);
467
468 if (active)
469 {
470 PUSHMARK (SP);
471 XPUSHs (ST (0));
472 call_method ("start", G_DISCARD | G_VOID);
473 }
474 }
475}
476 OUTPUT:
477 RETVAL
478
442MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_ 479MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
443 480
444void ev_io_start (struct ev_io *w) 481void ev_io_start (struct ev_io *w)
445 482
446void ev_io_stop (struct ev_io *w) 483void ev_io_stop (struct ev_io *w)
451 e_destroy (w); 488 e_destroy (w);
452 489
453void set (struct ev_io *w, SV *fh, int events) 490void set (struct ev_io *w, SV *fh, int events)
454 CODE: 491 CODE:
455{ 492{
456 int active = w->active; 493 int active = ev_is_active (w);
457 int fd = sv_fileno (fh); 494 int fd = sv_fileno (fh);
458 CHECK_FD (fh, fd); 495 CHECK_FD (fh, fd);
459 496
460 if (active) ev_io_stop (w); 497 if (active) ev_io_stop (w);
461 498
470{ 507{
471 RETVAL = newSVsv (w->fh); 508 RETVAL = newSVsv (w->fh);
472 509
473 if (items > 1) 510 if (items > 1)
474 { 511 {
475 int active = w->active; 512 int active = ev_is_active (w);
476 if (active) ev_io_stop (w); 513 if (active) ev_io_stop (w);
477 514
478 sv_setsv (w->fh, new_fh); 515 sv_setsv (w->fh, new_fh);
479 ev_io_set (w, sv_fileno (w->fh), w->events); 516 ev_io_set (w, sv_fileno (w->fh), w->events);
480 517
482 } 519 }
483} 520}
484 OUTPUT: 521 OUTPUT:
485 RETVAL 522 RETVAL
486 523
487short events (struct ev_io *w, short new_events = EV_UNDEF) 524int events (struct ev_io *w, int new_events = EV_UNDEF)
488 CODE: 525 CODE:
489{ 526{
490 RETVAL = w->events; 527 RETVAL = w->events;
491 528
492 if (items > 1) 529 if (items > 1)
493 { 530 {
494 int active = w->active; 531 int active = ev_is_active (w);
495 if (active) ev_io_stop (w); 532 if (active) ev_io_stop (w);
496 533
497 ev_io_set (w, w->fd, new_events); 534 ev_io_set (w, w->fd, new_events);
498 535
499 if (active) ev_io_start (w); 536 if (active) ev_io_start (w);
511void DESTROY (struct ev_signal *w) 548void DESTROY (struct ev_signal *w)
512 CODE: 549 CODE:
513 ev_signal_stop (w); 550 ev_signal_stop (w);
514 e_destroy (w); 551 e_destroy (w);
515 552
516void set (struct ev_signal *w, SV *signal = 0) 553void set (struct ev_signal *w, SV *signal)
517 CODE: 554 CODE:
518{ 555{
519 Signal signum = sv_signum (signal); /* may croak here */ 556 Signal signum = sv_signum (signal); /* may croak here */
520 int active = w->active; 557 int active = ev_is_active (w);
521 558
522 if (active) ev_signal_stop (w); 559 if (active) ev_signal_stop (w);
560
523 ev_signal_set (w, signum); 561 ev_signal_set (w, signum);
562
524 if (active) ev_signal_start (w); 563 if (active) ev_signal_start (w);
525} 564}
565
566int signal (struct ev_signal *w, SV *new_signal = 0)
567 CODE:
568{
569 RETVAL = w->signum;
570
571 if (items > 1)
572 {
573 Signal signum = sv_signum (new_signal); /* may croak here */
574 int active = ev_is_active (w);
575 if (active) ev_signal_stop (w);
576
577 ev_signal_set (w, signum);
578
579 if (active) ev_signal_start (w);
580 }
581}
582 OUTPUT:
583 RETVAL
526 584
527MODULE = EV PACKAGE = EV::Time 585MODULE = EV PACKAGE = EV::Time
528 586
529MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 587MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
530 588
546void set (struct ev_timer *w, NV after, NV repeat = 0.) 604void set (struct ev_timer *w, NV after, NV repeat = 0.)
547 INIT: 605 INIT:
548 CHECK_REPEAT (repeat); 606 CHECK_REPEAT (repeat);
549 CODE: 607 CODE:
550{ 608{
551 int active = w->active; 609 int active = ev_is_active (w);
552 if (active) ev_timer_stop (w); 610 if (active) ev_timer_stop (w);
553 ev_timer_set (w, after, repeat); 611 ev_timer_set (w, after, repeat);
554 if (active) ev_timer_start (w); 612 if (active) ev_timer_start (w);
555} 613}
556 614
570void set (struct ev_periodic *w, NV at, NV interval = 0.) 628void set (struct ev_periodic *w, NV at, NV interval = 0.)
571 INIT: 629 INIT:
572 CHECK_REPEAT (interval); 630 CHECK_REPEAT (interval);
573 CODE: 631 CODE:
574{ 632{
575 int active = w->active; 633 int active = ev_is_active (w);
576 if (active) ev_periodic_stop (w); 634 if (active) ev_periodic_stop (w);
635
577 ev_periodic_set (w, at, interval); 636 ev_periodic_set (w, at, interval);
637
578 if (active) ev_periodic_start (w); 638 if (active) ev_periodic_start (w);
579} 639}
580 640
581MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 641MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
582 642
623 e_destroy (w); 683 e_destroy (w);
624 684
625void set (struct ev_child *w, int pid) 685void set (struct ev_child *w, int pid)
626 CODE: 686 CODE:
627{ 687{
628 int active = w->active; 688 int active = ev_is_active (w);
629 if (active) ev_child_stop (w); 689 if (active) ev_child_stop (w);
690
630 ev_child_set (w, pid); 691 ev_child_set (w, pid);
692
631 if (active) ev_child_start (w); 693 if (active) ev_child_start (w);
632} 694}
633 695
696int pid (struct ev_child *w, int new_pid = 0)
697 CODE:
698{
699 RETVAL = w->pid;
700
701 if (items > 1)
702 {
703 int active = ev_is_active (w);
704 if (active) ev_child_stop (w);
705
706 ev_child_set (w, new_pid);
707
708 if (active) ev_child_start (w);
709 }
710}
711 OUTPUT:
712 RETVAL
713
714
634int status (struct ev_child *w) 715int status (struct ev_child *w)
635 CODE: 716 CODE:
636 RETVAL = w->status; 717 RETVAL = w->status;
637 OUTPUT: 718 OUTPUT:
638 RETVAL 719 RETVAL
639
640#if 0
641 720
642MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 721MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
643 722
644BOOT: 723BOOT:
645{ 724{
728 807
729void evdns_search_add (char *domain) 808void evdns_search_add (char *domain)
730 809
731void evdns_search_ndots_set (int ndots) 810void evdns_search_ndots_set (int ndots)
732 811
812#if 0
733 813
734MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 814MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
735 815
736BOOT: 816BOOT:
737{ 817{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines