我使用 LuaJit 和 LuaBridge 编译 lua 代码并执行它。当 lua 代码抛出错误时,真的很难调试——我不知道它发生在哪一行或者是什么原因造成的。
这是一个例子:
[string "1"]:0: bad argument #1 to 'info' (string expected, got table)
在代码中:
"function foo(bar)\n"
" logger:info(bar.moo);"
如何翻译[string "1"]
成匹配的代码行?我可以获得堆栈跟踪吗?
lua 代码是string.dump
在文本代码上“编译”的,然后用luaL_loadbuffer
. 加载和调用 lua 函数的伪代码:
int result = luaL_loadstring(L, script.c_str());
auto script_function = luabridge::LuaRef::fromStack(L);
auto string_module = luabridge::getGlobal(L, "string");
auto string_dump = string_module["dump"];
auto code = luabridge::LuaRef_cast<std::string>(string_dump(script_function, strip));
luaL_loadbuffer(L, code.data(), code.size(), std::to_string(current_id++).c_str());
lua_pcall(L, 0, LUA_MULTRET, -1);
auto func_to_call = luabridge::getGlobal(L, "foo");
func_to_call(&bar);