0

我使用 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);
4

1 回答 1

1

[string "1"]来自您在此处提供的块名称:std::to_string(current_id++).c_str()

由于它不以 @ 开头,因此它被视为已加载的字符串,因此是[string ""]语法。如果您希望错误消息将其视为文件名,请将 @ 放在文件名前面。

而且我怀疑行号为 0 的原因是因为您通过将“strip”设置为 true 来告诉 Lua 删除行号。

于 2020-08-26T17:18:13.817 回答