使用带有Lua C API的选择器字符串选择嵌套值

时间:2014-05-24 21:30:31

标签: c lua lua-api

假设我在嵌套表中定义了一个值:tab["m"]["b"] = {}。 在Lua中,我可以用之前的声明来定义它。

这也适用于C API吗?具体而言,不是单独推送tabm等,而是使用单个字符串tab["m"]["b"]选择值。

推送和选择它,就像使用单个值一样(如下面的代码中所示)不起作用。

lua_pushstring(state, "tab[\"m\"][\"b\"]");
lua_gettable(state, LUA_GLOBALSINDEX);

1 个答案:

答案 0 :(得分:2)

这在C API中是不可能的。如果您需要此功能,可以添加辅助函数来执行此操作:

/* Pushes onto the stack the element t[k_1][...][k_n]
 * where t is the value at the given index and 
 * k_1, ..., k_n are the elements at the top of the stack
 * (k_1 being furthest from the top of the stack and
 *  k_n being at very the top of the stack).
 */
void recursive_gettable(lua_State *L, int index, int n) /*[-n,+1,e]*/ {
    luaL_checkstack(L, 2, NULL);           /*[k_1,...,k_n]*/
    lua_pushvalue(L, index);               /*[k_1,...,k_n,t]*/
    for (int i = 1; i <= n; ++i) {
        lua_pushvalue(L, -(n+1)+(i-1));    /*[k_1,...,k_n,t[...][k_(i-1)],k_i]*/
        lua_gettable(L, -2);               /*[k_1,...,k_n,t[...][k_i]]*/
    }
    lua_replace(L, -1, -(n+1));            /*[t[...][k_n],k_2,...,k_n]*/
    lua_pop(L, n-1);                       /*[t[...][k_n]] */
}

/*usage:*/
luaL_checkstack(L, 3, NULL);
lua_pushstring(L, "tab");
lua_pushstring(L, "m");
lua_pushstring(L, "b");
recursive_gettable(L, LUA_GLOBALSINDEX, 3);