在tabes中附加元表

时间:2015-10-02 02:08:51

标签: lua lua-table metatable meta-method

我有解析配置文件并生成表的解析器。

结果表可能类似于:

root = {
 global = {
 },
 section1 = {
   subsect1 = {
     setting = 1
     subsubsect2 = {
     }
   }
 }
}

目标是有一个表我可以读取设置,如果设置不存在,它会尝试从它的父节点抓取它。在顶层,它将从全球获取。如果它不在全球范围内,它将返回零。

我将metatables附加到root这样:

local function attach_mt(tbl, parent)
    for k,v in pairs(tbl) do
      print(k, v)
      if type(v) == 'table' then
        attach_mt(v, tbl)
        setmetatable(v, {
          __index = function(t,k)
            print("*****parent=", dump(parent))
            if parent then
              return tbl[k]
            else
              if rawget(tbl, k) then
                return rawget(tbl, k)
              end
            end
            print(string.format("DEBUG: Request for key: %s: not found", k))
            return nil
          end
        })
      end
    end
  end

  attach_mt(root)

但是,在请求密钥时,它不起作用。似乎是这样的情况总是为零。我如何从父表中读取?

1 个答案:

答案 0 :(得分:4)

local function attach_mt(tbl, parent)
   setmetatable(tbl, {__index = parent or root.global})
   for k, v in pairs(tbl) do
      if type(v) == 'table' then
         attach_mt(v, tbl)
      end
   end
end
attach_mt(root)
setmetatable(root.global, nil)