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

Comparing Coro/Coro/State.xs (file contents):
Revision 1.386 by root, Sat Feb 19 06:51:23 2011 UTC vs.
Revision 1.393 by root, Fri Apr 29 17:38:56 2011 UTC

21 21
22#ifndef SVs_PADSTALE 22#ifndef SVs_PADSTALE
23# define SVs_PADSTALE 0 23# define SVs_PADSTALE 0
24#endif 24#endif
25 25
26#ifdef WIN32 26#if defined(_WIN32)
27# undef HAS_GETTIMEOFDAY
27# undef setjmp 28# undef setjmp
28# undef longjmp 29# undef longjmp
29# undef _exit 30# undef _exit
30# define setjmp _setjmp /* deep magic */ 31# define setjmp _setjmp /* deep magic */
31#else 32#else
195 int valgrind_id; 196 int valgrind_id;
196#endif 197#endif
197 unsigned char flags; 198 unsigned char flags;
198} coro_cctx; 199} coro_cctx;
199 200
200coro_cctx *cctx_current; /* the currently running cctx */ 201static coro_cctx *cctx_current; /* the currently running cctx */
201 202
202/*****************************************************************************/ 203/*****************************************************************************/
203 204
204enum { 205enum {
205 CF_RUNNING = 0x0001, /* coroutine is running */ 206 CF_RUNNING = 0x0001, /* coroutine is running */
206 CF_READY = 0x0002, /* coroutine is ready */ 207 CF_READY = 0x0002, /* coroutine is ready */
207 CF_NEW = 0x0004, /* has never been switched to */ 208 CF_NEW = 0x0004, /* has never been switched to */
208 CF_DESTROYED = 0x0008, /* coroutine data has been freed */ 209 CF_DESTROYED = 0x0008, /* coroutine data has been freed */
209 CF_SUSPENDED = 0x0010, /* coroutine can't be scheduled */ 210 CF_SUSPENDED = 0x0010, /* coroutine can't be scheduled */
211 CF_NOCANCEL = 0x0020, /* cannot cancel, set slf_frame.data to 1 (hackish) */
210}; 212};
211 213
212/* the structure where most of the perl state is stored, overlaid on the cxstack */ 214/* the structure where most of the perl state is stored, overlaid on the cxstack */
213typedef struct 215typedef struct
214{ 216{
274typedef struct coro *Coro__State; 276typedef struct coro *Coro__State;
275typedef struct coro *Coro__State_or_hashref; 277typedef struct coro *Coro__State_or_hashref;
276 278
277/* the following variables are effectively part of the perl context */ 279/* the following variables are effectively part of the perl context */
278/* and get copied between struct coro and these variables */ 280/* and get copied between struct coro and these variables */
279/* the mainr easonw e don't support windows process emulation */ 281/* the main reason we don't support windows process emulation */
280static struct CoroSLF slf_frame; /* the current slf frame */ 282static struct CoroSLF slf_frame; /* the current slf frame */
281 283
282/** Coro ********************************************************************/ 284/** Coro ********************************************************************/
283 285
284#define CORO_PRIO_MAX 3 286#define CORO_PRIO_MAX 3
319/** time stuff **************************************************************/ 321/** time stuff **************************************************************/
320 322
321#ifdef HAS_GETTIMEOFDAY 323#ifdef HAS_GETTIMEOFDAY
322 324
323static void 325static void
324coro_u2time (aTHX_ UV ret[2]) 326coro_u2time (pTHX_ UV ret[2])
325{ 327{
326 struct timeval tv; 328 struct timeval tv;
327 gettimeofday (&tv, 0); 329 gettimeofday (&tv, 0);
328 330
329 ret [0] = tv.tv_sec; 331 ret [0] = tv.tv_sec;
338 340
339 return tv.tv_sec + tv.tv_usec * 1e-6; 341 return tv.tv_sec + tv.tv_usec * 1e-6;
340} 342}
341 343
342static void 344static void
343time_init (void) 345time_init (pTHX)
344{ 346{
345 nvtime = coro_nvtime; 347 nvtime = coro_nvtime;
346 u2time = coro_u2time; 348 u2time = coro_u2time;
347} 349}
348 350
349#else 351#else
350 352
351static void 353static void
352time_init (void) 354time_init (pTHX)
353{ 355{
354 SV **svp; 356 SV **svp;
355 357
356 require_pv ("Time::HiRes"); 358 require_pv ("Time/HiRes.pm");
357 359
358 svp = hv_fetch (PL_modglobal, "Time::NVtime", 12, 0); 360 svp = hv_fetch (PL_modglobal, "Time::NVtime", 12, 0);
359 361
360 if (!svp) croak ("Time::HiRes is required"); 362 if (!svp) croak ("Time::HiRes is required, but missing. Caught");
361 if (!SvIOK (*svp)) croak ("Time::NVtime isn't a function pointer"); 363 if (!SvIOK (*svp)) croak ("Time::NVtime isn't a function pointer. Caught");
362 364
363 nvtime = INT2PTR (double (*)(), SvIV (*svp)); 365 nvtime = INT2PTR (double (*)(), SvIV (*svp));
364 366
365 svp = hv_fetch (PL_modglobal, "Time::U2time", 12, 0); 367 svp = hv_fetch (PL_modglobal, "Time::U2time", 12, 0);
366 u2time = INT2PTR (void (*)(pTHX_ UV ret[2]), SvIV (*svp)); 368 u2time = INT2PTR (void (*)(pTHX_ UV ret[2]), SvIV (*svp));
1495cctx_destroy (coro_cctx *cctx) 1497cctx_destroy (coro_cctx *cctx)
1496{ 1498{
1497 if (!cctx) 1499 if (!cctx)
1498 return; 1500 return;
1499 1501
1500 assert (("FATAL: tried to destroy current cctx", cctx != cctx_current));//D temporary? 1502 assert (("FATAL: tried to destroy current cctx", cctx != cctx_current));
1501 1503
1502 --cctx_count; 1504 --cctx_count;
1503 coro_destroy (&cctx->cctx); 1505 coro_destroy (&cctx->cctx);
1504 1506
1505 /* coro_transfer creates new, empty cctx's */ 1507 /* coro_transfer creates new, empty cctx's */
1672 if (coro->flags & CF_DESTROYED) 1674 if (coro->flags & CF_DESTROYED)
1673 return 0; 1675 return 0;
1674 1676
1675 if (coro->on_destroy && !PL_dirty) 1677 if (coro->on_destroy && !PL_dirty)
1676 coro->on_destroy (aTHX_ coro); 1678 coro->on_destroy (aTHX_ coro);
1679
1680 /*
1681 * The on_destroy above most likely is from an SLF call.
1682 * Since by definition the SLF call will not finish when we destroy
1683 * the coro, we will have to force-finish it here, otherwise
1684 * cleanup functions cannot call SLF functions.
1685 */
1686 coro->slf_frame.prepare = 0;
1677 1687
1678 coro->flags |= CF_DESTROYED; 1688 coro->flags |= CF_DESTROYED;
1679 1689
1680 if (coro->flags & CF_READY) 1690 if (coro->flags & CF_READY)
1681 { 1691 {
2007 2017
2008static void 2018static void
2009coro_call_on_destroy (pTHX_ struct coro *coro) 2019coro_call_on_destroy (pTHX_ struct coro *coro)
2010{ 2020{
2011 SV **on_destroyp = hv_fetch (coro->hv, "_on_destroy", sizeof ("_on_destroy") - 1, 0); 2021 SV **on_destroyp = hv_fetch (coro->hv, "_on_destroy", sizeof ("_on_destroy") - 1, 0);
2012 SV **statusp = hv_fetch (coro->hv, "_status", sizeof ("_status") - 1, 0);
2013 2022
2014 if (on_destroyp) 2023 if (on_destroyp)
2015 { 2024 {
2016 AV *on_destroy = (AV *)SvRV (*on_destroyp); 2025 SV **statusp = hv_fetch (coro->hv, "_status", sizeof ("_status") - 1, 0);
2026 AV *on_destroy = sv_2mortal (SvREFCNT_inc ((AV *)SvRV (*on_destroyp)));
2027 AV *status = statusp ? sv_2mortal (SvREFCNT_inc ((AV *)SvRV (*statusp))) : 0;
2017 2028
2018 while (AvFILLp (on_destroy) >= 0) 2029 while (AvFILLp (on_destroy) >= 0)
2019 { 2030 {
2020 dSP; /* don't disturb outer sp */ 2031 dSP; /* don't disturb outer sp */
2021 SV *cb = av_pop (on_destroy); 2032 SV *cb = av_pop (on_destroy);
2023 PUSHMARK (SP); 2034 PUSHMARK (SP);
2024 2035
2025 if (statusp) 2036 if (statusp)
2026 { 2037 {
2027 int i; 2038 int i;
2028 AV *status = (AV *)SvRV (*statusp);
2029 EXTEND (SP, AvFILLp (status) + 1); 2039 EXTEND (SP, AvFILLp (status) + 1);
2030 2040
2031 for (i = 0; i <= AvFILLp (status); ++i) 2041 for (i = 0; i <= AvFILLp (status); ++i)
2032 PUSHs (AvARRAY (status)[i]); 2042 PUSHs (AvARRAY (status)[i]);
2033 } 2043 }
2037 } 2047 }
2038 } 2048 }
2039} 2049}
2040 2050
2041static void 2051static void
2042slf_init_terminate (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items) 2052coro_set_status (HV *coro_hv, SV **arg, int items)
2043{ 2053{
2044 int i;
2045 HV *hv = (HV *)SvRV (coro_current);
2046 AV *av = newAV (); 2054 AV *av = newAV ();
2047 2055
2048 /* items are actually not so common, so optimise for this case */ 2056 /* items are actually not so common, so optimise for this case */
2049 if (items) 2057 if (items)
2050 { 2058 {
2059 int i;
2060
2051 av_extend (av, items - 1); 2061 av_extend (av, items - 1);
2052 2062
2053 for (i = 0; i < items; ++i) 2063 for (i = 0; i < items; ++i)
2054 av_push (av, SvREFCNT_inc_NN (arg [i])); 2064 av_push (av, SvREFCNT_inc_NN (arg [i]));
2055 } 2065 }
2056 2066
2057 hv_store (hv, "_status", sizeof ("_status") - 1, newRV_noinc ((SV *)av), 0); 2067 hv_store (coro_hv, "_status", sizeof ("_status") - 1, newRV_noinc ((SV *)av), 0);
2068}
2058 2069
2070static void
2071slf_init_terminate_cancel_common (pTHX_ struct CoroSLF *frame, HV *coro_hv)
2072{
2059 av_push (av_destroy, (SV *)newRV_inc ((SV *)hv)); /* RVinc for perl */ 2073 av_push (av_destroy, (SV *)newRV_inc ((SV *)coro_hv)); /* RVinc for perl */
2060 api_ready (aTHX_ sv_manager); 2074 api_ready (aTHX_ sv_manager);
2061 2075
2062 frame->prepare = prepare_schedule; 2076 frame->prepare = prepare_schedule;
2063 frame->check = slf_check_repeat; 2077 frame->check = slf_check_repeat;
2064 2078
2065 /* as a minor optimisation, we could unwind all stacks here */ 2079 /* as a minor optimisation, we could unwind all stacks here */
2066 /* but that puts extra pressure on pp_slf, and is not worth much */ 2080 /* but that puts extra pressure on pp_slf, and is not worth much */
2067 /*coro_unwind_stacks (aTHX);*/ 2081 /*coro_unwind_stacks (aTHX);*/
2082}
2083
2084static void
2085slf_init_terminate (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
2086{
2087 HV *coro_hv = (HV *)SvRV (coro_current);
2088
2089 coro_set_status (coro_hv, arg, items);
2090 slf_init_terminate_cancel_common (frame, coro_hv);
2091}
2092
2093static void
2094slf_init_cancel (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items)
2095{
2096 HV *coro_hv;
2097 struct coro *coro;
2098
2099 if (items <= 0)
2100 croak ("Coro::cancel called without coro object,");
2101
2102 coro = SvSTATE (arg [0]);
2103 coro_hv = coro->hv;
2104
2105 coro_set_status (coro_hv, arg + 1, items - 1);
2106
2107 if (expect_false (coro->flags & CF_NOCANCEL))
2108 {
2109 /* coro currently busy cancelling something, so just notify it */
2110 coro->slf_frame.data = (void *)coro;
2111
2112 frame->prepare = prepare_nop;
2113 frame->check = slf_check_nop;
2114 }
2115 else if (coro_hv == (HV *)SvRV (coro_current))
2116 {
2117 /* cancelling the current coro is allowed, and equals terminate */
2118 slf_init_terminate_cancel_common (frame, coro_hv);
2119 }
2120 else
2121 {
2122 struct coro *self = SvSTATE_current;
2123
2124 /* otherwise we cancel directly, purely for speed reasons
2125 * unfortunately, this requires some magic trickery, as
2126 * somebody else could cancel us, so we have to fight the cancellation.
2127 * this is ugly, and hopefully fully worth the extra speed.
2128 * besides, I can't get the slow-but-safe version working...
2129 */
2130 slf_frame.data = 0;
2131 self->flags |= CF_NOCANCEL;
2132
2133 coro_state_destroy (aTHX_ coro);
2134 coro_call_on_destroy (aTHX_ coro);
2135
2136 self->flags &= ~CF_NOCANCEL;
2137
2138 if (slf_frame.data)
2139 {
2140 /* while we were busy we have been cancelled, so terminate */
2141 slf_init_terminate_cancel_common (frame, self->hv);
2142 }
2143 else
2144 {
2145 frame->prepare = prepare_nop;
2146 frame->check = slf_check_nop;
2147 }
2148 }
2068} 2149}
2069 2150
2070/*****************************************************************************/ 2151/*****************************************************************************/
2071/* async pool handler */ 2152/* async pool handler */
2072 2153
3161 coroapi.prepare_nop = prepare_nop; 3242 coroapi.prepare_nop = prepare_nop;
3162 coroapi.prepare_schedule = prepare_schedule; 3243 coroapi.prepare_schedule = prepare_schedule;
3163 coroapi.prepare_cede = prepare_cede; 3244 coroapi.prepare_cede = prepare_cede;
3164 coroapi.prepare_cede_notself = prepare_cede_notself; 3245 coroapi.prepare_cede_notself = prepare_cede_notself;
3165 3246
3166 time_init (); 3247 time_init (aTHX);
3167 3248
3168 assert (("PRIO_NORMAL must be 0", !CORO_PRIO_NORMAL)); 3249 assert (("PRIO_NORMAL must be 0", !CORO_PRIO_NORMAL));
3169} 3250}
3170 3251
3171SV * 3252SV *
3180void 3261void
3181transfer (...) 3262transfer (...)
3182 PROTOTYPE: $$ 3263 PROTOTYPE: $$
3183 CODE: 3264 CODE:
3184 CORO_EXECUTE_SLF_XS (slf_init_transfer); 3265 CORO_EXECUTE_SLF_XS (slf_init_transfer);
3185
3186bool
3187_destroy (SV *coro_sv)
3188 CODE:
3189 RETVAL = coro_state_destroy (aTHX_ SvSTATE (coro_sv));
3190 OUTPUT:
3191 RETVAL
3192 3266
3193void 3267void
3194_exit (int code) 3268_exit (int code)
3195 PROTOTYPE: $ 3269 PROTOTYPE: $
3196 CODE: 3270 CODE:
3272 CODE: 3346 CODE:
3273{ 3347{
3274 if (coro->mainstack && ((coro->flags & CF_RUNNING) || coro->slot)) 3348 if (coro->mainstack && ((coro->flags & CF_RUNNING) || coro->slot))
3275 { 3349 {
3276 struct coro *current = SvSTATE_current; 3350 struct coro *current = SvSTATE_current;
3351 struct CoroSLF slf_save;
3277 3352
3278 if (current != coro) 3353 if (current != coro)
3279 { 3354 {
3280 PUTBACK; 3355 PUTBACK;
3281 save_perl (aTHX_ current); 3356 save_perl (aTHX_ current);
3282 load_perl (aTHX_ coro); 3357 load_perl (aTHX_ coro);
3358 /* the coro is most likely in an active SLF call.
3359 * while not strictly required (the code we execute is
3360 * not allowed to call any SLF functions), it's cleaner
3361 * to reinitialise the slf_frame and restore it later.
3362 * This might one day allow us to actually do SLF calls
3363 * from code executed here.
3364 */
3365 slf_save = slf_frame;
3366 slf_frame.prepare = 0;
3283 SPAGAIN; 3367 SPAGAIN;
3284 } 3368 }
3285 3369
3286 PUSHSTACK; 3370 PUSHSTACK;
3287 3371
3297 SPAGAIN; 3381 SPAGAIN;
3298 3382
3299 if (current != coro) 3383 if (current != coro)
3300 { 3384 {
3301 PUTBACK; 3385 PUTBACK;
3386 slf_frame = slf_save;
3302 save_perl (aTHX_ coro); 3387 save_perl (aTHX_ coro);
3303 load_perl (aTHX_ current); 3388 load_perl (aTHX_ current);
3304 SPAGAIN; 3389 SPAGAIN;
3305 } 3390 }
3306 } 3391 }
3392 3477
3393void 3478void
3394cancel (Coro::State self) 3479cancel (Coro::State self)
3395 CODE: 3480 CODE:
3396 coro_state_destroy (aTHX_ self); 3481 coro_state_destroy (aTHX_ self);
3397 coro_call_on_destroy (aTHX_ self); /* actually only for Coro objects */
3398
3399 3482
3400SV * 3483SV *
3401enable_times (int enabled = enable_times) 3484enable_times (int enabled = enable_times)
3402 CODE: 3485 CODE:
3403{ 3486{
3508 api_ready (aTHX_ RETVAL); 3591 api_ready (aTHX_ RETVAL);
3509 OUTPUT: 3592 OUTPUT:
3510 RETVAL 3593 RETVAL
3511 3594
3512void 3595void
3596_destroy (Coro::State coro)
3597 CODE:
3598 /* used by the manager thread */
3599 coro_state_destroy (aTHX_ coro);
3600 coro_call_on_destroy (aTHX_ coro);
3601
3602void
3513terminate (...) 3603terminate (...)
3514 CODE: 3604 CODE:
3515 CORO_EXECUTE_SLF_XS (slf_init_terminate); 3605 CORO_EXECUTE_SLF_XS (slf_init_terminate);
3606
3607void
3608cancel (...)
3609 CODE:
3610 CORO_EXECUTE_SLF_XS (slf_init_cancel);
3516 3611
3517void 3612void
3518schedule (...) 3613schedule (...)
3519 CODE: 3614 CODE:
3520 CORO_EXECUTE_SLF_XS (slf_init_schedule); 3615 CORO_EXECUTE_SLF_XS (slf_init_schedule);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines