将 LuaJIT FFI 结构转换为表
Converting LuaJIT FFI structs to tables
在 LuaJIT FFI 库中,结构可以是 initialized from tables。有没有一种简单的方法可以做相反的事情?显然,对于任何 specific 结构,很容易编写一个函数将其转换为 table,但它需要重复字段。我不是特别关心性能,这只是为了调试。
您可以使用 ffi-reflect Lua 库,它使用 ffi.typeinfo 读取内部 ctype 信息以获取结构的字段名称列表。
local ffi = require "ffi"
local reflect = require "reflect"
ffi.cdef[[typedef struct test{int x, y;}test;]]
local cd = ffi.new('test', 1, 2)
function totab(struct)
local t = {}
for refct in reflect.typeof(struct):members() do
t[refct.name] = struct[refct.name]
end
return t
end
local ret = totab(cd)
assert(ret.x == 1 and ret.y == 2)
在 LuaJIT FFI 库中,结构可以是 initialized from tables。有没有一种简单的方法可以做相反的事情?显然,对于任何 specific 结构,很容易编写一个函数将其转换为 table,但它需要重复字段。我不是特别关心性能,这只是为了调试。
您可以使用 ffi-reflect Lua 库,它使用 ffi.typeinfo 读取内部 ctype 信息以获取结构的字段名称列表。
local ffi = require "ffi"
local reflect = require "reflect"
ffi.cdef[[typedef struct test{int x, y;}test;]]
local cd = ffi.new('test', 1, 2)
function totab(struct)
local t = {}
for refct in reflect.typeof(struct):members() do
t[refct.name] = struct[refct.name]
end
return t
end
local ret = totab(cd)
assert(ret.x == 1 and ret.y == 2)