made inspect.lua not object-oriented

eLua
kikito 11 years ago
parent 7a0dae850d
commit 0de3c69e5d
  1. 257
      inspect.lua

@ -45,7 +45,7 @@ local controlCharsTranslation = {
local function unescapeChar(c) return controlCharsTranslation[c] end local function unescapeChar(c) return controlCharsTranslation[c] end
local function unescape(str) local function unescape(str)
local result, _ = string.gsub( str, "(%c)", unescapeChar ) local result, _ = string.gsub(str, "(%c)", unescapeChar)
return result return result
end end
@ -84,8 +84,7 @@ local function sortKeys(a, b)
end end
local function getDictionaryKeys(t) local function getDictionaryKeys(t)
local length = #t local keys, length = {}, #t
local keys = {}
for k,_ in pairs(t) do for k,_ in pairs(t) do
if isDictionaryKey(k, length) then table.insert(keys, k) end if isDictionaryKey(k, length) then table.insert(keys, k) end
end end
@ -95,12 +94,12 @@ end
local function getToStringResultSafely(t, mt) local function getToStringResultSafely(t, mt)
local __tostring = type(mt) == 'table' and rawget(mt, '__tostring') local __tostring = type(mt) == 'table' and rawget(mt, '__tostring')
local string, status local str, ok
if type(__tostring) == 'function' then if type(__tostring) == 'function' then
status, string = pcall(__tostring, t) ok, str = pcall(__tostring, t)
string = status and string or 'error: ' .. tostring(string) str = ok and str or 'error: ' .. tostring(str)
end end
return string if type(str) == 'string' and #str > 0 then return str end
end end
local maxIdsMetaTable = { local maxIdsMetaTable = {
@ -118,161 +117,159 @@ local idsMetaTable = {
end end
} }
local Inspector = {} local function countTableAppearances(t, tableAppearances)
tableAppearances = tableAppearances or setmetatable({}, {__mode = "k"})
function Inspector:new(t, depth)
local inspector = {
buffer = {},
depth = depth,
level = 0,
tableAppearances = setmetatable({}, {__mode = "k"}),
maxIds = setmetatable({}, maxIdsMetaTable),
ids = setmetatable({}, idsMetaTable),
}
setmetatable(inspector, {__index = Inspector})
inspector:countTableAppearances(t)
return inspector:putValue(t)
end
function Inspector:countTableAppearances(t)
if type(t) == 'table' then if type(t) == 'table' then
if not self.tableAppearances[t] then if not tableAppearances[t] then
self.tableAppearances[t] = 1 tableAppearances[t] = 1
for k,v in pairs(t) do for k,v in pairs(t) do
self:countTableAppearances(k) countTableAppearances(k, tableAppearances)
self:countTableAppearances(v) countTableAppearances(v, tableAppearances)
end end
self:countTableAppearances(getmetatable(t)) countTableAppearances(getmetatable(t), tableAppearances)
else else
self.tableAppearances[t] = self.tableAppearances[t] + 1 tableAppearances[t] = tableAppearances[t] + 1
end end
end end
end
function Inspector:tabify() return tableAppearances
self:puts("\n", string.rep(" ", self.level))
return self
end end
function Inspector:up() -------------------------------------------------------------------
self.level = self.level - 1 function inspect.dump(rootObject, depth)
end depth = depth or math.huge
function Inspector:down() local buffer = {}
self.level = self.level + 1 local blen = 0 -- buffer length
end local level = 0
local maxIds = setmetatable({}, maxIdsMetaTable)
local ids = setmetatable({}, idsMetaTable)
function Inspector:puts(...) local tableAppearances = countTableAppearances(rootObject)
local args = {...}
local len = #self.buffer
for i=1, #args do
len = len + 1
self.buffer[len] = tostring(args[i])
end
return self
end
function Inspector:commaControl(needsComma) local function down(f)
if needsComma then self:puts(',') end level = level + 1
return true f()
end level = level - 1
end
function Inspector:putTable(t) local function puts(...)
if self:alreadyVisited(t) then local args = {...}
self:puts('<table ', self:getId(t), '>') for i=1, #args do
elseif self.depth and self.level >= self.depth then blen = blen + 1
self:puts('{...}') buffer[blen] = tostring(args[i])
else
if self.tableAppearances[t] > 1 then
self:puts('<',self:getId(t),'>')
end end
self:puts('{') end
self:down()
local length = #t local function tabify()
local mt = getmetatable(t) puts("\n", string.rep(" ", level))
end
local string = getToStringResultSafely(t, mt) local function commaControl(needsComma)
if type(string) == 'string' and #string > 0 then if needsComma then puts(',') end
self:puts(' -- ', unescape(string)) return true
if length >= 1 then self:tabify() end -- tabify the array values end
end
local needsComma = false local function alreadyVisited(v)
for i=1, length do return ids[type(v)][v] ~= nil
needsComma = self:commaControl(needsComma) end
self:puts(' '):putValue(t[i])
end
local dictKeys = getDictionaryKeys(t) local function getId(v)
local tv = type(v)
local id = ids[tv][v]
if not id then
id = maxIds[tv] + 1
maxIds[tv] = id
ids[tv][v] = id
end
return id
end
for _,k in ipairs(dictKeys) do local putValue -- forward declaration that needs to go before putTable & putKey
needsComma = self:commaControl(needsComma)
self:tabify():putKey(k):puts(' = '):putValue(t[k])
end
if mt then local function putKey(k)
needsComma = self:commaControl(needsComma) if isIdentifier(k) then return puts(k) end
self:tabify():puts('<metatable> = '):putValue(mt) puts( "[" )
end putValue(k)
puts("]")
end
self:up() local function putTable(t)
if alreadyVisited(t) then
puts('<table ', getId(t), '>')
elseif level >= depth then
puts('{...}')
else
if tableAppearances[t] > 1 then puts('<', getId(t), '>') end
local dictKeys = getDictionaryKeys(t)
local length = #t
local mt = getmetatable(t)
local to_string_result = getToStringResultSafely(t, mt)
puts('{')
down(function()
if to_string_result then
puts(' -- ', unescape(to_string_result))
if length >= 1 then tabify() end -- tabify the array values
end
local needsComma = false
for i=1, length do
needsComma = commaControl(needsComma)
puts(' ')
putValue(t[i])
end
for _,k in ipairs(dictKeys) do
needsComma = commaControl(needsComma)
tabify()
putKey(k)
puts(' = ')
putValue(t[k])
end
if mt then
needsComma = commaControl(needsComma)
tabify()
puts('<metatable> = ')
putValue(mt)
end
end)
if #dictKeys > 0 or mt then -- dictionary table. Justify closing }
tabify()
elseif length > 0 then -- array tables have one extra space before closing }
puts(' ')
end
if #dictKeys > 0 or mt then -- dictionary table. Justify closing } puts('}')
self:tabify()
elseif length > 0 then -- array tables have one extra space before closing }
self:puts(' ')
end end
self:puts('}')
end
return self
end
function Inspector:alreadyVisited(v)
return self.ids[type(v)][v] ~= nil
end
function Inspector:getId(v)
local tv = type(v)
local id = self.ids[tv][v]
if not id then
id = self.maxIds[tv] + 1
self.maxIds[tv] = id
self.ids[tv][v] = id
end end
return id
end
function Inspector:putValue(v) -- putvalue is forward-declared before putTable & putKey
local tv = type(v) putValue = function(v)
local tv = type(v)
if tv == 'string' then
self:puts(smartQuote(unescape(v))) if tv == 'string' then
elseif tv == 'number' or tv == 'boolean' or tv == 'nil' then puts(smartQuote(unescape(v)))
self:puts(tostring(v)) elseif tv == 'number' or tv == 'boolean' or tv == 'nil' then
elseif tv == 'table' then puts(tostring(v))
self:putTable(v) elseif tv == 'table' then
else putTable(v)
self:puts('<',tv,' ',self:getId(v),'>') else
puts('<',tv,' ',getId(v),'>')
end
end end
return self
end
function Inspector:putKey(k) putValue(rootObject)
if isIdentifier(k) then return self:puts(k) end
return self:puts( "[" ):putValue(k):puts("]")
end
function Inspector:tostring() return table.concat(buffer)
return table.concat(self.buffer)
end end
setmetatable(inspect, { __call = function(_,t,depth) setmetatable(inspect, { __call = function(_, ...) return inspect.dump(...) end })
return Inspector:new(t, depth):tostring()
end })
return inspect return inspect

Loading…
Cancel
Save