Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
002d5626
Commit
002d5626
authored
Sep 27, 2011
by
antirez
Browse files
Scripting engine now only loads selected libraries, using code originally contributed by @loopole.
parent
882b65ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/scripting.c
View file @
002d5626
...
@@ -265,9 +265,28 @@ void luaMaskCountHook(lua_State *lua, lua_Debug *ar) {
...
@@ -265,9 +265,28 @@ void luaMaskCountHook(lua_State *lua, lua_Debug *ar) {
}
}
}
}
void
luaLoadLib
(
lua_State
*
lua
,
const
char
*
libname
,
lua_CFunction
luafunc
)
{
lua_pushcfunction
(
lua
,
luafunc
);
lua_pushstring
(
lua
,
libname
);
lua_call
(
lua
,
1
,
0
);
}
void
luaLoadLibraries
(
lua_State
*
lua
)
{
luaLoadLib
(
lua
,
""
,
luaopen_base
);
luaLoadLib
(
lua
,
LUA_TABLIBNAME
,
luaopen_table
);
luaLoadLib
(
lua
,
LUA_STRLIBNAME
,
luaopen_string
);
luaLoadLib
(
lua
,
LUA_MATHLIBNAME
,
luaopen_math
);
luaLoadLib
(
lua
,
LUA_DBLIBNAME
,
luaopen_debug
);
#if 0 /* Stuff that we don't load currently, for sandboxing concerns. */
luaLoadLib(lua, LUA_LOADLIBNAME, luaopen_package);
luaLoadLib(lua, LUA_OSLIBNAME, luaopen_os);
#endif
}
void
scriptingInit
(
void
)
{
void
scriptingInit
(
void
)
{
lua_State
*
lua
=
lua_open
();
lua_State
*
lua
=
lua_open
();
luaL
_openlib
s
(
lua
);
luaL
oadLibrarie
s
(
lua
);
/* Initialize a dictionary we use to map SHAs to scripts.
/* Initialize a dictionary we use to map SHAs to scripts.
* This is useful for replication, as we need to replicate EVALSHA
* This is useful for replication, as we need to replicate EVALSHA
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment