从Lua堆栈安全地读取字符串

时间:2013-03-21 09:51:19

标签: c++ lua

如何安全地从Lua堆栈中读取字符串值?函数lua_tostringlua_tolstring都可以引发Lua错误(longjmp /奇怪类型的异常)。因此,应该使用lua_pcall在保护模式下调用这些函数。但我无法找到一个很好的解决方案,如何做到这一点,并从Lua堆栈获取字符串值到C ++。是否真的需要使用lua_tolstring在保护模式下调用lua_pcall

实际上使用lua_pcall似乎很糟糕,因为我想从Lua堆栈中读取的字符串是lua_pcall存储的错误消息。

4 个答案:

答案 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