Skip to content

Commit 878110f

Browse files
committed
add codecache.mode()
1 parent 60692e5 commit 878110f

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

3rd/lua/lauxlib.c

+50
Original file line numberDiff line numberDiff line change
@@ -1040,13 +1040,62 @@ save(const char *key, const void * proto) {
10401040
return result;
10411041
}
10421042

1043+
#define CACHE_OFF 0
1044+
#define CACHE_EXIST 1
1045+
#define CACHE_ON 2
1046+
1047+
static int cache_key = 0;
1048+
1049+
static int cache_level(lua_State *L) {
1050+
int t = lua_rawgetp(L, LUA_REGISTRYINDEX, &cache_key);
1051+
int r = lua_tointeger(L, -1);
1052+
lua_pop(L,1);
1053+
if (t == LUA_TNUMBER) {
1054+
return r;
1055+
}
1056+
return CACHE_ON;
1057+
}
1058+
1059+
static int cache_mode(lua_State *L) {
1060+
static const char * lst[] = {
1061+
"OFF",
1062+
"EXIST",
1063+
"ON",
1064+
NULL,
1065+
};
1066+
if (lua_isnoneornil(L,1)) {
1067+
int t = lua_rawgetp(L, LUA_REGISTRYINDEX, &cache_key);
1068+
int r = lua_tointeger(L, -1);
1069+
if (t == LUA_TNUMBER) {
1070+
if (r < 0 || r >= CACHE_ON) {
1071+
r = CACHE_ON;
1072+
}
1073+
} else {
1074+
r = CACHE_ON;
1075+
}
1076+
lua_pushstring(L, lst[r]);
1077+
return 1;
1078+
}
1079+
int t = luaL_checkoption(L, 1, "OFF" , lst);
1080+
lua_pushinteger(L, t);
1081+
lua_rawsetp(L, LUA_REGISTRYINDEX, &cache_key);
1082+
return 0;
1083+
}
1084+
10431085
LUALIB_API int luaL_loadfilex (lua_State *L, const char *filename,
10441086
const char *mode) {
1087+
int level = cache_level(L);
1088+
if (level == CACHE_OFF) {
1089+
return luaL_loadfilex_(L, filename, mode);
1090+
}
10451091
const void * proto = load(filename);
10461092
if (proto) {
10471093
lua_clonefunction(L, proto);
10481094
return LUA_OK;
10491095
}
1096+
if (level == CACHE_EXIST) {
1097+
return luaL_loadfilex_(L, filename, mode);
1098+
}
10501099
lua_State * eL = luaL_newstate();
10511100
if (eL == NULL) {
10521101
lua_pushliteral(L, "New state failed");
@@ -1083,6 +1132,7 @@ cache_clear(lua_State *L) {
10831132
LUAMOD_API int luaopen_cache(lua_State *L) {
10841133
luaL_Reg l[] = {
10851134
{ "clear", cache_clear },
1135+
{ "mode", cache_mode },
10861136
{ NULL, NULL },
10871137
};
10881138
luaL_newlib(L,l);

service-src/service_snlua.c

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ static int
3030
codecache(lua_State *L) {
3131
luaL_Reg l[] = {
3232
{ "clear", cleardummy },
33+
{ "mode", cleardummy },
3334
{ NULL, NULL },
3435
};
3536
luaL_newlib(L,l);

0 commit comments

Comments
 (0)