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.70 by root, Fri Nov 16 10:37:28 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_USE_MONOTONIC 1
15#define EV_USE_REALTIME 1
14#define EV_SELECT_USE_WIN32_HANDLES 0 16#define EV_SELECT_IS_WINSOCKET 0
17#ifdef _WIN32
15#define EV_SELECT_USE_FD_SET 0 18# define EV_SELECT_USE_FD_SET 0
19# define NFDBITS PERL_NFDBITS
20# define fd_mask Perl_fd_mask
21#endif
16/* due to bugs in OS X we have to use libev/ explicitly here */ 22/* due to bugs in OS X we have to use libev/ explicitly here */
17#include "libev/ev.c" 23#include "libev/ev.c"
18#include "event.c" 24#include "event.c"
19 25
20#ifndef WIN32 26#ifndef _WIN32
21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 27#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
22#if !defined (WIN32) && !defined(__CYGWIN__) 28#if !defined (WIN32) && !defined(__CYGWIN__)
23# define HAVE_STRUCT_IN6_ADDR 1 29# define HAVE_STRUCT_IN6_ADDR 1
24#endif 30#endif
25#undef HAVE_STRTOK_R 31#undef HAVE_STRTOK_R
26#undef strtok_r 32#undef strtok_r
27#define strtok_r fake_strtok_r 33#define strtok_r fake_strtok_r
34#include "evdns.h"
28#include "evdns.c" 35#include "evdns.c"
29#endif 36#endif
30 37
31#ifndef WIN32 38#ifndef _WIN32
32# include <pthread.h> 39# include <pthread.h>
33#endif 40#endif
34 41
35typedef int Signal; 42typedef int Signal;
36 43
100 SvPOK_only (self); 107 SvPOK_only (self);
101 SvCUR_set (self, size); 108 SvCUR_set (self, size);
102 109
103 w = (struct ev_watcher *)SvPVX (self); 110 w = (struct ev_watcher *)SvPVX (self);
104 111
105 ev_watcher_init (w, e_cb); 112 ev_init (w, e_cb);
106 113
114 w->data = 0;
107 w->fh = 0; 115 w->fh = 0;
108 w->cb_sv = newSVsv (cb_sv); 116 w->cb_sv = newSVsv (cb_sv);
109 w->self = self; 117 w->self = self;
110 118
111 return (void *)w; 119 return (void *)w;
116{ 124{
117 struct ev_watcher *w = (struct ev_watcher *)w_; 125 struct ev_watcher *w = (struct ev_watcher *)w_;
118 126
119 SvREFCNT_dec (w->fh ); w->fh = 0; 127 SvREFCNT_dec (w->fh ); w->fh = 0;
120 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 128 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
129 SvREFCNT_dec (w->data ); w->data = 0;
121} 130}
122 131
123static SV * 132static SV *
124e_bless (struct ev_watcher *w, HV *stash) 133e_bless (struct ev_watcher *w, HV *stash)
125{ 134{
160 PUSHs (sv_self); 169 PUSHs (sv_self);
161 PUSHs (sv_events); 170 PUSHs (sv_events);
162 171
163 PUTBACK; 172 PUTBACK;
164 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 173 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
165 SP = PL_stack_base + mark; PUTBACK;
166 174
167 SvREFCNT_dec (sv_self); 175 SvREFCNT_dec (sv_self);
168 SvREFCNT_dec (sv_status); 176 SvREFCNT_dec (sv_status);
169 177
170 if (sv_events_cache) 178 if (sv_events_cache)
175 if (SvTRUE (ERRSV)) 183 if (SvTRUE (ERRSV))
176 { 184 {
177 PUSHMARK (SP); 185 PUSHMARK (SP);
178 PUTBACK; 186 PUTBACK;
179 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 187 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
180 SP = PL_stack_base + mark; PUTBACK;
181 } 188 }
189
190 SP = PL_stack_base + mark;
191 PUTBACK;
182} 192}
183 193
184static ev_tstamp 194static ev_tstamp
185e_periodic_cb (struct ev_periodic *w, ev_tstamp now) 195e_periodic_cb (struct ev_periodic *w, ev_tstamp now)
186{ 196{
225} 235}
226 236
227///////////////////////////////////////////////////////////////////////////// 237/////////////////////////////////////////////////////////////////////////////
228// DNS 238// DNS
229 239
230#ifndef WIN32 240#ifndef _WIN32
231static void 241static void
232dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 242dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
233{ 243{
234 dSP; 244 dSP;
235 SV *cb = (SV *)arg; 245 SV *cb = (SV *)arg;
313 const_iv (EV_, CHECK) 323 const_iv (EV_, CHECK)
314 const_iv (EV_, ERROR) 324 const_iv (EV_, ERROR)
315 325
316 const_iv (EV, LOOP_ONESHOT) 326 const_iv (EV, LOOP_ONESHOT)
317 const_iv (EV, LOOP_NONBLOCK) 327 const_iv (EV, LOOP_NONBLOCK)
328 const_iv (EV, UNLOOP_ONE)
329 const_iv (EV, UNLOOP_ALL)
318 330
319 const_iv (EV, METHOD_AUTO)
320 const_iv (EV, METHOD_SELECT) 331 const_iv (EV, METHOD_SELECT)
321 const_iv (EV, METHOD_POLL) 332 const_iv (EV, METHOD_POLL)
322 const_iv (EV, METHOD_EPOLL) 333 const_iv (EV, METHOD_EPOLL)
323 const_iv (EV, METHOD_KQUEUE) 334 const_iv (EV, METHOD_KQUEUE)
324 const_iv (EV, METHOD_DEVPOLL) 335 const_iv (EV, METHOD_DEVPOLL)
325 const_iv (EV, METHOD_PORT) 336 const_iv (EV, METHOD_PORT)
326 const_iv (EV, METHOD_ANY) 337 const_iv (EV, FLAG_AUTO)
338 const_iv (EV, FLAG_NOENV)
327 }; 339 };
328 340
329 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 341 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
330 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 342 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
331 343
373 evapi.child_stop = ev_child_stop; 385 evapi.child_stop = ev_child_stop;
374 386
375 sv_setiv (sv, (IV)&evapi); 387 sv_setiv (sv, (IV)&evapi);
376 SvREADONLY_on (sv); 388 SvREADONLY_on (sv);
377 } 389 }
378#ifndef WIN32 390#ifndef _WIN32
379 pthread_atfork (0, 0, ev_default_fork); 391 pthread_atfork (0, 0, ev_default_fork);
380#endif 392#endif
381} 393}
382 394
383NV ev_now () 395NV ev_now ()
384 396
385int ev_method () 397int ev_method ()
386 398
387NV ev_time () 399NV ev_time ()
388 400
389int ev_default_loop (int methods = EVMETHOD_AUTO) 401int ev_default_loop (int methods = EVFLAG_AUTO)
390 402
391void ev_loop (int flags = 0) 403void ev_loop (int flags = 0)
392 404
393void ev_unloop (int how = 1) 405void ev_unloop (int how = 1)
394 406
427 CHECK_REPEAT (interval); 439 CHECK_REPEAT (interval);
428 CODE: 440 CODE:
429{ 441{
430 struct ev_periodic *w; 442 struct ev_periodic *w;
431 w = e_new (sizeof (struct ev_periodic), cb); 443 w = e_new (sizeof (struct ev_periodic), cb);
432 w->fh = SvOK (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 444 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
433 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0); 445 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
434 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic); 446 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic);
435 if (!ix) ev_periodic_start (w); 447 if (!ix) ev_periodic_start (w);
436} 448}
437 OUTPUT: 449 OUTPUT:
477 OUTPUT: 489 OUTPUT:
478 RETVAL 490 RETVAL
479 491
480struct ev_child *child (int pid, SV *cb) 492struct ev_child *child (int pid, SV *cb)
481 ALIAS: 493 ALIAS:
482 check_ns = 1 494 child_ns = 1
483 CODE: 495 CODE:
484 RETVAL = e_new (sizeof (struct ev_child), cb); 496 RETVAL = e_new (sizeof (struct ev_child), cb);
485 ev_child_set (RETVAL, pid); 497 ev_child_set (RETVAL, pid);
486 if (!ix) ev_child_start (RETVAL); 498 if (!ix) ev_child_start (RETVAL);
487 OUTPUT: 499 OUTPUT:
499{ 511{
500 RETVAL = newSVsv (w->cb_sv); 512 RETVAL = newSVsv (w->cb_sv);
501 513
502 if (items > 1) 514 if (items > 1)
503 sv_setsv (w->cb_sv, new_cb); 515 sv_setsv (w->cb_sv, new_cb);
516}
517 OUTPUT:
518 RETVAL
519
520SV *data (struct ev_watcher *w, SV *new_data = 0)
521 CODE:
522{
523 RETVAL = w->data ? newSVsv (w->data) : &PL_sv_undef;
504} 524}
505 OUTPUT: 525 OUTPUT:
506 RETVAL 526 RETVAL
507 527
508void trigger (struct ev_watcher *w, int revents = EV_NONE) 528void trigger (struct ev_watcher *w, int revents = EV_NONE)
786 CODE: 806 CODE:
787 RETVAL = ix ? w->rpid : w->rstatus; 807 RETVAL = ix ? w->rpid : w->rstatus;
788 OUTPUT: 808 OUTPUT:
789 RETVAL 809 RETVAL
790 810
791#ifndef WIN32 811#ifndef _WIN32
792 812
793MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 813MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
794 814
795BOOT: 815BOOT:
796{ 816{
867 887
868int evdns_set_option (char *option, char *val, int flags) 888int evdns_set_option (char *option, char *val, int flags)
869 889
870int evdns_resolv_conf_parse (int flags, const char *filename) 890int evdns_resolv_conf_parse (int flags, const char *filename)
871 891
872#ifdef MS_WINDOWS 892#ifdef _WIN32
873 893
874int evdns_config_windows_nameservers () 894int evdns_config_windows_nameservers ()
875 895
876#endif 896#endif
877 897

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines