X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flua.c;h=a0e360366ae8a8ad42903b52b168534e88d5906d;hb=c6d13fbae8ca35535bcd9ae857985c78051db872;hp=a3f2037e2ffb11b6967ed9e3a76a2501a464aca1;hpb=f6c4f3e43d5a8a49de8f6a5d9ee8ae362fc7f0b1;p=collectd.git diff --git a/src/lua.c b/src/lua.c index a3f2037e..a0e36036 100644 --- a/src/lua.c +++ b/src/lua.c @@ -362,7 +362,7 @@ static int lua_cb_register_write(lua_State *L) /* {{{ */ return 0; } /* }}} int lua_cb_register_write */ -static luaL_Reg lua_c_functions[] = { +static luaL_Reg collectdlib[] = { {"log_debug", lua_cb_log_debug}, {"log_error", lua_cb_log_error}, {"log_info", lua_cb_log_info}, @@ -372,6 +372,12 @@ static luaL_Reg lua_c_functions[] = { {"register_read", lua_cb_register_read}, {"register_write", lua_cb_register_write}}; +static int open_collectd(lua_State *L) /* {{{ */ +{ + luaL_newlib(L, collectdlib); + return 1; +} /* }}} */ + static void lua_script_free(lua_script_t *script) /* {{{ */ { if (script == NULL) @@ -404,13 +410,9 @@ static int lua_script_init(lua_script_t *script) /* {{{ */ /* Open up all the standard Lua libraries. */ luaL_openlibs(script->lua_state); - /* Register all the functions we implement in C */ - lua_newtable(script->lua_state); - for (size_t i = 0; i < STATIC_ARRAY_SIZE(lua_c_functions); i++) { - lua_pushcfunction(script->lua_state, lua_c_functions[i].func); - lua_setfield(script->lua_state, -2, lua_c_functions[i].name); - } - lua_setglobal(script->lua_state, "collectd"); + /* Load the 'collectd' library */ + luaL_requiref(script->lua_state, "collectd", open_collectd, 1); + lua_pop(script->lua_state, 1); /* Prepend BasePath to package.path */ if (base_path[0] != '\0') {