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

Comparing EV/EV.xs (file contents):
Revision 1.45 by root, Sat Nov 3 09:19:58 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
16/* due to bugs in OS X we have to use libev/ explicitly here */
10#include "libev/ev.c" 17#include "libev/ev.c"
11#include "libev/event.h"
12#include "libev/event.c" 18#include "event.c"
19
20#ifndef WIN32
21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
22#if !defined (WIN32) && !defined(__CYGWIN__)
23# define HAVE_STRUCT_IN6_ADDR 1
24#endif
25#undef HAVE_STRTOK_R
26#undef strtok_r
27#define strtok_r fake_strtok_r
13#include "libev/evdns.c" 28#include "evdns.c"
29#endif
30
31#ifndef WIN32
32# include <pthread.h>
33#endif
14 34
15typedef int Signal; 35typedef int Signal;
16 36
17static struct EVAPI evapi; 37static struct EVAPI evapi;
18 38
89 w->self = self; 109 w->self = self;
90 110
91 return (void *)w; 111 return (void *)w;
92} 112}
93 113
94static void * 114static void
95e_destroy (void *w_) 115e_destroy (void *w_)
96{ 116{
97 struct ev_watcher *w = w_; 117 struct ev_watcher *w = (struct ev_watcher *)w_;
98 118
99 SvREFCNT_dec (w->fh ); w->fh = 0; 119 SvREFCNT_dec (w->fh ); w->fh = 0;
100 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;
101} 122}
102 123
103static SV * 124static SV *
104e_bless (struct ev_watcher *w, HV *stash) 125e_bless (struct ev_watcher *w, HV *stash)
105{ 126{
159 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);
160 SP = PL_stack_base + mark; PUTBACK; 181 SP = PL_stack_base + mark; PUTBACK;
161 } 182 }
162} 183}
163 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
164///////////////////////////////////////////////////////////////////////////// 228/////////////////////////////////////////////////////////////////////////////
165// DNS 229// DNS
166 230
231#ifndef WIN32
167static void 232static void
168dns_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)
169{ 234{
170 dSP; 235 dSP;
171 SV *cb = (SV *)arg; 236 SV *cb = (SV *)arg;
210 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);
211 } 276 }
212 277
213 LEAVE; 278 LEAVE;
214} 279}
280#endif
215 281
216#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 282#define CHECK_REPEAT(repeat) if (repeat < 0.) \
217 croak (# repeat " value must be >= 0"); 283 croak (# repeat " value must be >= 0");
218 284
219#define CHECK_FD(fh,fd) if ((fd) < 0) \ 285#define CHECK_FD(fh,fd) if ((fd) < 0) \
226 292
227PROTOTYPES: ENABLE 293PROTOTYPES: ENABLE
228 294
229BOOT: 295BOOT:
230{ 296{
231 int i;
232 HV *stash = gv_stashpv ("EV", 1); 297 HV *stash = gv_stashpv ("EV", 1);
233 298
234 static const struct { 299 static const struct {
235 const char *name; 300 const char *name;
236 IV iv; 301 IV iv;
282 /* the poor man's shared library emulator */ 347 /* the poor man's shared library emulator */
283 evapi.ver = EV_API_VERSION; 348 evapi.ver = EV_API_VERSION;
284 evapi.rev = EV_API_REVISION; 349 evapi.rev = EV_API_REVISION;
285 evapi.sv_fileno = sv_fileno; 350 evapi.sv_fileno = sv_fileno;
286 evapi.sv_signum = sv_signum; 351 evapi.sv_signum = sv_signum;
287 evapi.now = &ev_now; 352 evapi.now = ev_now;
288 evapi.method = &ev_method; 353 evapi.method = ev_method;
289 evapi.loop_done = &ev_loop_done; 354 evapi.unloop = ev_unloop;
290 evapi.time = ev_time; 355 evapi.time = ev_time;
291 evapi.loop = ev_loop; 356 evapi.loop = ev_loop;
292 evapi.once = ev_once; 357 evapi.once = ev_once;
293 evapi.io_start = ev_io_start; 358 evapi.io_start = ev_io_start;
294 evapi.io_stop = ev_io_stop; 359 evapi.io_stop = ev_io_stop;
309 evapi.child_stop = ev_child_stop; 374 evapi.child_stop = ev_child_stop;
310 375
311 sv_setiv (sv, (IV)&evapi); 376 sv_setiv (sv, (IV)&evapi);
312 SvREADONLY_on (sv); 377 SvREADONLY_on (sv);
313 } 378 }
314 379#ifndef WIN32
315 pthread_atfork (ev_fork_prepare, ev_fork_parent, ev_fork_child); 380 pthread_atfork (0, 0, ev_default_fork);
381#endif
316} 382}
317 383
318NV ev_now () 384NV ev_now ()
319 CODE:
320 RETVAL = ev_now;
321 OUTPUT:
322 RETVAL
323 385
324int ev_method () 386int ev_method ()
325 CODE:
326 RETVAL = ev_method;
327 OUTPUT:
328 RETVAL
329 387
330NV ev_time () 388NV ev_time ()
331 389
332int ev_init (int methods = EVMETHOD_AUTO) 390int ev_default_loop (int methods = EVMETHOD_AUTO)
333 391
334void ev_loop (int flags = 0) 392void ev_loop (int flags = 0)
335 393
336void ev_loop_done (int value = 1) 394void ev_unloop (int how = 1)
337 CODE:
338 ev_loop_done = value;
339 395
340struct ev_io *io (SV *fh, int events, SV *cb) 396struct ev_io *io (SV *fh, int events, SV *cb)
341 ALIAS: 397 ALIAS:
342 io_ns = 1 398 io_ns = 1
343 CODE: 399 CODE:
363 ev_timer_set (RETVAL, after, repeat); 419 ev_timer_set (RETVAL, after, repeat);
364 if (!ix) ev_timer_start (RETVAL); 420 if (!ix) ev_timer_start (RETVAL);
365 OUTPUT: 421 OUTPUT:
366 RETVAL 422 RETVAL
367 423
368struct ev_periodic *periodic (NV at, NV interval, SV *cb) 424SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
369 ALIAS: 425 ALIAS:
370 periodic_ns = 1 426 periodic_ns = 1
371 INIT: 427 INIT:
372 CHECK_REPEAT (interval); 428 CHECK_REPEAT (interval);
373 CODE: 429 CODE:
430{
431 struct ev_periodic *w;
374 RETVAL = e_new (sizeof (struct ev_periodic), cb); 432 w = e_new (sizeof (struct ev_periodic), cb);
375 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);
376 if (!ix) ev_periodic_start (RETVAL); 436 if (!ix) ev_periodic_start (w);
437}
377 OUTPUT: 438 OUTPUT:
378 RETVAL 439 RETVAL
379 440
380struct ev_signal *signal (Signal signum, SV *cb) 441struct ev_signal *signal (Signal signum, SV *cb)
381 ALIAS: 442 ALIAS:
419 480
420struct ev_child *child (int pid, SV *cb) 481struct ev_child *child (int pid, SV *cb)
421 ALIAS: 482 ALIAS:
422 check_ns = 1 483 check_ns = 1
423 CODE: 484 CODE:
424 RETVAL = e_new (sizeof (struct ev_check), cb); 485 RETVAL = e_new (sizeof (struct ev_child), cb);
425 ev_child_set (RETVAL, pid); 486 ev_child_set (RETVAL, pid);
426 if (!ix) ev_child_start (RETVAL); 487 if (!ix) ev_child_start (RETVAL);
427 OUTPUT: 488 OUTPUT:
428 RETVAL 489 RETVAL
429 490
439{ 500{
440 RETVAL = newSVsv (w->cb_sv); 501 RETVAL = newSVsv (w->cb_sv);
441 502
442 if (items > 1) 503 if (items > 1)
443 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;
444} 513}
445 OUTPUT: 514 OUTPUT:
446 RETVAL 515 RETVAL
447 516
448void trigger (struct ev_watcher *w, int revents = EV_NONE) 517void trigger (struct ev_watcher *w, int revents = EV_NONE)
586 } 655 }
587} 656}
588 OUTPUT: 657 OUTPUT:
589 RETVAL 658 RETVAL
590 659
591MODULE = EV PACKAGE = EV::Time
592
593MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 660MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
594 661
595void ev_timer_start (struct ev_timer *w) 662void ev_timer_start (struct ev_timer *w)
596 INIT: 663 INIT:
597 CHECK_REPEAT (w->repeat); 664 CHECK_REPEAT (w->repeat);
624 INIT: 691 INIT:
625 CHECK_REPEAT (w->interval); 692 CHECK_REPEAT (w->interval);
626 693
627void ev_periodic_stop (struct ev_periodic *w) 694void ev_periodic_stop (struct ev_periodic *w)
628 695
696void ev_periodic_again (struct ev_periodic *w)
697
629void DESTROY (struct ev_periodic *w) 698void DESTROY (struct ev_periodic *w)
630 CODE: 699 CODE:
631 ev_periodic_stop (w); 700 ev_periodic_stop (w);
632 e_destroy (w); 701 e_destroy (w);
633 702
634void 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)
635 INIT: 704 INIT:
636 CHECK_REPEAT (interval); 705 CHECK_REPEAT (interval);
637 CODE: 706 CODE:
638{ 707{
639 int active = ev_is_active (w); 708 int active = ev_is_active (w);
640 if (active) ev_periodic_stop (w); 709 if (active) ev_periodic_stop (w);
641 710
711 SvREFCNT_dec (w->fh);
712 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
642 ev_periodic_set (w, at, interval); 713 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
643 714
644 if (active) ev_periodic_start (w); 715 if (active) ev_periodic_start (w);
645} 716}
646 717
647MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 718MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
723 rpid = 1 794 rpid = 1
724 CODE: 795 CODE:
725 RETVAL = ix ? w->rpid : w->rstatus; 796 RETVAL = ix ? w->rpid : w->rstatus;
726 OUTPUT: 797 OUTPUT:
727 RETVAL 798 RETVAL
799
800#ifndef WIN32
728 801
729MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 802MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
730 803
731BOOT: 804BOOT:
732{ 805{
857 930
858#void DESTROY (struct evhttp_request *req); 931#void DESTROY (struct evhttp_request *req);
859 932
860#endif 933#endif
861 934
935#endif
862 936
863 937
864 938
865 939
866 940

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines