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

Comparing EV/EV.xs (file contents):
Revision 1.54 by root, Tue Nov 6 12:31:20 2007 UTC vs.
Revision 1.60 by root, Thu Nov 8 02:19:36 2007 UTC

5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
8#include "EV/EVAPI.h" 8#include "EV/EVAPI.h"
9 9
10/* fix perl api breakage */
11#undef signal
12#undef sigaction
13
14#define EV_SELECT_USE_WIN32_HANDLES 0
15#define EV_SELECT_USE_FD_SET 0
10/* due to bugs in OS X we have to use libev/ explicitly here */ 16/* due to bugs in OS X we have to use libev/ explicitly here */
11#include "libev/ev.c" 17#include "libev/ev.c"
12#include "event.c" 18#include "event.c"
19
20#ifndef WIN32
13#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
14#if !defined (WIN32) && !defined(__CYGWIN__) 22#if !defined (WIN32) && !defined(__CYGWIN__)
15# define HAVE_STRUCT_IN6_ADDR 1 23# define HAVE_STRUCT_IN6_ADDR 1
16#endif 24#endif
17#undef HAVE_STRTOK_R 25#undef HAVE_STRTOK_R
18#undef strtok_r 26#undef strtok_r
19#define strtok_r fake_strtok_r 27#define strtok_r fake_strtok_r
20#include "evdns.c" 28#include "evdns.c"
29#endif
30
31#ifndef WIN32
32# include <pthread.h>
33#endif
21 34
22typedef int Signal; 35typedef int Signal;
23 36
24static struct EVAPI evapi; 37static struct EVAPI evapi;
25 38
96 w->self = self; 109 w->self = self;
97 110
98 return (void *)w; 111 return (void *)w;
99} 112}
100 113
101static void * 114static void
102e_destroy (void *w_) 115e_destroy (void *w_)
103{ 116{
104 struct ev_watcher *w = w_; 117 struct ev_watcher *w = (struct ev_watcher *)w_;
105 118
106 SvREFCNT_dec (w->fh ); w->fh = 0; 119 SvREFCNT_dec (w->fh ); w->fh = 0;
107 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 120 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
121 SvREFCNT_dec (w->data ); w->data = 0;
108} 122}
109 123
110static SV * 124static SV *
111e_bless (struct ev_watcher *w, HV *stash) 125e_bless (struct ev_watcher *w, HV *stash)
112{ 126{
166 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 180 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
167 SP = PL_stack_base + mark; PUTBACK; 181 SP = PL_stack_base + mark; PUTBACK;
168 } 182 }
169} 183}
170 184
185static ev_tstamp
186e_periodic_cb (struct ev_periodic *w, ev_tstamp now)
187{
188 ev_tstamp retval;
189 int count;
190 dSP;
191
192 ENTER;
193 SAVETMPS;
194
195 PUSHMARK (SP);
196 EXTEND (SP, 2);
197 PUSHs (newRV_inc (w->self)); /* w->self MUST be blessed by now */
198 PUSHs (newSVnv (now));
199
200 PUTBACK;
201 count = call_sv (w->fh, G_SCALAR | G_EVAL);
202 SPAGAIN;
203
204 if (SvTRUE (ERRSV))
205 {
206 PUSHMARK (SP);
207 PUTBACK;
208 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
209 SPAGAIN;
210 }
211
212 if (count > 0)
213 {
214 retval = SvNV (TOPs);
215
216 if (retval < now)
217 retval = now;
218 }
219 else
220 retval = now;
221
222 FREETMPS;
223 LEAVE;
224
225 return retval;
226}
227
171///////////////////////////////////////////////////////////////////////////// 228/////////////////////////////////////////////////////////////////////////////
172// DNS 229// DNS
173 230
231#ifndef WIN32
174static void 232static void
175dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 233dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
176{ 234{
177 dSP; 235 dSP;
178 SV *cb = (SV *)arg; 236 SV *cb = (SV *)arg;
217 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 275 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
218 } 276 }
219 277
220 LEAVE; 278 LEAVE;
221} 279}
280#endif
222 281
223#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 282#define CHECK_REPEAT(repeat) if (repeat < 0.) \
224 croak (# repeat " value must be >= 0"); 283 croak (# repeat " value must be >= 0");
225 284
226#define CHECK_FD(fh,fd) if ((fd) < 0) \ 285#define CHECK_FD(fh,fd) if ((fd) < 0) \
233 292
234PROTOTYPES: ENABLE 293PROTOTYPES: ENABLE
235 294
236BOOT: 295BOOT:
237{ 296{
238 int i;
239 HV *stash = gv_stashpv ("EV", 1); 297 HV *stash = gv_stashpv ("EV", 1);
240 298
241 static const struct { 299 static const struct {
242 const char *name; 300 const char *name;
243 IV iv; 301 IV iv;
316 evapi.child_stop = ev_child_stop; 374 evapi.child_stop = ev_child_stop;
317 375
318 sv_setiv (sv, (IV)&evapi); 376 sv_setiv (sv, (IV)&evapi);
319 SvREADONLY_on (sv); 377 SvREADONLY_on (sv);
320 } 378 }
321 379#ifndef WIN32
322 pthread_atfork (0, 0, ev_default_fork); 380 pthread_atfork (0, 0, ev_default_fork);
381#endif
323} 382}
324 383
325NV ev_now () 384NV ev_now ()
326 385
327int ev_method () 386int ev_method ()
360 ev_timer_set (RETVAL, after, repeat); 419 ev_timer_set (RETVAL, after, repeat);
361 if (!ix) ev_timer_start (RETVAL); 420 if (!ix) ev_timer_start (RETVAL);
362 OUTPUT: 421 OUTPUT:
363 RETVAL 422 RETVAL
364 423
365struct ev_periodic *periodic (NV at, NV interval, SV *cb) 424SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
366 ALIAS: 425 ALIAS:
367 periodic_ns = 1 426 periodic_ns = 1
368 INIT: 427 INIT:
369 CHECK_REPEAT (interval); 428 CHECK_REPEAT (interval);
370 CODE: 429 CODE:
430{
431 struct ev_periodic *w;
371 RETVAL = e_new (sizeof (struct ev_periodic), cb); 432 w = e_new (sizeof (struct ev_periodic), cb);
372 ev_periodic_set (RETVAL, at, interval); 433 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
434 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
435 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic);
373 if (!ix) ev_periodic_start (RETVAL); 436 if (!ix) ev_periodic_start (w);
437}
374 OUTPUT: 438 OUTPUT:
375 RETVAL 439 RETVAL
376 440
377struct ev_signal *signal (Signal signum, SV *cb) 441struct ev_signal *signal (Signal signum, SV *cb)
378 ALIAS: 442 ALIAS:
436{ 500{
437 RETVAL = newSVsv (w->cb_sv); 501 RETVAL = newSVsv (w->cb_sv);
438 502
439 if (items > 1) 503 if (items > 1)
440 sv_setsv (w->cb_sv, new_cb); 504 sv_setsv (w->cb_sv, new_cb);
505}
506 OUTPUT:
507 RETVAL
508
509SV *data (struct ev_watcher *w, SV *new_data = 0)
510 CODE:
511{
512 RETVAL = w->data ? newSVsv (w->data) : &PL_sv_undef;
441} 513}
442 OUTPUT: 514 OUTPUT:
443 RETVAL 515 RETVAL
444 516
445void trigger (struct ev_watcher *w, int revents = EV_NONE) 517void trigger (struct ev_watcher *w, int revents = EV_NONE)
619 INIT: 691 INIT:
620 CHECK_REPEAT (w->interval); 692 CHECK_REPEAT (w->interval);
621 693
622void ev_periodic_stop (struct ev_periodic *w) 694void ev_periodic_stop (struct ev_periodic *w)
623 695
696void ev_periodic_again (struct ev_periodic *w)
697
624void DESTROY (struct ev_periodic *w) 698void DESTROY (struct ev_periodic *w)
625 CODE: 699 CODE:
626 ev_periodic_stop (w); 700 ev_periodic_stop (w);
627 e_destroy (w); 701 e_destroy (w);
628 702
629void set (struct ev_periodic *w, NV at, NV interval = 0.) 703void set (struct ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef)
630 INIT: 704 INIT:
631 CHECK_REPEAT (interval); 705 CHECK_REPEAT (interval);
632 CODE: 706 CODE:
633{ 707{
634 int active = ev_is_active (w); 708 int active = ev_is_active (w);
635 if (active) ev_periodic_stop (w); 709 if (active) ev_periodic_stop (w);
636 710
711 SvREFCNT_dec (w->fh);
712 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
637 ev_periodic_set (w, at, interval); 713 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
638 714
639 if (active) ev_periodic_start (w); 715 if (active) ev_periodic_start (w);
640} 716}
641 717
642MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 718MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
718 rpid = 1 794 rpid = 1
719 CODE: 795 CODE:
720 RETVAL = ix ? w->rpid : w->rstatus; 796 RETVAL = ix ? w->rpid : w->rstatus;
721 OUTPUT: 797 OUTPUT:
722 RETVAL 798 RETVAL
799
800#ifndef WIN32
723 801
724MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 802MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
725 803
726BOOT: 804BOOT:
727{ 805{
852 930
853#void DESTROY (struct evhttp_request *req); 931#void DESTROY (struct evhttp_request *req);
854 932
855#endif 933#endif
856 934
935#endif
857 936
858 937
859 938
860 939
861 940

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines