gpt4 book ai didi

c++ - 如何改进 Lua 内部错误消息以包含行号?

转载 作者:行者123 更新时间:2023-12-01 14:07:33 24 4
gpt4 key购买 nike

如何改进错误日志以包含行号?这是针对在我读取 Lua 文件时引发的内部错误。我得到的唯一错误消息是 attempt to index a function value , 没有行号或文件名。

void handleLuaError(lua_State* L, const char* msg, const char* filename) {
handleError("%s %s: %s", msg, filename, lua_tostring(luaState, -1));
lua_pop(L, 1);
luaL_traceback (L, L, msg, 2);
char* result = 0;
if (lua_isstring(L, -1)) result = strdup_s(lua_tostring(L, -1));
lua_pop(L, 1);
SPDLOG_WARN("traceback: {}", result);
}

void readLua(const char *filename) {
SPDLOG_INFO("readLua {}", filename);
if (luaL_loadfile(luaState, filename) || lua_pcall(luaState, 0, 0, 0)) {
handleLuaError(luaState, "Reading file", filename);
}
}
如您所见,我尝试添加 luaL_traceback,但我从 luaL_traceback 收到的唯一消息是 stack traceback: ,没有实际的追溯。我读到 lua_pcall 可以破坏堆栈,并且我需要在错误发生时进行一些调试日志记录,例如在错误处理程序中,而不是在 lua_pcall 返回之后。有人建议我需要使用 xpcall 并提供自定义错误处理程序,但我找不到有关如何在 C++ 中调用 xpcall 的任何文档或示例代码。
如何设置自定义错误处理程序?或者有没有办法告诉 Lua 在内部错误中添加更多信息?当我在其他人的 StackOverflow 帖子中看到我的特定错误消息时,错误消息 ( attempt to index ... ) 显示文件名和行号,因此应该可以通过此错误获取文件名和行号。
这是导致错误的 Lua 文件:
addAchievement({
code = "AchNewCity",
name = "A New City",
text = "Welcome to NewCity. " ..
"Your first task is to " ..
"build some roads. Click " ..
"on the Transportation Tool in the " ..
"bottom left corner.",
condition = "true",
effect = "FRoadTool,FRoadStreet",
hint = ""
});

最佳答案

如果有疑问,请检查例如原始源代码。 Lua 有解释器 lua.c这正是你想要完成的。您对 msghandler 感兴趣, docall report .
lua_pcall 接受消息处理程序的索引作为第四个参数。它可用于检索有关错误环境等的信息。后 lua_pcall返回你不能这样做(到那时堆栈展开)。
您的代码应该看起来更像:

int handleLuaError(lua_State* L) {
const char * msg = lua_tostring(L, -1);
luaL_traceback(L, L, msg, 2);
lua_remove(L, -2); // Remove error/"msg" from stack.
return 1; // Traceback is returned.
}

void readLua(const char *filename) {
SPDLOG_INFO("readLua {}", filename);
lua_pushcfunction(luaState, handleLuaError);
if (LUA_OK != (luaL_loadfile(luaState, filename) || lua_pcall(luaState, 0, 0, -2))) {
// handleLuaError's index ^^^
handleError("Reading file %s: %s", filename, lua_tostring(luaState, -1));
lua_pop(luaState, 1); // Pop traceback from stack.
}
lua_pop(luaState, 1); // Pop handleLuaError from stack.
}
现在,这是一个相当简单的实现。您应该考虑拆分 luaL_loadfilelua_pcall对与加载文件直接相关的错误做出相应的 react 。同样,您可以引用解释器的源代码: dofile 然后 dochunk .
此外,上面的示例缺少大部分重要检查,尤其是测试是否 lua_tostring 成功,除非您 100% 以上确定返回的错误始终可以轻松转换为字符串。
看来你有两种状态共存: luaState有时 L .我建议研究一下,它可能会在将来为您省去一些问题。
还有一件事,除了 luaL_traceback 您可能还对 luaL_where 感兴趣.它在内部使用 luaL_error .

关于c++ - 如何改进 Lua 内部错误消息以包含行号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63570555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com