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

Comparing EV/EV.xs (file contents):
Revision 1.104 by root, Fri Jan 25 15:45:08 2008 UTC vs.
Revision 1.110 by root, Tue Apr 15 04:41:57 2008 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6
7/* fix perl api breakage */
8#undef signal
9#undef sigaction
6 10
7#define EV_PROTOTYPES 1 11#define EV_PROTOTYPES 1
8#define EV_USE_NANOSLEEP EV_USE_MONOTONIC 12#define EV_USE_NANOSLEEP EV_USE_MONOTONIC
9#define EV_H <ev.h> 13#define EV_H <ev.h>
10#include "EV/EVAPI.h" 14#include "EV/EVAPI.h"
11
12/* fix perl api breakage */
13#undef signal
14#undef sigaction
15 15
16#define EV_SELECT_IS_WINSOCKET 0 16#define EV_SELECT_IS_WINSOCKET 0
17#ifdef _WIN32 17#ifdef _WIN32
18# define EV_SELECT_USE_FD_SET 0 18# define EV_SELECT_USE_FD_SET 0
19# define NFDBITS PERL_NFDBITS 19# define NFDBITS PERL_NFDBITS
77 *stash_stat, 77 *stash_stat,
78 *stash_idle, 78 *stash_idle,
79 *stash_prepare, 79 *stash_prepare,
80 *stash_check, 80 *stash_check,
81 *stash_embed, 81 *stash_embed,
82 *stash_fork; 82 *stash_fork,
83 *stash_async;
83 84
84#ifndef SIG_SIZE 85#ifndef SIG_SIZE
85/* kudos to Slaven Rezic for the idea */ 86/* kudos to Slaven Rezic for the idea */
86static char sig_size [] = { SIG_NUM }; 87static char sig_size [] = { SIG_NUM };
87# define SIG_SIZE (sizeof (sig_size) + 1) 88# define SIG_SIZE (sizeof (sig_size) + 1)
375 stash_check = gv_stashpv ("EV::Check" , 1); 376 stash_check = gv_stashpv ("EV::Check" , 1);
376 stash_child = gv_stashpv ("EV::Child" , 1); 377 stash_child = gv_stashpv ("EV::Child" , 1);
377 stash_embed = gv_stashpv ("EV::Embed" , 1); 378 stash_embed = gv_stashpv ("EV::Embed" , 1);
378 stash_stat = gv_stashpv ("EV::Stat" , 1); 379 stash_stat = gv_stashpv ("EV::Stat" , 1);
379 stash_fork = gv_stashpv ("EV::Fork" , 1); 380 stash_fork = gv_stashpv ("EV::Fork" , 1);
381 stash_async = gv_stashpv ("EV::Async" , 1);
380 382
381 { 383 {
382 SV *sv = perl_get_sv ("EV::API", TRUE); 384 SV *sv = perl_get_sv ("EV::API", TRUE);
383 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 385 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
384 386
388 evapi.sv_fileno = sv_fileno; 390 evapi.sv_fileno = sv_fileno;
389 evapi.sv_signum = sv_signum; 391 evapi.sv_signum = sv_signum;
390 evapi.supported_backends = ev_supported_backends (); 392 evapi.supported_backends = ev_supported_backends ();
391 evapi.recommended_backends = ev_recommended_backends (); 393 evapi.recommended_backends = ev_recommended_backends ();
392 evapi.embeddable_backends = ev_embeddable_backends (); 394 evapi.embeddable_backends = ev_embeddable_backends ();
393 evapi.time = ev_time; 395 evapi.time_ = ev_time;
394 evapi.sleep = ev_sleep; 396 evapi.sleep_ = ev_sleep;
395 evapi.loop_new = ev_loop_new; 397 evapi.loop_new = ev_loop_new;
396 evapi.loop_destroy = ev_loop_destroy; 398 evapi.loop_destroy = ev_loop_destroy;
397 evapi.loop_fork = ev_loop_fork; 399 evapi.loop_fork = ev_loop_fork;
398 evapi.loop_count = ev_loop_count; 400 evapi.loop_count = ev_loop_count;
399 evapi.now = ev_now; 401 evapi.now = ev_now;
426 evapi.embed_start = ev_embed_start; 428 evapi.embed_start = ev_embed_start;
427 evapi.embed_stop = ev_embed_stop; 429 evapi.embed_stop = ev_embed_stop;
428 evapi.embed_sweep = ev_embed_sweep; 430 evapi.embed_sweep = ev_embed_sweep;
429 evapi.fork_start = ev_fork_start; 431 evapi.fork_start = ev_fork_start;
430 evapi.fork_stop = ev_fork_stop; 432 evapi.fork_stop = ev_fork_stop;
433 evapi.async_start = ev_async_start;
434 evapi.async_stop = ev_async_stop;
435 evapi.async_send = ev_async_send;
431 evapi.clear_pending = ev_clear_pending; 436 evapi.clear_pending = ev_clear_pending;
432 evapi.invoke = ev_invoke; 437 evapi.invoke = ev_invoke;
433 438
434 sv_setiv (sv, (IV)&evapi); 439 sv_setiv (sv, (IV)&evapi);
435 SvREADONLY_on (sv); 440 SvREADONLY_on (sv);
639 644
640 if (!SvOK (cb)) ev_set_cb (RETVAL, 0); 645 if (!SvOK (cb)) ev_set_cb (RETVAL, 0);
641 646
642 if (!ix) START (embed, RETVAL); 647 if (!ix) START (embed, RETVAL);
643} 648}
649 OUTPUT:
650 RETVAL
651
652ev_async *async (SV *cb)
653 ALIAS:
654 async_ns = 1
655 CODE:
656 RETVAL = e_new (sizeof (ev_async), cb, default_loop_sv);
657 ev_async_set (RETVAL);
658 if (!ix) START (async, RETVAL);
644 OUTPUT: 659 OUTPUT:
645 RETVAL 660 RETVAL
646 661
647void once (SV *fh, int events, SV *timeout, SV *cb) 662void once (SV *fh, int events, SV *timeout, SV *cb)
648 CODE: 663 CODE:
1132 CODE: 1147 CODE:
1133 RETVAL = newSVsv (w->fh); 1148 RETVAL = newSVsv (w->fh);
1134 OUTPUT: 1149 OUTPUT:
1135 RETVAL 1150 RETVAL
1136 1151
1152void ev_embed_sweep (ev_embed *w)
1153 C_ARGS: e_loop (w), w
1154
1155MODULE = EV PACKAGE = EV::Async PREFIX = ev_async_
1156
1157void ev_async_start (ev_async *w)
1158 CODE:
1159 START (async, w);
1160
1161void ev_async_stop (ev_async *w)
1162 CODE:
1163 STOP (async, w);
1164
1165void DESTROY (ev_async *w)
1166 CODE:
1167 STOP (async, w);
1168 e_destroy (w);
1169
1170void ev_async_send (ev_async *w)
1171 C_ARGS: e_loop (w), w
1172
1173SV *ev_async_async_pending (ev_async *w)
1174 CODE:
1175 RETVAL = boolSV (ev_async_pending (w));
1176 OUTPUT:
1177 RETVAL
1178
1137MODULE = EV PACKAGE = EV::Loop PREFIX = ev_ 1179MODULE = EV PACKAGE = EV::Loop PREFIX = ev_
1138 1180
1139SV *new (SV *klass, unsigned int flags = 0) 1181SV *new (SV *klass, unsigned int flags = 0)
1140 CODE: 1182 CODE:
1141{ 1183{
1324 1366
1325 if (!SvOK (cb)) ev_set_cb (RETVAL, 0); 1367 if (!SvOK (cb)) ev_set_cb (RETVAL, 0);
1326 1368
1327 if (!ix) START (embed, RETVAL); 1369 if (!ix) START (embed, RETVAL);
1328} 1370}
1371 OUTPUT:
1372 RETVAL
1373
1374ev_async *async (struct ev_loop *loop, SV *cb)
1375 ALIAS:
1376 async_ns = 1
1377 CODE:
1378 RETVAL = e_new (sizeof (ev_async), cb, ST (0));
1379 ev_async_set (RETVAL);
1380 if (!ix) START (async, RETVAL);
1329 OUTPUT: 1381 OUTPUT:
1330 RETVAL 1382 RETVAL
1331 1383
1332void once (struct ev_loop *loop, SV *fh, int events, SV *timeout, SV *cb) 1384void once (struct ev_loop *loop, SV *fh, int events, SV *timeout, SV *cb)
1333 CODE: 1385 CODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines