2022-10-02 14:18:16 +02:00
|
|
|
-- Lua module to serialize values as Lua code
|
|
|
|
|
|
|
|
local assert, error, rawget, pairs, pcall, type, setfenv, setmetatable, select, loadstring, loadfile
|
|
|
|
= assert, error, rawget, pairs, pcall, type, setfenv, setmetatable, select, loadstring, loadfile
|
|
|
|
|
|
|
|
local table_concat, string_format, math_huge
|
|
|
|
= table.concat, string.format, math.huge
|
2021-07-07 17:32:33 +02:00
|
|
|
|
|
|
|
local count_objects = modlib.table.count_objects
|
2021-12-30 17:12:51 +01:00
|
|
|
local is_identifier = modlib.text.is_identifier
|
2021-07-06 21:56:20 +02:00
|
|
|
|
|
|
|
local function quote(string)
|
2021-07-14 11:51:47 +02:00
|
|
|
return string_format("%q", string)
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local _ENV = {}
|
|
|
|
setfenv(1, _ENV)
|
2021-07-08 13:28:11 +02:00
|
|
|
local metatable = {__index = _ENV}
|
|
|
|
_ENV.metatable = metatable
|
2021-07-06 21:56:20 +02:00
|
|
|
|
2021-07-08 13:28:11 +02:00
|
|
|
function new(self)
|
2021-07-14 11:51:47 +02:00
|
|
|
return setmetatable(self, metatable)
|
2021-07-08 13:28:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function aux_write(_self, _object)
|
2021-07-14 11:51:47 +02:00
|
|
|
-- returns reader, arguments
|
|
|
|
return
|
2021-07-08 13:28:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
aux_read = {}
|
|
|
|
|
|
|
|
function write(self, value, write)
|
2022-10-02 14:18:16 +02:00
|
|
|
-- TODO evaluate custom aux. writers *before* writing for circular structs
|
|
|
|
local reference, refnum = "1", 1
|
|
|
|
-- [object] = reference
|
2021-07-14 11:51:47 +02:00
|
|
|
local references = {}
|
2022-10-02 14:18:16 +02:00
|
|
|
-- Circular tables that must be filled using `table[key] = value` statements
|
2021-07-14 11:51:47 +02:00
|
|
|
local to_fill = {}
|
2022-10-02 14:18:16 +02:00
|
|
|
|
|
|
|
-- TODO (?) sort objects by count, give frequently referenced objects shorter references
|
2021-07-14 11:51:47 +02:00
|
|
|
for object, count in pairs(count_objects(value)) do
|
|
|
|
local type_ = type(object)
|
2022-10-02 14:18:16 +02:00
|
|
|
-- Object must appear more than once. If it is a string, the reference has to be shorter than the string.
|
|
|
|
if count >= 2 and (type_ ~= "string" or #reference + 5 < #object) then
|
|
|
|
if refnum == 1 then
|
|
|
|
write"local _={};" -- initialize reference table
|
|
|
|
end
|
|
|
|
write"_["
|
|
|
|
write(reference)
|
|
|
|
write"]="
|
|
|
|
if type_ == "table" then
|
|
|
|
write"{}"
|
|
|
|
elseif type_ == "string" then
|
|
|
|
write(quote(object))
|
|
|
|
end
|
2021-07-14 11:51:47 +02:00
|
|
|
write";"
|
2022-10-02 14:18:16 +02:00
|
|
|
references[object] = reference
|
2021-07-14 11:51:47 +02:00
|
|
|
if type_ == "table" then
|
2022-10-02 14:18:16 +02:00
|
|
|
to_fill[object] = reference
|
2021-07-14 11:51:47 +02:00
|
|
|
end
|
2022-10-02 14:18:16 +02:00
|
|
|
refnum = refnum + 1
|
|
|
|
reference = string_format("%d", refnum)
|
2021-07-14 11:51:47 +02:00
|
|
|
end
|
|
|
|
end
|
2022-10-02 14:18:16 +02:00
|
|
|
-- Used to decide whether we should do "key=..."
|
|
|
|
local function use_short_key(key)
|
2021-12-30 17:12:51 +01:00
|
|
|
return not references[key] and type(key) == "string" and is_identifier(key)
|
2021-07-14 11:51:47 +02:00
|
|
|
end
|
|
|
|
local function dump(value)
|
|
|
|
-- Primitive types
|
|
|
|
if value == nil then
|
|
|
|
return write"nil"
|
2022-10-02 14:18:16 +02:00
|
|
|
end if value == true then
|
2021-07-14 11:51:47 +02:00
|
|
|
return write"true"
|
2022-10-02 14:18:16 +02:00
|
|
|
end if value == false then
|
2021-07-14 11:51:47 +02:00
|
|
|
return write"false"
|
|
|
|
end
|
|
|
|
local type_ = type(value)
|
|
|
|
if type_ == "number" then
|
2022-10-02 14:18:16 +02:00
|
|
|
-- Explicit handling of special values for forwards compatibility
|
|
|
|
if value ~= value then -- nan
|
|
|
|
return write"0/0"
|
|
|
|
end if value == math_huge then
|
|
|
|
return write"1/0"
|
|
|
|
end if value == -math_huge then
|
|
|
|
return write"-1/0"
|
|
|
|
end
|
2021-07-14 11:51:47 +02:00
|
|
|
return write(string_format("%.17g", value))
|
|
|
|
end
|
|
|
|
-- Reference types: table and string
|
|
|
|
local ref = references[value]
|
|
|
|
if ref then
|
|
|
|
-- Referenced
|
2022-10-02 14:18:16 +02:00
|
|
|
write"_["
|
|
|
|
write(ref)
|
|
|
|
return write"]"
|
|
|
|
end if type_ == "string" then
|
2021-07-14 11:51:47 +02:00
|
|
|
return write(quote(value))
|
2022-10-02 14:18:16 +02:00
|
|
|
end if type_ == "table" then
|
2021-07-14 11:51:47 +02:00
|
|
|
write"{"
|
2022-10-02 14:18:16 +02:00
|
|
|
-- First write list keys:
|
|
|
|
-- Don't use the table length #value here as it may horribly fail
|
|
|
|
-- for tables which use large integers as keys in the hash part;
|
|
|
|
-- stop at the first "hole" (nil value) instead
|
|
|
|
local len = 0
|
|
|
|
local first = true -- whether this is the first entry, which may not have a leading comma
|
|
|
|
while true do
|
|
|
|
local v = rawget(value, len + 1) -- use rawget to avoid metatables like the vector metatable
|
|
|
|
if v == nil then break end
|
|
|
|
if first then first = false else write(",") end
|
|
|
|
dump(v)
|
|
|
|
len = len + 1
|
2021-07-14 11:51:47 +02:00
|
|
|
end
|
2022-10-02 14:18:16 +02:00
|
|
|
-- Now write map keys ([key] = value)
|
|
|
|
for k, v in pairs(value) do
|
|
|
|
-- We have written all non-float keys in [1, len] already
|
2021-07-14 11:51:47 +02:00
|
|
|
if type(k) ~= "number" or k % 1 ~= 0 or k < 1 or k > len then
|
2022-10-02 14:18:16 +02:00
|
|
|
if first then first = false else write(",") end
|
|
|
|
if use_short_key(k) then
|
2021-07-14 11:51:47 +02:00
|
|
|
write(k)
|
|
|
|
else
|
|
|
|
write"["
|
|
|
|
dump(k)
|
|
|
|
write"]"
|
|
|
|
end
|
|
|
|
write"="
|
|
|
|
dump(v)
|
|
|
|
end
|
|
|
|
end
|
2022-10-02 14:18:16 +02:00
|
|
|
return write"}"
|
2021-07-14 11:51:47 +02:00
|
|
|
end
|
2022-10-02 14:18:16 +02:00
|
|
|
-- TODO move aux_write to start, to allow dealing with metatables etc.?
|
|
|
|
return (function(func, ...)
|
|
|
|
-- functions are the only way to deal with varargs
|
|
|
|
if not func then
|
|
|
|
return error("unsupported type: " .. type_)
|
|
|
|
end
|
|
|
|
write(func)
|
|
|
|
write"("
|
|
|
|
local n = select("#", ...)
|
|
|
|
for i = 1, n - 1 do
|
|
|
|
dump(select(i, ...))
|
|
|
|
write","
|
|
|
|
end
|
|
|
|
if n > 0 then
|
|
|
|
dump(select(n, ...))
|
|
|
|
end
|
|
|
|
write")"
|
|
|
|
end)(self:aux_write(value))
|
2021-07-14 11:51:47 +02:00
|
|
|
end
|
2022-10-02 14:18:16 +02:00
|
|
|
-- Write the statements to fill circular tables
|
2021-07-14 11:51:47 +02:00
|
|
|
for table, ref in pairs(to_fill) do
|
|
|
|
for k, v in pairs(table) do
|
2022-10-02 14:18:16 +02:00
|
|
|
write"_["
|
2021-07-14 11:51:47 +02:00
|
|
|
write(ref)
|
2022-10-02 14:18:16 +02:00
|
|
|
write"]"
|
|
|
|
if use_short_key(k) then
|
2021-07-14 11:51:47 +02:00
|
|
|
write"."
|
|
|
|
write(k)
|
|
|
|
else
|
|
|
|
write"["
|
|
|
|
dump(k)
|
|
|
|
write"]"
|
|
|
|
end
|
|
|
|
write"="
|
|
|
|
dump(v)
|
|
|
|
write";"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
write"return "
|
|
|
|
dump(value)
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
2021-07-08 13:28:11 +02:00
|
|
|
function write_file(self, value, file)
|
2021-07-14 11:51:47 +02:00
|
|
|
return self:write(value, function(text)
|
|
|
|
file:write(text)
|
|
|
|
end)
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
2021-07-08 13:28:11 +02:00
|
|
|
function write_string(self, value)
|
2021-07-14 11:51:47 +02:00
|
|
|
local rope = {}
|
|
|
|
self:write(value, function(text)
|
2022-10-02 14:18:16 +02:00
|
|
|
rope[#rope + 1] = text
|
2021-07-14 11:51:47 +02:00
|
|
|
end)
|
|
|
|
return table_concat(rope)
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
2021-07-08 13:28:11 +02:00
|
|
|
function read(self, ...)
|
2021-07-06 21:56:20 +02:00
|
|
|
local read = assert(...)
|
2022-10-02 14:18:16 +02:00
|
|
|
-- math.huge was serialized to inf, 0/0 was serialized to -nan by `%.17g`
|
2021-07-08 13:28:11 +02:00
|
|
|
setfenv(read, setmetatable({inf = math_huge, nan = 0/0}, {__index = self.aux_read}))
|
2021-07-06 21:56:20 +02:00
|
|
|
local success, value_or_err = pcall(read)
|
2021-07-14 11:51:47 +02:00
|
|
|
if success then
|
|
|
|
return value_or_err
|
|
|
|
end
|
|
|
|
return nil, value_or_err
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
2021-07-08 13:28:11 +02:00
|
|
|
function read_file(self, path)
|
2021-07-14 11:51:47 +02:00
|
|
|
return self:read(loadfile(path))
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
2021-07-08 13:28:11 +02:00
|
|
|
function read_string(self, string)
|
2021-07-14 11:51:47 +02:00
|
|
|
return self:read(loadstring(string))
|
2021-07-06 21:56:20 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return _ENV
|