serpent.lua 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. --[[
  2. serpent库:
  3. 主要功能是打印lua的table
  4. 详细使用请参考:https://phenix3443.github.io/notebook/lua/3rd-lib/serpent.html
  5. --]]
  6. local n, v = "serpent", "0.30" -- (C) 2012-17 Paul Kulchenko; MIT License
  7. local c, d = "Paul Kulchenko", "Lua serializer and pretty printer"
  8. local snum = {[tostring(0)]='1/0 --[[math.huge]]',[tostring(0)]='-1/0 --[[-math.huge]]',[tostring(0)]='0/0'}
  9. local badtype = {thread = true, userdata = true, cdata = true}
  10. local getmetatable = debug and debug.getmetatable or getmetatable
  11. local pairs = function(t) return next, t end -- avoid using __pairs in Lua 5.2+
  12. local keyword, globals, G = {}, {}, (_G or _ENV)
  13. for _,k in ipairs({'and', 'break', 'do', 'else', 'elseif', 'end', 'false',
  14. 'for', 'function', 'goto', 'if', 'in', 'local', 'nil', 'not', 'or', 'repeat',
  15. 'return', 'then', 'true', 'until', 'while'}) do keyword[k] = true end
  16. for k,v in pairs(G) do globals[v] = k end -- build func to name mapping
  17. for _,g in ipairs({'coroutine', 'debug', 'io', 'math', 'string', 'table', 'os'}) do
  18. for k,v in pairs(type(G[g]) == 'table' and G[g] or {}) do globals[v] = g..'.'..k end end
  19. local function s(t, opts)
  20. local name, indent, fatal, maxnum = opts.name, opts.indent, opts.fatal, opts.maxnum
  21. local sparse, custom, huge = opts.sparse, opts.custom, not opts.nohuge
  22. local space, maxl = (opts.compact and '' or ' '), (opts.maxlevel or math.huge)
  23. local maxlen, metatostring = tonumber(opts.maxlength), opts.metatostring
  24. local iname, comm = '_'..(name or ''), opts.comment and (tonumber(opts.comment) or math.huge)
  25. local numformat = opts.numformat or "%.17g"
  26. local seen, sref, syms, symn = {}, {'local '..iname..'={}'}, {}, 0
  27. local function gensym(val) return '_'..(tostring(tostring(val)):gsub("[^%w]",""):gsub("(%d%w+)",
  28. -- tostring(val) is needed because __tostring may return a non-string value
  29. function(s) if not syms[s] then symn = symn+1; syms[s] = symn end return tostring(syms[s]) end)) end
  30. local function safestr(s) return type(s) == "number" and tostring(huge and snum[tostring(s)] or numformat:format(s))
  31. or type(s) ~= "string" and tostring(s) -- escape NEWLINE/010 and EOF/026
  32. or ("%q"):format(s):gsub("\010","n"):gsub("\026","\\026") end
  33. local function comment(s,l) return comm and (l or 0) < comm and ' --[['..select(2, pcall(tostring, s))..']]' or '' end
  34. local function globerr(s,l) return globals[s] and globals[s]..comment(s,l) or not fatal
  35. and safestr(select(2, pcall(tostring, s))) or error("Can't serialize "..tostring(s)) end
  36. local function safename(path, name) -- generates foo.bar, foo[3], or foo['b a r']
  37. local n = name == nil and '' or name
  38. local plain = type(n) == "string" and n:match("^[%l%u_][%w_]*$") and not keyword[n]
  39. local safe = plain and n or '['..safestr(n)..']'
  40. return (path or '')..(plain and path and '.' or '')..safe, safe end
  41. local alphanumsort = type(opts.sortkeys) == 'function' and opts.sortkeys or function(k, o, n) -- k=keys, o=originaltable, n=padding
  42. local maxn, to = tonumber(n) or 12, {number = 'a', string = 'b'}
  43. local function padnum(d) return ("%0"..tostring(maxn).."d"):format(tonumber(d)) end
  44. table.sort(k, function(a,b)
  45. -- sort numeric keys first: k[key] is not nil for numerical keys
  46. return (k[a] ~= nil and 0 or to[type(a)] or 'z')..(tostring(a):gsub("%d+",padnum))
  47. < (k[b] ~= nil and 0 or to[type(b)] or 'z')..(tostring(b):gsub("%d+",padnum)) end) end
  48. local function val2str(t, name, indent, insref, path, plainindex, level)
  49. local ttype, level, mt = type(t), (level or 0), getmetatable(t)
  50. local spath, sname = safename(path, name)
  51. local tag = plainindex and
  52. ((type(name) == "number") and '' or name..space..'='..space) or
  53. (name ~= nil and sname..space..'='..space or '')
  54. if seen[t] then -- already seen this element
  55. sref[#sref+1] = spath..space..'='..space..seen[t]
  56. return tag..'nil'..comment('ref', level) end
  57. -- protect from those cases where __tostring may fail
  58. if type(mt) == 'table' then
  59. local to, tr = pcall(function() return mt.__tostring(t) end)
  60. local so, sr = pcall(function() return mt.__serialize(t) end)
  61. if (opts.metatostring ~= false and to or so) then -- knows how to serialize itself
  62. seen[t] = insref or spath
  63. t = so and sr or tr
  64. ttype = type(t)
  65. end -- new value falls through to be serialized
  66. end
  67. if ttype == "table" then
  68. if level >= maxl then return tag..'{}'..comment('maxlvl', level) end
  69. seen[t] = insref or spath
  70. if next(t) == nil then return tag..'{}'..comment(t, level) end -- table empty
  71. if maxlen and maxlen < 0 then return tag..'{}'..comment('maxlen', level) end
  72. local maxn, o, out = math.min(#t, maxnum or #t), {}, {}
  73. for key = 1, maxn do o[key] = key end
  74. if not maxnum or #o < maxnum then
  75. local n = #o -- n = n + 1; o[n] is much faster than o[#o+1] on large tables
  76. for key in pairs(t) do if o[key] ~= key then n = n + 1; o[n] = key end end end
  77. if maxnum and #o > maxnum then o[maxnum+1] = nil end
  78. if opts.sortkeys and #o > maxn then alphanumsort(o, t, opts.sortkeys) end
  79. local sparse = sparse and #o > maxn -- disable sparsness if only numeric keys (shorter output)
  80. for n, key in ipairs(o) do
  81. local value, ktype, plainindex = t[key], type(key), n <= maxn and not sparse
  82. if opts.valignore and opts.valignore[value] -- skip ignored values; do nothing
  83. or opts.keyallow and not opts.keyallow[key]
  84. or opts.keyignore and opts.keyignore[key]
  85. or opts.valtypeignore and opts.valtypeignore[type(value)] -- skipping ignored value types
  86. or sparse and value == nil then -- skipping nils; do nothing
  87. elseif ktype == 'table' or ktype == 'function' or badtype[ktype] then
  88. if not seen[key] and not globals[key] then
  89. sref[#sref+1] = 'placeholder'
  90. local sname = safename(iname, gensym(key)) -- iname is table for local variables
  91. sref[#sref] = val2str(key,sname,indent,sname,iname,true) end
  92. sref[#sref+1] = 'placeholder'
  93. local path = seen[t]..'['..tostring(seen[key] or globals[key] or gensym(key))..']'
  94. sref[#sref] = path..space..'='..space..tostring(seen[value] or val2str(value,nil,indent,path))
  95. else
  96. out[#out+1] = val2str(value,key,indent,insref,seen[t],plainindex,level+1)
  97. if maxlen then
  98. maxlen = maxlen - #out[#out]
  99. if maxlen < 0 then break end
  100. end
  101. end
  102. end
  103. local prefix = string.rep(indent or '', level)
  104. local head = indent and '{\n'..prefix..indent or '{'
  105. local body = table.concat(out, ','..(indent and '\n'..prefix..indent or space))
  106. local tail = indent and "\n"..prefix..'}' or '}'
  107. return (custom and custom(tag,head,body,tail,level) or tag..head..body..tail)..comment(t, level)
  108. elseif badtype[ttype] then
  109. seen[t] = insref or spath
  110. return tag..globerr(t, level)
  111. elseif ttype == 'function' then
  112. seen[t] = insref or spath
  113. if opts.nocode then return tag.."function() --[[..skipped..]] end"..comment(t, level) end
  114. local ok, res = pcall(string.dump, t)
  115. local func = ok and "((loadstring or load)("..safestr(res)..",'@serialized'))"..comment(t, level)
  116. return tag..(func or globerr(t, level))
  117. else return tag..safestr(t) end -- handle all other types
  118. end
  119. local sepr = indent and "\n" or ";"..space
  120. local body = val2str(t, name, indent) -- this call also populates sref
  121. local tail = #sref>1 and table.concat(sref, sepr)..sepr or ''
  122. local warn = opts.comment and #sref>1 and space.."--[[incomplete output with shared/self-references skipped]]" or ''
  123. return not name and body..warn or "do local "..body..sepr..tail.."return "..name..sepr.."end"
  124. end
  125. local function deserialize(data, opts)
  126. local env = (opts and opts.safe == false) and G
  127. or setmetatable({}, {
  128. __index = function(t,k) return t end,
  129. __call = function(t,...) error("cannot call functions") end
  130. })
  131. local f, res = (loadstring or load)('return '..data, nil, nil, env)
  132. if not f then f, res = (loadstring or load)(data, nil, nil, env) end
  133. if not f then return f, res end
  134. if setfenv then setfenv(f, env) end
  135. return pcall(f)
  136. end
  137. local function merge(a, b) if b then for k,v in pairs(b) do a[k] = v end end; return a; end
  138. return { _NAME = n, _COPYRIGHT = c, _DESCRIPTION = d, _VERSION = v, serialize = s,
  139. load = deserialize,
  140. dump = function(a, opts) return s(a, merge({name = '_', compact = true, sparse = true}, opts)) end,
  141. line = function(a, opts) return s(a, merge({sortkeys = true, comment = true}, opts)) end,
  142. block = function(a, opts) return s(a, merge({indent = ' ', sortkeys = true, comment = true}, opts)) end }