2

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

结果表可能类似于:

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

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

我像这样将元表附加到根目录:

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)

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

4

1 回答 1

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)
于 2015-10-02T02:44:08.423 回答