如何安全地从Lua堆栈中读取字符串值?函数lua_tostring
和lua_tolstring
都可以引发Lua错误(longjmp /奇怪类型的异常)。因此,应该使用lua_pcall
在保护模式下调用这些函数。但我无法找到一个很好的解决方案,如何做到这一点,并从Lua堆栈获取字符串值到C ++。是否真的需要使用lua_tolstring
在保护模式下调用lua_pcall
?
实际上使用lua_pcall
似乎很糟糕,因为我想从Lua堆栈中读取的字符串是lua_pcall
存储的错误消息。
答案 0 :(得分:6)
在lua_type
之前使用lua_tostring
:如果lua_type
返回LUA_TSTRING
,那么您可以安全地调用lua_tostring
来获取字符串,并且不会分配任何内存。
lua_tostring
仅在需要将数字转换为字符串时才分配内存。
答案 1 :(得分:1)
好的,当您调用lua_pcall失败时,它将返回错误代码。成功调用lua_pcall后,您将获得零。所以,首先你应该通过lua_pcall看到返回的值,然后使用lua_type来获取类型,最后使用lua_to *函数得到正确的值。
int iRet = lua_pcall(L, 0, 0, 0);
if (iRet)
{
const char *pErrorMsg = lua_tostring(L, -1); // error message
cout<<pErrorMsg<<endl;
lua_close(L);
return 0;
}
int iType = lua_type(L, -1);
switch (iType)
{
//...
case LUA_TSTRING:
{
const char *pValue = lua_tostring(L, -1);
// ...
}
}
全部。 祝你好运。
答案 2 :(得分:0)
您可以使用lua_isstring
函数检查值是否可以转换为字符串而不会出错。
答案 3 :(得分:0)
以下是在OpenTibia服务器中的完成方式:
std::string LuaState::popString()
{
size_t len;
const char* cstr = lua_tolstring(state, -1, &len);
std::string str(cstr, len);
pop();
return str;
}
来源:https://github.com/opentibia/server/blob/master/src/lua_manager.cpp