Skip to content
Snippets Groups Projects
Select Git revision
  • ad66fa9410a5b2a37d9124de5f6a37988aace740
  • main default protected
  • tags/misc
  • tags/version-0.5r2
  • tags/version-0.6
  • tags/version-0.4
  • tags/version-0.5r1
  • tags/libxaal_v01
  • tags/generic-feedback-renderer_complexAPI
  • tags/testing-libsodium
  • tags/testing-nettle
  • tags/testing_ajax
  • tags/testing_clearsilver
  • tags/testing_jansson
  • tags/testing_jsmn
  • tags/testing_json-c
16 results

serpent.lua

Blame
  • serpent.lua 7.83 KiB
    -- https://github.com/pkulchenko/serpent
    
    local n, v = "serpent", 0.272 -- (C) 2012-13 Paul Kulchenko; MIT License
    local c, d = "Paul Kulchenko", "Lua serializer and pretty printer"
    local snum = {[tostring(1/0)]='1/0 --[[math.huge]]',[tostring(-1/0)]='-1/0 --[[-math.huge]]',[tostring(0/0)]='0/0'}
    local badtype = {thread = true, userdata = true, cdata = true}
    local keyword, globals, G = {}, {}, (_G or _ENV)
    for _,k in ipairs({'and', 'break', 'do', 'else', 'elseif', 'end', 'false',
      'for', 'function', 'goto', 'if', 'in', 'local', 'nil', 'not', 'or', 'repeat',
      'return', 'then', 'true', 'until', 'while'}) do keyword[k] = true end
    for k,v in pairs(G) do globals[v] = k end -- build func to name mapping
    for _,g in ipairs({'coroutine', 'debug', 'io', 'math', 'string', 'table', 'os'}) do
      for k,v in pairs(G[g] or {}) do globals[v] = g..'.'..k end end
    
    local function s(t, opts)
      local name, indent, fatal, maxnum = opts.name, opts.indent, opts.fatal, opts.maxnum
      local sparse, custom, huge = opts.sparse, opts.custom, not opts.nohuge
      local space, maxl = (opts.compact and '' or ' '), (opts.maxlevel or math.huge)
      local iname, comm = '_'..(name or ''), opts.comment and (tonumber(opts.comment) or math.huge)
      local seen, sref, syms, symn = {}, {'local '..iname..'={}'}, {}, 0
      local function gensym(val) return '_'..(tostring(tostring(val)):gsub("[^%w]",""):gsub("(%d%w+)",
        -- tostring(val) is needed because __tostring may return a non-string value
        function(s) if not syms[s] then symn = symn+1; syms[s] = symn end return syms[s] end)) end
      local function safestr(s) return type(s) == "number" and (huge and snum[tostring(s)] or s)
        or type(s) ~= "string" and tostring(s) -- escape NEWLINE/010 and EOF/026
        or ("%q"):format(s):gsub("\010","n"):gsub("\026","\\026") end
      local function comment(s,l) return comm and (l or 0) < comm and ' --[['..tostring(s)..']]' or '' end
      local function globerr(s,l) return globals[s] and globals[s]..comment(s,l) or not fatal
        and safestr(select(2, pcall(tostring, s))) or error("Can't serialize "..tostring(s)) end
      local function safename(path, name) -- generates foo.bar, foo[3], or foo['b a r']
        local n = name == nil and '' or name
        local plain = type(n) == "string" and n:match("^[%l%u_][%w_]*$") and not keyword[n]
        local safe = plain and n or '['..safestr(n)..']'
        return (path or '')..(plain and path and '.' or '')..safe, safe end
      local alphanumsort = type(opts.sortkeys) == 'function' and opts.sortkeys or function(k, o, n) -- k=keys, o=originaltable, n=padding
        local maxn, to = tonumber(n) or 12, {number = 'a', string = 'b'}
        local function padnum(d) return ("%0"..maxn.."d"):format(d) end
        table.sort(k, function(a,b)
          -- sort numeric keys first: k[key] is not nil for numerical keys
          return (k[a] ~= nil and 0 or to[type(a)] or 'z')..(tostring(a):gsub("%d+",padnum))
               < (k[b] ~= nil and 0 or to[type(b)] or 'z')..(tostring(b):gsub("%d+",padnum)) end) end
      local function val2str(t, name, indent, insref, path, plainindex, level)
        local ttype, level, mt = type(t), (level or 0), getmetatable(t)
        local spath, sname = safename(path, name)
        local tag = plainindex and
          ((type(name) == "number") and '' or name..space..'='..space) or
          (name ~= nil and sname..space..'='..space or '')
        if seen[t] then -- already seen this element
          sref[#sref+1] = spath..space..'='..space..seen[t]
          return tag..'nil'..comment('ref', level) end
        if type(mt) == 'table' and (mt.__serialize or mt.__tostring) then -- knows how to serialize itself
          seen[t] = insref or spath
          if mt.__serialize then t = mt.__serialize(t) else t = tostring(t) end
          ttype = type(t) end -- new value falls through to be serialized
        if ttype == "table" then
          if level >= maxl then return tag..'{}'..comment('max', level) end
          seen[t] = insref or spath
          if next(t) == nil then return tag..'{}'..comment(t, level) end -- table empty
          local maxn, o, out = math.min(#t, maxnum or #t), {}, {}
          for key = 1, maxn do o[key] = key end
          if not maxnum or #o < maxnum then
            local n = #o -- n = n + 1; o[n] is much faster than o[#o+1] on large tables
            for key in pairs(t) do if o[key] ~= key then n = n + 1; o[n] = key end end end
          if maxnum and #o > maxnum then o[maxnum+1] = nil end
          if opts.sortkeys and #o > maxn then alphanumsort(o, t, opts.sortkeys) end
          local sparse = sparse and #o > maxn -- disable sparsness if only numeric keys (shorter output)
          for n, key in ipairs(o) do
            local value, ktype, plainindex = t[key], type(key), n <= maxn and not sparse
            if opts.valignore and opts.valignore[value] -- skip ignored values; do nothing
            or opts.keyallow and not opts.keyallow[key]