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

Comparing EV/EV.xs (file contents):
Revision 1.79 by root, Sat Nov 24 16:57:30 2007 UTC vs.
Revision 1.85 by root, Sat Dec 1 22:51:34 2007 UTC

20/* due to bugs in OS X we have to use libev/ explicitly here */ 20/* due to bugs in OS X we have to use libev/ explicitly here */
21#include "libev/ev.c" 21#include "libev/ev.c"
22#include "event.c" 22#include "event.c"
23 23
24#ifndef _WIN32 24#ifndef _WIN32
25#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
26#if !defined (WIN32) && !defined(__CYGWIN__)
27# define HAVE_STRUCT_IN6_ADDR 1
28#endif
29#undef HAVE_STRTOK_R
30#undef strtok_r
31#define strtok_r fake_strtok_r
32#include "evdns.h"
33#include "evdns.c"
34#endif
35
36#ifndef _WIN32
37# include <pthread.h> 25# include <pthread.h>
38#endif 26#endif
39 27
40#define WFLAG_KEEPALIVE 1 28#define WFLAG_KEEPALIVE 1
41 29
58#define STOP(type,w) \ 46#define STOP(type,w) \
59 do { \ 47 do { \
60 REF (w); \ 48 REF (w); \
61 ev_ ## type ## _stop (w); \ 49 ev_ ## type ## _stop (w); \
62 } while (0) 50 } while (0)
51
52#define RESET(type,w,seta) \
53 do { \
54 int active = ev_is_active (w); \
55 if (active) STOP (type, w); \
56 ev_ ## type ## _set seta; \
57 if (active) START (type, w); \
58 } while (0)
63 59
64typedef int Signal; 60typedef int Signal;
65 61
66static struct EVAPI evapi; 62static struct EVAPI evapi;
67 63
69 *stash_watcher, 65 *stash_watcher,
70 *stash_io, 66 *stash_io,
71 *stash_timer, 67 *stash_timer,
72 *stash_periodic, 68 *stash_periodic,
73 *stash_signal, 69 *stash_signal,
70 *stash_child,
71 *stash_stat,
74 *stash_idle, 72 *stash_idle,
75 *stash_prepare, 73 *stash_prepare,
76 *stash_check, 74 *stash_check,
77 *stash_child; 75 *stash_embed,
76 *stash_fork;
78 77
79#ifndef SIG_SIZE 78#ifndef SIG_SIZE
80/* kudos to Slaven Rezic for the idea */ 79/* kudos to Slaven Rezic for the idea */
81static char sig_size [] = { SIG_NUM }; 80static char sig_size [] = { SIG_NUM };
82# define SIG_SIZE (sizeof (sig_size) + 1) 81# define SIG_SIZE (sizeof (sig_size) + 1)
83#endif 82#endif
84 83
85static int 84static Signal
86sv_signum (SV *sig) 85sv_signum (SV *sig)
87{ 86{
88 int signum; 87 Signal signum;
89 88
90 SvGETMAGIC (sig); 89 SvGETMAGIC (sig);
91 90
92 for (signum = 1; signum < SIG_SIZE; ++signum) 91 for (signum = 1; signum < SIG_SIZE; ++signum)
93 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum])) 92 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum]))
94 return signum; 93 return signum;
95 94
96 if (SvIV (sig) > 0) 95 signum = SvIV (sig);
96
97 if (signum > 0 && signum < SIG_SIZE)
97 return SvIV (sig); 98 return signum;
98 99
99 return -1; 100 return -1;
100} 101}
101 102
102///////////////////////////////////////////////////////////////////////////// 103/////////////////////////////////////////////////////////////////////////////
203 else 204 else
204 sv_events_cache = sv_events; 205 sv_events_cache = sv_events;
205 206
206 if (SvTRUE (ERRSV)) 207 if (SvTRUE (ERRSV))
207 { 208 {
209 SPAGAIN;
208 PUSHMARK (SP); 210 PUSHMARK (SP);
209 PUTBACK; 211 PUTBACK;
210 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 212 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
211 } 213 }
212 214
294 LEAVE; 296 LEAVE;
295 297
296 return retval; 298 return retval;
297} 299}
298 300
299/////////////////////////////////////////////////////////////////////////////
300// DNS
301
302#ifndef _WIN32
303static void
304dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
305{
306 dSP;
307 SV *cb = (SV *)arg;
308
309 ENTER;
310 SAVETMPS;
311 PUSHMARK (SP);
312 EXTEND (SP, count + 3);
313 PUSHs (sv_2mortal (newSViv (result)));
314
315 if (result == DNS_ERR_NONE && ttl >= 0)
316 {
317 int i;
318
319 PUSHs (sv_2mortal (newSViv (type)));
320 PUSHs (sv_2mortal (newSViv (ttl)));
321
322 for (i = 0; i < count; ++i)
323 switch (type)
324 {
325 case DNS_IPv6_AAAA:
326 PUSHs (sv_2mortal (newSVpvn (i * 16 + (char *)addresses, 16)));
327 break;
328 case DNS_IPv4_A:
329 PUSHs (sv_2mortal (newSVpvn (i * 4 + (char *)addresses, 4)));
330 break;
331 case DNS_PTR:
332 PUSHs (sv_2mortal (newSVpv (*(char **)addresses, 0)));
333 break;
334 }
335 }
336
337 PUTBACK;
338 call_sv (sv_2mortal (cb), G_DISCARD | G_VOID | G_EVAL);
339
340 FREETMPS;
341
342 if (SvTRUE (ERRSV))
343 {
344 PUSHMARK (SP);
345 PUTBACK;
346 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
347 }
348
349 LEAVE;
350}
351#endif
352
353#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 301#define CHECK_REPEAT(repeat) if (repeat < 0.) \
354 croak (# repeat " value must be >= 0"); 302 croak (# repeat " value must be >= 0");
355 303
356#define CHECK_FD(fh,fd) if ((fd) < 0) \ 304#define CHECK_FD(fh,fd) if ((fd) < 0) \
357 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh)); 305 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
306
307#define CHECK_SIG(sv,num) if ((num) < 0) \
308 croak ("illegal signal number or name: %s", SvPV_nolen (sv));
358 309
359///////////////////////////////////////////////////////////////////////////// 310/////////////////////////////////////////////////////////////////////////////
360// XS interface functions 311// XS interface functions
361 312
362MODULE = EV PACKAGE = EV PREFIX = ev_ 313MODULE = EV PACKAGE = EV PREFIX = ev_
396 const_iv (EV, BACKEND_KQUEUE) 347 const_iv (EV, BACKEND_KQUEUE)
397 const_iv (EV, BACKEND_DEVPOLL) 348 const_iv (EV, BACKEND_DEVPOLL)
398 const_iv (EV, BACKEND_PORT) 349 const_iv (EV, BACKEND_PORT)
399 const_iv (EV, FLAG_AUTO) 350 const_iv (EV, FLAG_AUTO)
400 const_iv (EV, FLAG_NOENV) 351 const_iv (EV, FLAG_NOENV)
352 const_iv (EV, FLAG_FORKCHECK)
401 }; 353 };
402 354
403 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 355 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
404 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 356 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
405 357
410 stash_signal = gv_stashpv ("EV::Signal" , 1); 362 stash_signal = gv_stashpv ("EV::Signal" , 1);
411 stash_idle = gv_stashpv ("EV::Idle" , 1); 363 stash_idle = gv_stashpv ("EV::Idle" , 1);
412 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 364 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
413 stash_check = gv_stashpv ("EV::Check" , 1); 365 stash_check = gv_stashpv ("EV::Check" , 1);
414 stash_child = gv_stashpv ("EV::Child" , 1); 366 stash_child = gv_stashpv ("EV::Child" , 1);
367 stash_embed = gv_stashpv ("EV::Embed" , 1);
368 stash_stat = gv_stashpv ("EV::Stat" , 1);
415 369
416 { 370 {
417 SV *sv = perl_get_sv ("EV::API", TRUE); 371 SV *sv = perl_get_sv ("EV::API", TRUE);
418 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 372 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
419 373
423 evapi.sv_fileno = sv_fileno; 377 evapi.sv_fileno = sv_fileno;
424 evapi.sv_signum = sv_signum; 378 evapi.sv_signum = sv_signum;
425 evapi.now = ev_now; 379 evapi.now = ev_now;
426 evapi.backend = ev_backend; 380 evapi.backend = ev_backend;
427 evapi.unloop = ev_unloop; 381 evapi.unloop = ev_unloop;
382 evapi.ref = ev_ref;
383 evapi.unref = ev_unref;
428 evapi.time = ev_time; 384 evapi.time = ev_time;
429 evapi.loop = ev_loop; 385 evapi.loop = ev_loop;
430 evapi.once = ev_once; 386 evapi.once = ev_once;
431 evapi.io_start = ev_io_start; 387 evapi.io_start = ev_io_start;
432 evapi.io_stop = ev_io_stop; 388 evapi.io_stop = ev_io_stop;
443 evapi.prepare_stop = ev_prepare_stop; 399 evapi.prepare_stop = ev_prepare_stop;
444 evapi.check_start = ev_check_start; 400 evapi.check_start = ev_check_start;
445 evapi.check_stop = ev_check_stop; 401 evapi.check_stop = ev_check_stop;
446 evapi.child_start = ev_child_start; 402 evapi.child_start = ev_child_start;
447 evapi.child_stop = ev_child_stop; 403 evapi.child_stop = ev_child_stop;
448 evapi.ref = ev_ref; 404 evapi.stat_start = ev_stat_start;
449 evapi.unref = ev_unref; 405 evapi.stat_stop = ev_stat_stop;
406 evapi.stat_stat = ev_stat_stat;
450 407
451 sv_setiv (sv, (IV)&evapi); 408 sv_setiv (sv, (IV)&evapi);
452 SvREADONLY_on (sv); 409 SvREADONLY_on (sv);
453 } 410 }
454#ifndef _WIN32 411#ifndef _WIN32
511 if (!ix) START (periodic, w); 468 if (!ix) START (periodic, w);
512} 469}
513 OUTPUT: 470 OUTPUT:
514 RETVAL 471 RETVAL
515 472
516ev_signal *signal (Signal signum, SV *cb) 473ev_signal *signal (SV *signal, SV *cb)
517 ALIAS: 474 ALIAS:
518 signal_ns = 1 475 signal_ns = 1
519 CODE: 476 CODE:
477{
478 Signal signum = sv_signum (signal);
479 CHECK_SIG (signal, signum);
480
520 RETVAL = e_new (sizeof (ev_signal), cb); 481 RETVAL = e_new (sizeof (ev_signal), cb);
521 ev_signal_set (RETVAL, signum); 482 ev_signal_set (RETVAL, signum);
522 if (!ix) START (signal, RETVAL); 483 if (!ix) START (signal, RETVAL);
484}
523 OUTPUT: 485 OUTPUT:
524 RETVAL 486 RETVAL
525 487
526ev_idle *idle (SV *cb) 488ev_idle *idle (SV *cb)
527 ALIAS: 489 ALIAS:
558 child_ns = 1 520 child_ns = 1
559 CODE: 521 CODE:
560 RETVAL = e_new (sizeof (ev_child), cb); 522 RETVAL = e_new (sizeof (ev_child), cb);
561 ev_child_set (RETVAL, pid); 523 ev_child_set (RETVAL, pid);
562 if (!ix) START (child, RETVAL); 524 if (!ix) START (child, RETVAL);
525 OUTPUT:
526 RETVAL
527
528ev_stat *stat (SV *path, NV interval, SV *cb)
529 ALIAS:
530 stat_ns = 1
531 CODE:
532 RETVAL = e_new (sizeof (ev_stat), cb);
533 RETVAL->fh = newSVsv (path);
534 ev_stat_set (RETVAL, SvPVbyte_nolen (RETVAL->fh), interval);
535 if (!ix) START (stat, RETVAL);
563 OUTPUT: 536 OUTPUT:
564 RETVAL 537 RETVAL
565 538
566void once (SV *fh, int events, SV *timeout, SV *cb) 539void once (SV *fh, int events, SV *timeout, SV *cb)
567 CODE: 540 CODE:
674 e_destroy (w); 647 e_destroy (w);
675 648
676void set (ev_io *w, SV *fh, int events) 649void set (ev_io *w, SV *fh, int events)
677 CODE: 650 CODE:
678{ 651{
679 int active = ev_is_active (w);
680 int fd = sv_fileno (fh); 652 int fd = sv_fileno (fh);
681 CHECK_FD (fh, fd); 653 CHECK_FD (fh, fd);
682 654
683 if (active) STOP (io, w);
684
685 sv_setsv (w->fh, fh); 655 sv_setsv (w->fh, fh);
686 ev_io_set (w, fd, events); 656 RESET (io, w, (w, fd, events));
687
688 if (active) START (io, w);
689} 657}
690 658
691SV *fh (ev_io *w, SV *new_fh = 0) 659SV *fh (ev_io *w, SV *new_fh = 0)
692 CODE: 660 CODE:
693{ 661{
694 RETVAL = newSVsv (w->fh);
695
696 if (items > 1) 662 if (items > 1)
697 { 663 {
698 int active = ev_is_active (w); 664 int fd = sv_fileno (new_fh);
699 if (active) STOP (io, w); 665 CHECK_FD (new_fh, fd);
700 666
701 sv_setsv (w->fh, new_fh); 667 RETVAL = w->fh;
702 ev_io_set (w, sv_fileno (w->fh), w->events); 668 w->fh = newSVsv (new_fh);
703 669
704 if (active) START (io, w); 670 RESET (io, w, (w, fd, w->events));
705 } 671 }
672 else
673 RETVAL = newSVsv (w->fh);
706} 674}
707 OUTPUT: 675 OUTPUT:
708 RETVAL 676 RETVAL
709 677
710int events (ev_io *w, int new_events = EV_UNDEF) 678int events (ev_io *w, int new_events = EV_UNDEF)
711 CODE: 679 CODE:
712{ 680{
713 RETVAL = w->events; 681 RETVAL = w->events;
682
683 if (items > 1)
684 RESET (io, w, (w, w->fd, new_events));
685}
686 OUTPUT:
687 RETVAL
688
689MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
690
691void ev_signal_start (ev_signal *w)
692 CODE:
693 START (signal, w);
694
695void ev_signal_stop (ev_signal *w)
696 CODE:
697 STOP (signal, w);
698
699void DESTROY (ev_signal *w)
700 CODE:
701 STOP (signal, w);
702 e_destroy (w);
703
704void set (ev_signal *w, SV *signal)
705 CODE:
706{
707 Signal signum = sv_signum (signal);
708 CHECK_SIG (signal, signum);
709
710 RESET (signal, w, (w, signum));
711}
712
713int signal (ev_signal *w, SV *new_signal = 0)
714 CODE:
715{
716 RETVAL = w->signum;
714 717
715 if (items > 1) 718 if (items > 1)
716 { 719 {
717 int active = ev_is_active (w);
718 if (active) STOP (io, w);
719
720 ev_io_set (w, w->fd, new_events);
721
722 if (active) START (io, w);
723 }
724}
725 OUTPUT:
726 RETVAL
727
728MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
729
730void ev_signal_start (ev_signal *w)
731 CODE:
732 START (signal, w);
733
734void ev_signal_stop (ev_signal *w)
735 CODE:
736 STOP (signal, w);
737
738void DESTROY (ev_signal *w)
739 CODE:
740 STOP (signal, w);
741 e_destroy (w);
742
743void set (ev_signal *w, SV *signal)
744 CODE:
745{
746 Signal signum = sv_signum (signal); /* may croak here */
747 int active = ev_is_active (w);
748
749 if (active) STOP (signal, w);
750
751 ev_signal_set (w, signum);
752
753 if (active) START (signal, w);
754}
755
756int signal (ev_signal *w, SV *new_signal = 0)
757 CODE:
758{
759 RETVAL = w->signum;
760
761 if (items > 1)
762 {
763 Signal signum = sv_signum (new_signal); /* may croak here */ 720 Signal signum = sv_signum (new_signal);
764 int active = ev_is_active (w); 721 CHECK_SIG (new_signal, signum);
765 if (active) STOP (signal, w);
766 722
767 ev_signal_set (w, signum); 723 RESET (signal, w, (w, signum));
768
769 if (active) START (signal, w);
770 } 724 }
771} 725}
772 OUTPUT: 726 OUTPUT:
773 RETVAL 727 RETVAL
774 728
799 753
800void set (ev_timer *w, NV after, NV repeat = 0.) 754void set (ev_timer *w, NV after, NV repeat = 0.)
801 INIT: 755 INIT:
802 CHECK_REPEAT (repeat); 756 CHECK_REPEAT (repeat);
803 CODE: 757 CODE:
804{
805 int active = ev_is_active (w);
806 if (active) STOP (timer, w);
807 ev_timer_set (w, after, repeat); 758 RESET (timer, w, (w, after, repeat));
808 if (active) START (timer, w);
809}
810 759
811MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_ 760MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
812 761
813void ev_periodic_start (ev_periodic *w) 762void ev_periodic_start (ev_periodic *w)
814 INIT: 763 INIT:
834void set (ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef) 783void set (ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef)
835 INIT: 784 INIT:
836 CHECK_REPEAT (interval); 785 CHECK_REPEAT (interval);
837 CODE: 786 CODE:
838{ 787{
839 int active = ev_is_active (w);
840 if (active) STOP (periodic, w);
841
842 SvREFCNT_dec (w->fh); 788 SvREFCNT_dec (w->fh);
843 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 789 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
790
844 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0); 791 RESET (periodic, w, (w, at, interval, w->fh ? e_periodic_cb : 0));
845
846 if (active) START (periodic, w);
847} 792}
848 793
849MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 794MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
850 795
851void ev_idle_start (ev_idle *w) 796void ev_idle_start (ev_idle *w)
906 STOP (child, w); 851 STOP (child, w);
907 e_destroy (w); 852 e_destroy (w);
908 853
909void set (ev_child *w, int pid) 854void set (ev_child *w, int pid)
910 CODE: 855 CODE:
911{ 856 RESET (child, w, (w, pid));
912 int active = ev_is_active (w);
913 if (active) STOP (child, w);
914
915 ev_child_set (w, pid);
916
917 if (active) START (child, w);
918}
919 857
920int pid (ev_child *w, int new_pid = 0) 858int pid (ev_child *w, int new_pid = 0)
921 CODE: 859 CODE:
922{ 860{
923 RETVAL = w->pid; 861 RETVAL = w->pid;
924 862
925 if (items > 1) 863 if (items > 1)
926 { 864 RESET (child, w, (w, new_pid));
927 int active = ev_is_active (w);
928 if (active) STOP (child, w);
929
930 ev_child_set (w, new_pid);
931
932 if (active) START (child, w);
933 }
934} 865}
935 OUTPUT: 866 OUTPUT:
936 RETVAL 867 RETVAL
937 868
938 869
942 CODE: 873 CODE:
943 RETVAL = ix ? w->rpid : w->rstatus; 874 RETVAL = ix ? w->rpid : w->rstatus;
944 OUTPUT: 875 OUTPUT:
945 RETVAL 876 RETVAL
946 877
947#ifndef _WIN32
948
949MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 878MODULE = EV PACKAGE = EV::Stat PREFIX = ev_stat_
950 879
951BOOT: 880void ev_stat_start (ev_stat *w)
952{ 881 CODE:
953 HV *stash = gv_stashpv ("EV::DNS", 1); 882 START (stat, w);
954 883
955 static const struct { 884void ev_stat_stop (ev_stat *w)
956 const char *name; 885 CODE:
957 IV iv; 886 STOP (stat, w);
958 } *civ, const_iv[] = {
959# define const_iv(pfx, name) { # name, (IV) pfx ## name },
960 const_iv (DNS_, ERR_NONE)
961 const_iv (DNS_, ERR_FORMAT)
962 const_iv (DNS_, ERR_SERVERFAILED)
963 const_iv (DNS_, ERR_NOTEXIST)
964 const_iv (DNS_, ERR_NOTIMPL)
965 const_iv (DNS_, ERR_REFUSED)
966 const_iv (DNS_, ERR_TRUNCATED)
967 const_iv (DNS_, ERR_UNKNOWN)
968 const_iv (DNS_, ERR_TIMEOUT)
969 const_iv (DNS_, ERR_SHUTDOWN)
970 const_iv (DNS_, IPv4_A)
971 const_iv (DNS_, PTR)
972 const_iv (DNS_, IPv6_AAAA)
973 const_iv (DNS_, QUERY_NO_SEARCH)
974 const_iv (DNS_, OPTION_SEARCH)
975 const_iv (DNS_, OPTION_NAMESERVERS)
976 const_iv (DNS_, OPTION_MISC)
977 const_iv (DNS_, OPTIONS_ALL)
978 const_iv (DNS_, NO_SEARCH)
979 };
980 887
981 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 888void DESTROY (ev_stat *w)
982 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 889 CODE:
983} 890 STOP (stat, w);
891 e_destroy (w);
984 892
985int evdns_init () 893void set (ev_stat *w, SV *path, NV interval)
894 CODE:
895{
896 sv_setsv (w->fh, path);
897 RESET (stat, w, (w, SvPVbyte_nolen (w->fh), interval));
898}
986 899
987void evdns_shutdown (int fail_requests = 1) 900SV *path (ev_stat *w, SV *new_path = 0)
901 CODE:
902{
903 RETVAL = SvREFCNT_inc (w->fh);
988 904
989const char *evdns_err_to_string (int err) 905 if (items > 1)
906 {
907 SvREFCNT_dec (w->fh);
908 w->fh = newSVsv (new_path);
909 RESET (stat, w, (w, SvPVbyte_nolen (w->fh), w->interval));
910 }
911}
912 OUTPUT:
913 RETVAL
990 914
991int evdns_nameserver_add (U32 address) 915NV interval (ev_stat *w, NV new_interval = 0.)
916 CODE:
917{
918 RETVAL = w->interval;
992 919
993int evdns_count_nameservers () 920 if (items > 1)
921 RESET (stat, w, (w, SvPVbyte_nolen (w->fh), new_interval));
922}
923 OUTPUT:
924 RETVAL
994 925
995int evdns_clear_nameservers_and_suspend () 926void prev (ev_stat *w)
996
997int evdns_resume ()
998
999int evdns_nameserver_ip_add (char *ip_as_string)
1000
1001int evdns_resolve_ipv4 (const char *name, int flags, SV *cb)
1002 C_ARGS: name, flags, dns_cb, (void *)SvREFCNT_inc (cb)
1003
1004int evdns_resolve_ipv6 (const char *name, int flags, SV *cb)
1005 C_ARGS: name, flags, dns_cb, (void *)SvREFCNT_inc (cb)
1006
1007int evdns_resolve_reverse (SV *addr, int flags, SV *cb)
1008 ALIAS: 927 ALIAS:
1009 evdns_resolve_reverse_ipv6 = 1 928 stat = 1
1010 CODE: 929 attr = 2
930 PPCODE:
1011{ 931{
1012 STRLEN len; 932 ev_statdata *s = ix ? &w->attr : &w->prev;
1013 char *data = SvPVbyte (addr, len);
1014 if (len != (ix ? 16 : 4))
1015 croak ("ipv4/ipv6 address to be resolved must be given as 4/16 byte octet string");
1016 933
1017 RETVAL = ix 934 if (ix == 1)
1018 ? evdns_resolve_reverse_ipv6 ((struct in6_addr *)data, flags, dns_cb, (void *)SvREFCNT_inc (cb)) 935 ev_stat_stat (w);
1019 : evdns_resolve_reverse ((struct in_addr *)data, flags, dns_cb, (void *)SvREFCNT_inc (cb)); 936 else if (!s->st_nlink)
1020} 937 errno = ENOENT;
1021 OUTPUT:
1022 RETVAL
1023 938
1024int evdns_set_option (char *option, char *val, int flags) 939 PL_statcache.st_dev = s->st_nlink;
940 PL_statcache.st_ino = s->st_ino;
941 PL_statcache.st_mode = s->st_mode;
942 PL_statcache.st_nlink = s->st_nlink;
943 PL_statcache.st_uid = s->st_uid;
944 PL_statcache.st_gid = s->st_gid;
945 PL_statcache.st_rdev = s->st_rdev;
946 PL_statcache.st_size = s->st_size;
947 PL_statcache.st_atime = s->st_atime;
948 PL_statcache.st_mtime = s->st_mtime;
949 PL_statcache.st_ctime = s->st_ctime;
1025 950
1026int evdns_resolv_conf_parse (int flags, const char *filename) 951 if (GIMME_V == G_SCALAR)
1027 952 XPUSHs (boolSV (s->st_nlink));
1028#ifdef _WIN32 953 else if (GIMME_V == G_ARRAY && s->st_nlink)
1029 954 {
1030int evdns_config_windows_nameservers () 955 EXTEND (SP, 13);
1031 956 PUSHs (sv_2mortal (newSViv (s->st_dev)));
1032#endif 957 PUSHs (sv_2mortal (newSViv (s->st_ino)));
1033 958 PUSHs (sv_2mortal (newSVuv (s->st_mode)));
1034void evdns_search_clear () 959 PUSHs (sv_2mortal (newSVuv (s->st_nlink)));
1035 960 PUSHs (sv_2mortal (newSViv (s->st_uid)));
1036void evdns_search_add (char *domain) 961 PUSHs (sv_2mortal (newSViv (s->st_gid)));
1037 962 PUSHs (sv_2mortal (newSViv (s->st_rdev)));
1038void evdns_search_ndots_set (int ndots) 963 PUSHs (sv_2mortal (newSVnv ((NV)s->st_size)));
964 PUSHs (sv_2mortal (newSVnv (s->st_atime)));
965 PUSHs (sv_2mortal (newSVnv (s->st_mtime)));
966 PUSHs (sv_2mortal (newSVnv (s->st_ctime)));
967 PUSHs (sv_2mortal (newSVuv (4096)));
968 PUSHs (sv_2mortal (newSVnv ((NV)((s->st_size + 4095) / 4096))));
969 }
970}
1039 971
1040#if 0 972#if 0
1041 973
1042MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 974MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
1043 975
1077 1009
1078#void DESTROY (struct evhttp_request *req); 1010#void DESTROY (struct evhttp_request *req);
1079 1011
1080#endif 1012#endif
1081 1013
1082#endif
1083 1014
1084 1015
1085 1016
1086 1017
1087 1018

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines