diff options
Diffstat (limited to 'src/keeper.c')
-rw-r--r-- | src/keeper.c | 44 |
1 files changed, 33 insertions, 11 deletions
diff --git a/src/keeper.c b/src/keeper.c index c22bfed..4eb8bb3 100644 --- a/src/keeper.c +++ b/src/keeper.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <ctype.h> | 44 | #include <ctype.h> |
45 | 45 | ||
46 | #include "lua.h" | 46 | #include "lua.h" |
47 | #include "lualib.h" | ||
47 | #include "lauxlib.h" | 48 | #include "lauxlib.h" |
48 | 49 | ||
49 | #include "threading.h" | 50 | #include "threading.h" |
@@ -623,11 +624,10 @@ char const* init_keepers( lua_State* L) | |||
623 | int i; | 624 | int i; |
624 | PROPAGATE_ALLOCF_PREP( L); | 625 | PROPAGATE_ALLOCF_PREP( L); |
625 | 626 | ||
626 | STACK_CHECK( L); | 627 | STACK_CHECK( L); // L K |
627 | lua_getfield( L, 1, "nb_keepers"); | 628 | lua_getfield( L, 1, "nb_keepers"); // nb_keepers |
628 | GNbKeepers = (int) lua_tointeger( L, -1); | 629 | GNbKeepers = (int) lua_tointeger( L, -1); |
629 | lua_pop( L, 1); | 630 | lua_pop( L, 1); // |
630 | STACK_END( L, 0); | ||
631 | assert( GNbKeepers >= 1); | 631 | assert( GNbKeepers >= 1); |
632 | 632 | ||
633 | GKeepers = malloc( GNbKeepers * sizeof( struct s_Keeper)); | 633 | GKeepers = malloc( GNbKeepers * sizeof( struct s_Keeper)); |
@@ -640,16 +640,37 @@ char const* init_keepers( lua_State* L) | |||
640 | } | 640 | } |
641 | STACK_CHECK( K); | 641 | STACK_CHECK( K); |
642 | 642 | ||
643 | // make sure 'package' is initialized in keeper states, so that we have require() | ||
644 | // this because this is needed when transfering deep userdata object | ||
645 | luaL_requiref( K, "package", luaopen_package, 1); // package | ||
646 | lua_pop( K, 1); // | ||
647 | STACK_MID( K, 0); | ||
648 | serialize_require( K); | ||
649 | STACK_MID( K, 0); | ||
650 | |||
651 | // copy package.path and package.cpath from the source state | ||
652 | lua_getglobal( L, "package"); // package | ||
653 | if( !lua_isnil( L, -1)) | ||
654 | { | ||
655 | luaG_inter_copy_package( L, K, -1, eLM_ToKeeper); | ||
656 | } | ||
657 | lua_pop( L, 1); // | ||
658 | STACK_MID( L, 0); | ||
659 | |||
660 | // attempt to call on_state_create(), if we have one and it is a C function | ||
661 | // (only support a C function because we can't transfer executable Lua code in keepers) | ||
662 | call_on_state_create( K, L, eLM_ToKeeper); | ||
663 | |||
643 | // to see VM name in Decoda debugger | 664 | // to see VM name in Decoda debugger |
644 | lua_pushliteral( K, "Keeper #"); | 665 | lua_pushliteral( K, "Keeper #"); // "Keeper #" |
645 | lua_pushinteger( K, i + 1); | 666 | lua_pushinteger( K, i + 1); // "Keeper #" n |
646 | lua_concat( K, 2); | 667 | lua_concat( K, 2); // "Keeper #n" |
647 | lua_setglobal( K, "decoda_name"); | 668 | lua_setglobal( K, "decoda_name"); // |
648 | 669 | ||
649 | // create the fifos table in the keeper state | 670 | // create the fifos table in the keeper state |
650 | lua_pushlightuserdata( K, fifos_key); | 671 | lua_pushlightuserdata( K, fifos_key); // fifo_key |
651 | lua_newtable( K); | 672 | lua_newtable( K); // fifo_key {} |
652 | lua_rawset( K, LUA_REGISTRYINDEX); | 673 | lua_rawset( K, LUA_REGISTRYINDEX); // |
653 | 674 | ||
654 | STACK_END( K, 0); | 675 | STACK_END( K, 0); |
655 | // we can trigger a GC from inside keeper_call(), where a keeper is acquired | 676 | // we can trigger a GC from inside keeper_call(), where a keeper is acquired |
@@ -660,6 +681,7 @@ char const* init_keepers( lua_State* L) | |||
660 | #if HAVE_KEEPER_ATEXIT_DESINIT | 681 | #if HAVE_KEEPER_ATEXIT_DESINIT |
661 | atexit( atexit_close_keepers); | 682 | atexit( atexit_close_keepers); |
662 | #endif // HAVE_KEEPER_ATEXIT_DESINIT | 683 | #endif // HAVE_KEEPER_ATEXIT_DESINIT |
684 | STACK_END( L, 0); | ||
663 | return NULL; // ok | 685 | return NULL; // ok |
664 | } | 686 | } |
665 | 687 | ||