transform back into metatable-based object-orientation

dev
kikito 10 years ago
parent 2961caa14a
commit d07147ed54
  1. 166
      inspect.lua

@ -170,142 +170,148 @@ local function processRecursive(process, item, path)
return processed
end
-------------------------------------------------------------------
function inspect.inspect(root, options)
options = options or {}
local depth = options.depth or math.huge
local process = options.process
if process then
root = processRecursive(process, root, {})
end
local tableAppearances = countTableAppearances(root)
-------------------------------------------------------------------
local buffer = {}
local maxIds = setmetatable({}, maxIdsMetaTable)
local ids = setmetatable({}, idsMetaTable)
local level = 0
local blen = 0 -- buffer length
local Inspector = {}
local Inspector_mt = {__index = Inspector}
local function puts(...)
function Inspector:puts(...)
local args = {...}
local buffer = self.buffer
local len = #buffer
for i=1, #args do
blen = blen + 1
buffer[blen] = tostring(args[i])
end
len = len + 1
buffer[len] = tostring(args[i])
end
end
local function down(f)
level = level + 1
function Inspector:down(f)
self.level = self.level + 1
f()
level = level - 1
end
self.level = self.level - 1
end
local function tabify()
puts("\n", string.rep(" ", level))
end
function Inspector:tabify()
self:puts("\n", string.rep(" ", self.level))
end
local function commaControl(needsComma)
if needsComma then puts(',') end
function Inspector:commaControl(needsComma)
if needsComma then self:puts(',') end
return true
end
end
local function alreadyVisited(v)
return ids[type(v)][v] ~= nil
end
function Inspector:alreadyVisited(v)
return self.ids[type(v)][v] ~= nil
end
local function getId(v)
function Inspector:getId(v)
local tv = type(v)
local id = ids[tv][v]
local id = self.ids[tv][v]
if not id then
id = maxIds[tv] + 1
maxIds[tv] = id
ids[tv][v] = id
id = self.maxIds[tv] + 1
self.maxIds[tv] = id
self.ids[tv][v] = id
end
return id
end
local putValue -- forward declaration that needs to go before putTable & putKey
end
local function putKey(k)
if isIdentifier(k) then return puts(k) end
puts( "[" )
putValue(k, {})
puts("]")
end
function Inspector:putKey(k)
if isIdentifier(k) then return self:puts(k) end
self:puts("[")
self:putValue(k)
self:puts("]")
end
local function putTable(t)
if alreadyVisited(t) then
puts('<table ', getId(t), '>')
elseif level >= depth then
puts('{...}')
function Inspector:putTable(t)
if self:alreadyVisited(t) then
self:puts('<table ', self:getId(t), '>')
elseif self.level >= self.depth then
self:puts('{...}')
else
if tableAppearances[t] > 1 then puts('<', getId(t), '>') end
if self.tableAppearances[t] > 1 then self:puts('<', self:getId(t), '>') end
local dictKeys = getDictionaryKeys(t)
local length = #t
local mt = getmetatable(t)
local to_string_result = getToStringResultSafely(t, mt)
puts('{')
down(function()
self:puts('{')
self:down(function()
if to_string_result then
puts(' -- ', escape(to_string_result))
if length >= 1 then tabify() end -- tabify the array values
self:puts(' -- ', escape(to_string_result))
if length >= 1 then self:tabify() end
end
local needsComma = false
for i=1, length do
needsComma = commaControl(needsComma)
puts(' ')
putValue(t[i])
needsComma = self:commaControl(needsComma)
self:puts(' ')
self:putValue(t[i])
end
for _,k in ipairs(dictKeys) do
needsComma = commaControl(needsComma)
tabify()
putKey(k)
puts(' = ')
putValue(t[k])
needsComma = self:commaControl(needsComma)
self:tabify()
self:putKey(k)
self:puts(' = ')
self:putValue(t[k])
end
if mt then
needsComma = commaControl(needsComma)
tabify()
puts('<metatable> = ')
putValue(mt)
needsComma = self:commaControl(needsComma)
self:tabify()
self:puts('<metatable> = ')
self:putValue(mt)
end
end)
if #dictKeys > 0 or mt then -- dictionary table. Justify closing }
tabify()
self:tabify()
elseif length > 0 then -- array tables have one extra space before closing }
puts(' ')
end
puts('}')
self:puts(' ')
end
self:puts('}')
end
end
-- putvalue is forward-declared before putTable & putKey
putValue = function(v)
function Inspector:putValue(v)
local tv = type(v)
if tv == 'string' then
puts(smartQuote(escape(v)))
self:puts(smartQuote(escape(v)))
elseif tv == 'number' or tv == 'boolean' or tv == 'nil' then
puts(tostring(v))
self:puts(tostring(v))
elseif tv == 'table' then
putTable(v)
self:putTable(v)
else
puts('<',tv,' ',getId(v),'>')
self:puts('<',tv,' ',self:getId(v),'>')
end
end
-------------------------------------------------------------------
function inspect.inspect(root, options)
options = options or {}
local depth = options.depth or math.huge
local process = options.process
if process then
root = processRecursive(process, root, {})
end
putValue(root, {})
local inspector = setmetatable({
depth = depth,
buffer = {},
level = 0,
ids = setmetatable({}, idsMetaTable),
maxIds = setmetatable({}, maxIdsMetaTable),
tableAppearances = countTableAppearances(root)
}, Inspector_mt)
inspector:putValue(root)
return table.concat(buffer)
return table.concat(inspector.buffer)
end
setmetatable(inspect, { __call = function(_, ...) return inspect.inspect(...) end })

Loading…
Cancel
Save