mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Simpler metatable pre-processing
It was too difficult to describe what it did.
This commit is contained in:
parent
8d941e5d0f
commit
e0a16c75dc
2 changed files with 20 additions and 14 deletions
|
@ -139,25 +139,23 @@ local function new(opt)
|
|||
end
|
||||
|
||||
o[t] = true;
|
||||
if freeze then
|
||||
|
||||
if freeze == true then
|
||||
-- opportunity to do pre-serialization
|
||||
local mt = getmetatable(t);
|
||||
local fr = (type(freeze) == "table" and freeze[mt]);
|
||||
local mf = mt and mt.__freeze;
|
||||
local tag;
|
||||
if type(fr) == "string" then
|
||||
tag = fr;
|
||||
fr = mf;
|
||||
elseif mt then
|
||||
tag = mt.__type;
|
||||
end
|
||||
if type(fr) == "function" then
|
||||
t = fr(t);
|
||||
if type(tag) == "string" then
|
||||
o[l], l = tag, l + 1;
|
||||
if type(mt) == "table" then
|
||||
local tag = mt.__name;
|
||||
local fr = mt.__freeze;
|
||||
|
||||
if type(fr) == "function" then
|
||||
t = fr(t);
|
||||
if type(tag) == "string" then
|
||||
o[l], l = tag, l + 1;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
o[l], l = tstart, l + 1;
|
||||
local indent = s_rep(indentwith, d);
|
||||
local numkey = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue