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

Comparing EV/EV.xs (file contents):
Revision 1.59 by root, Thu Nov 8 00:44:17 2007 UTC vs.
Revision 1.67 by root, Mon Nov 12 21:51:14 2007 UTC

9 9
10/* fix perl api breakage */ 10/* fix perl api breakage */
11#undef signal 11#undef signal
12#undef sigaction 12#undef sigaction
13 13
14#define EV_SELECT_USE_WIN32_HANDLES 0 14#define EV_SELECT_IS_WINSOCKET 0
15#ifdef _WIN32
15#define EV_SELECT_USE_FD_SET 0 16# define EV_SELECT_USE_FD_SET 0
17# define NFDBITS PERL_NFDBITS
18# define fd_mask Perl_fd_mask
19#endif
16/* 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 */
17#include "libev/ev.c" 21#include "libev/ev.c"
18#include "event.c" 22#include "event.c"
19 23
20#ifndef WIN32 24#ifndef _WIN32
21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 25#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
22#if !defined (WIN32) && !defined(__CYGWIN__) 26#if !defined (WIN32) && !defined(__CYGWIN__)
23# define HAVE_STRUCT_IN6_ADDR 1 27# define HAVE_STRUCT_IN6_ADDR 1
24#endif 28#endif
25#undef HAVE_STRTOK_R 29#undef HAVE_STRTOK_R
26#undef strtok_r 30#undef strtok_r
27#define strtok_r fake_strtok_r 31#define strtok_r fake_strtok_r
32#include "evdns.h"
28#include "evdns.c" 33#include "evdns.c"
29#endif 34#endif
30 35
31#ifndef WIN32 36#ifndef _WIN32
32# include <pthread.h> 37# include <pthread.h>
33#endif 38#endif
34 39
35typedef int Signal; 40typedef int Signal;
36 41
100 SvPOK_only (self); 105 SvPOK_only (self);
101 SvCUR_set (self, size); 106 SvCUR_set (self, size);
102 107
103 w = (struct ev_watcher *)SvPVX (self); 108 w = (struct ev_watcher *)SvPVX (self);
104 109
105 ev_watcher_init (w, e_cb); 110 ev_init (w, e_cb);
106 111
112 w->data = 0;
107 w->fh = 0; 113 w->fh = 0;
108 w->cb_sv = newSVsv (cb_sv); 114 w->cb_sv = newSVsv (cb_sv);
109 w->self = self; 115 w->self = self;
110 116
111 return (void *)w; 117 return (void *)w;
116{ 122{
117 struct ev_watcher *w = (struct ev_watcher *)w_; 123 struct ev_watcher *w = (struct ev_watcher *)w_;
118 124
119 SvREFCNT_dec (w->fh ); w->fh = 0; 125 SvREFCNT_dec (w->fh ); w->fh = 0;
120 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 126 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
127 SvREFCNT_dec (w->data ); w->data = 0;
121} 128}
122 129
123static SV * 130static SV *
124e_bless (struct ev_watcher *w, HV *stash) 131e_bless (struct ev_watcher *w, HV *stash)
125{ 132{
225} 232}
226 233
227///////////////////////////////////////////////////////////////////////////// 234/////////////////////////////////////////////////////////////////////////////
228// DNS 235// DNS
229 236
230#ifndef WIN32 237#ifndef _WIN32
231static void 238static void
232dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 239dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
233{ 240{
234 dSP; 241 dSP;
235 SV *cb = (SV *)arg; 242 SV *cb = (SV *)arg;
313 const_iv (EV_, CHECK) 320 const_iv (EV_, CHECK)
314 const_iv (EV_, ERROR) 321 const_iv (EV_, ERROR)
315 322
316 const_iv (EV, LOOP_ONESHOT) 323 const_iv (EV, LOOP_ONESHOT)
317 const_iv (EV, LOOP_NONBLOCK) 324 const_iv (EV, LOOP_NONBLOCK)
325 const_iv (EV, UNLOOP_ONE)
326 const_iv (EV, UNLOOP_ALL)
318 327
319 const_iv (EV, METHOD_AUTO)
320 const_iv (EV, METHOD_SELECT) 328 const_iv (EV, METHOD_SELECT)
321 const_iv (EV, METHOD_POLL) 329 const_iv (EV, METHOD_POLL)
322 const_iv (EV, METHOD_EPOLL) 330 const_iv (EV, METHOD_EPOLL)
323 const_iv (EV, METHOD_KQUEUE) 331 const_iv (EV, METHOD_KQUEUE)
324 const_iv (EV, METHOD_DEVPOLL) 332 const_iv (EV, METHOD_DEVPOLL)
325 const_iv (EV, METHOD_PORT) 333 const_iv (EV, METHOD_PORT)
326 const_iv (EV, METHOD_ANY) 334 const_iv (EV, FLAG_AUTO)
335 const_iv (EV, FLAG_NOENV)
327 }; 336 };
328 337
329 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 338 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
330 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 339 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
331 340
373 evapi.child_stop = ev_child_stop; 382 evapi.child_stop = ev_child_stop;
374 383
375 sv_setiv (sv, (IV)&evapi); 384 sv_setiv (sv, (IV)&evapi);
376 SvREADONLY_on (sv); 385 SvREADONLY_on (sv);
377 } 386 }
378#ifndef WIN32 387#ifndef _WIN32
379 pthread_atfork (0, 0, ev_default_fork); 388 pthread_atfork (0, 0, ev_default_fork);
380#endif 389#endif
381} 390}
382 391
383NV ev_now () 392NV ev_now ()
384 393
385int ev_method () 394int ev_method ()
386 395
387NV ev_time () 396NV ev_time ()
388 397
389int ev_default_loop (int methods = EVMETHOD_AUTO) 398int ev_default_loop (int methods = EVFLAG_AUTO)
390 399
391void ev_loop (int flags = 0) 400void ev_loop (int flags = 0)
392 401
393void ev_unloop (int how = 1) 402void ev_unloop (int how = 1)
394 403
427 CHECK_REPEAT (interval); 436 CHECK_REPEAT (interval);
428 CODE: 437 CODE:
429{ 438{
430 struct ev_periodic *w; 439 struct ev_periodic *w;
431 w = e_new (sizeof (struct ev_periodic), cb); 440 w = e_new (sizeof (struct ev_periodic), cb);
432 w->fh = SvOK (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 441 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
433 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0); 442 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
434 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic); 443 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic);
435 if (!ix) ev_periodic_start (w); 444 if (!ix) ev_periodic_start (w);
436} 445}
437 OUTPUT: 446 OUTPUT:
499{ 508{
500 RETVAL = newSVsv (w->cb_sv); 509 RETVAL = newSVsv (w->cb_sv);
501 510
502 if (items > 1) 511 if (items > 1)
503 sv_setsv (w->cb_sv, new_cb); 512 sv_setsv (w->cb_sv, new_cb);
513}
514 OUTPUT:
515 RETVAL
516
517SV *data (struct ev_watcher *w, SV *new_data = 0)
518 CODE:
519{
520 RETVAL = w->data ? newSVsv (w->data) : &PL_sv_undef;
504} 521}
505 OUTPUT: 522 OUTPUT:
506 RETVAL 523 RETVAL
507 524
508void trigger (struct ev_watcher *w, int revents = EV_NONE) 525void trigger (struct ev_watcher *w, int revents = EV_NONE)
786 CODE: 803 CODE:
787 RETVAL = ix ? w->rpid : w->rstatus; 804 RETVAL = ix ? w->rpid : w->rstatus;
788 OUTPUT: 805 OUTPUT:
789 RETVAL 806 RETVAL
790 807
791#ifndef WIN32 808#ifndef _WIN32
792 809
793MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 810MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
794 811
795BOOT: 812BOOT:
796{ 813{
867 884
868int evdns_set_option (char *option, char *val, int flags) 885int evdns_set_option (char *option, char *val, int flags)
869 886
870int evdns_resolv_conf_parse (int flags, const char *filename) 887int evdns_resolv_conf_parse (int flags, const char *filename)
871 888
872#ifdef MS_WINDOWS 889#ifdef _WIN32
873 890
874int evdns_config_windows_nameservers () 891int evdns_config_windows_nameservers ()
875 892
876#endif 893#endif
877 894

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines