gpt4 book ai didi

c - 如何从 Lua C API 获取 lua 设置的元表

转载 作者:行者123 更新时间:2023-12-04 03:37:23 28 4
gpt4 key购买 nike

路亚:

a = {
b = "c",
d = {
e = "f",
g = "h"
}
}
setmetatable(a.d, {__ismt = true})

cfun(a) --call C function to iterate over table a

C:

int cfun(lua_State *L)
{
lua_pushnil(L);
while (lua_next(L, -2) != 0)
{
// iterate over table

lua_pop(L, 1);
}
}

当主机客户端遍历表时,如何知道是否存在元表?然后你如何获得元表?

最佳答案

表格是树的形式,需要迭代遍历树。 Lua 已经有一个堆栈实现,所以这使工作更容易。

  • 在入口处,堆栈的顶部是表,您将压入一个 nil 元素,因为 lua_next() 会在检查表之前消耗堆栈中的一个元素。所以堆栈看起来像 table -> nil
  • 接下来,我们调用 lua_next(),它将使用堆栈中的一个元素并从表中添加两个新的键值对。堆栈看起来像 table -> key -> value。如果没有下一个元素,调用的返回值为0。
  • 如果返回值为 1,并且堆栈上的值是一个嵌套表,你将 nil 压入堆栈,所以现在堆栈看起来像 table -> key -> table -> nil。现在你几乎就像一开始一样,所以通过循环,你将开始遍历嵌套表。
  • 如果返回值为 1,并且该值不是表,则用该值来填充
  • 如果返回值为 0,我们可以检查这是否是元表。检查后,您将弹出值并检查堆栈是 table -> key 还是 any -> key。如果栈上的第二个元素不是表格,则遍历结束,结束循环。

这是实现该算法的C 代码。我已经离开了 printf 以帮助调试。 printf() 应该被删除。

static int cfun(lua_State *L)
{
luaL_checktype(L, 1, LUA_TTABLE);
lua_pushnil(L); // Add extra space for the first lua_next to pop
int loop=1;
do {
if ( lua_next(L,-2) != 0 ) {
if (lua_istable(L,-1)) {
printf("Table [%s] \n", lua_tostring(L, -2));
lua_pushnil(L); // Start iterating this sub-table
} else {
// The Key and Value are on the stack. We can get their type
printf("(%s - %s)\n",
lua_tostring(L, -2),
lua_typename(L, lua_type(L, -1)));
lua_pop(L,1);
}
} else {
printf("table finished, still on stack (%s -> %s -> %s)\n",
lua_typename(L, lua_type(L, -3)),
lua_typename(L, lua_type(L, -2)),
lua_typename(L, lua_type(L, -1)));
if (lua_getmetatable(L,-1)) {
// The table has metatable. Now the metatable is on stack
printf("Metatable detected\n");
lua_pop(L,1); // remove the metatable from stack
}
lua_pop(L,1); // Pop the current table from stack
if (!lua_istable(L, -2)) {
loop = 0; // No more tables on stack, breaking the loop
}
}
} while (loop);
lua_pop(L,1); // Clear the last element
lua_pushnumber(L,0); // Return 0
return 1;
}

关于c - 如何从 Lua C API 获取 lua 设置的元表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66656457/

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