mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
util.serialization: Optimize handling of last table separator
Fewer next() calls and a step towards allowing use of a different iterator.
This commit is contained in:
parent
62f33cd891
commit
cffb6e6e7b
1 changed files with 5 additions and 7 deletions
|
@ -163,7 +163,9 @@ local function new(opt)
|
||||||
local indent = s_rep(indentwith, d);
|
local indent = s_rep(indentwith, d);
|
||||||
local numkey = 1;
|
local numkey = 1;
|
||||||
local ktyp, vtyp;
|
local ktyp, vtyp;
|
||||||
|
local had_items = false;
|
||||||
for k,v in next,t do
|
for k,v in next,t do
|
||||||
|
had_items = true;
|
||||||
o[l], l = itemstart, l + 1;
|
o[l], l = itemstart, l + 1;
|
||||||
o[l], l = indent, l + 1;
|
o[l], l = indent, l + 1;
|
||||||
ktyp, vtyp = type(k), type(v);
|
ktyp, vtyp = type(k), type(v);
|
||||||
|
@ -194,14 +196,10 @@ local function new(opt)
|
||||||
else
|
else
|
||||||
o[l], l = ser(v), l + 1;
|
o[l], l = ser(v), l + 1;
|
||||||
end
|
end
|
||||||
-- last item?
|
o[l], l = itemsep, l + 1;
|
||||||
if next(t, k) ~= nil then
|
|
||||||
o[l], l = itemsep, l + 1;
|
|
||||||
else
|
|
||||||
o[l], l = itemlast, l + 1;
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
if next(t) ~= nil then
|
if had_items then
|
||||||
|
o[l - 1] = itemlast;
|
||||||
o[l], l = s_rep(indentwith, d-1), l + 1;
|
o[l], l = s_rep(indentwith, d-1), l + 1;
|
||||||
end
|
end
|
||||||
o[l], l = tend, l +1;
|
o[l], l = tend, l +1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue