mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.serialization: Concise output for empty tables.
This commit is contained in:
parent
3f95c8572c
commit
8d13f90bed
1 changed files with 18 additions and 13 deletions
|
@ -13,6 +13,7 @@ local t_insert = table.insert;
|
|||
local t_concat = table.concat;
|
||||
local error = error;
|
||||
local pairs = pairs;
|
||||
local next = next;
|
||||
|
||||
local debug_traceback = debug.traceback;
|
||||
local log = require "util.logger".init("serialization");
|
||||
|
@ -34,6 +35,7 @@ local function _simplesave(o, ind, t, func)
|
|||
elseif type(o) == "string" then
|
||||
func(t, (("%q"):format(o):gsub("\\\n", "\\n")));
|
||||
elseif type(o) == "table" then
|
||||
if next(o) then
|
||||
func(t, "{\n");
|
||||
for k,v in pairs(o) do
|
||||
func(t, indent(ind));
|
||||
|
@ -49,6 +51,9 @@ local function _simplesave(o, ind, t, func)
|
|||
end
|
||||
func(t, indent(ind-1));
|
||||
func(t, "}");
|
||||
else
|
||||
func(t, "{}");
|
||||
end
|
||||
elseif type(o) == "boolean" then
|
||||
func(t, (o and "true" or "false"));
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue