summaryrefslogtreecommitdiff
path: root/xmake/core/base/serialize.lua
blob: f5e078da0753846bc58ccde49d3b7ef6c8c11488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412

--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
--     http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015 - 2019, TBOOX Open Source Group.
--
-- @author      OpportunityLiu
-- @file        serialize.lua
--

-- define module: serialize
local serialize = serialize or {}

-- load modules
local math      = require("base/math")
local table     = require("base/table")

-- save original interfaces
serialize._dump = serialize._dump or string._dump or string.dump

function serialize._createstub(resolver, env, ...)
    env.has_stub = true
    local params = table.pack(...)
    return function(root, fenv)
        return resolver(root, fenv, table.unpack(params, 1, params.n))
    end
end

function serialize._resolvestub(object, root, fenv)
    if type(object) == "function" then
        local ok, result, errors = pcall(object, root, fenv)
        if ok and errors == nil then
            return result
        end
        return nil, errors or result or "unspecified error"
    end
    if type(object) ~= "table" then
        return object
    end

    for k, v in pairs(object) do
        local result, errors = serialize._resolvestub(v, root, fenv)
        if errors ~= nil then
            return nil, errors
        end
        object[k] = result
    end
    return object
end

function serialize._makestring(str, opt)
    return string.format("%q", str)
end

function serialize._makedefault(val, opt)
    return tostring(val)
end

function serialize._maketable(object, opt, level, path, reftab)

    level = level or 0
    reftab = reftab or {}
    path = path or {}
    reftab[object] = table.copy(path)

    -- serialize child items
    local childlevel = level + 1
    local serialized = {}
    local numidxcount = 0
    local isarr = true
    local maxn = 0
    for k, v in pairs(object) do
        -- check key
        if type(k) == "number" then
            -- only checks when it may be an array
            if isarr then
                numidxcount = numidxcount + 1
                if k < 1 or not math.isint(k) then
                    isarr = false
                elseif k > maxn then
                    maxn = k
                end
            end
        elseif type(k) == "string" then
            isarr = false
        else
            return nil, string.format("cannot serialize table with key of %s: <%s>", type(k), k)
        end

        -- serialize value
        local sval, err
        if type(v) == "table" then
            if reftab[v] then
                sval, err = serialize._makeref(reftab[v], opt)
            else
                table.insert(path, k)
                sval, err = serialize._maketable(v, opt, childlevel, path, reftab)
                table.remove(path)
            end
        else
            sval, err = serialize._make(v, opt)
        end
        if err ~= nil then
            return nil, err
        end
        serialized[k] = sval
    end

    -- too sparse
    if numidxcount * 2 < maxn then
        isarr = false
    end

    -- make indent
    local indent = ""
    if opt.indent then
        indent = string.rep(opt.indent, level)
    end

    -- make head
    local headstr = opt.indent and ("{\n" .. indent .. opt.indent)  or "{"

    -- make tail
    local tailstr
    if opt.indent then
        tailstr = "\n" .. indent .. "}"
    else
        tailstr = "}"
    end

    -- make body
    local bodystrs = {}
    if isarr then
        for i = 1, maxn do
            bodystrs[i] = serialized[i] or "nil"
        end
    else
        local con = opt.indent and " = " or "="
        for k, v in pairs(serialized) do
            -- serialize key
            if type(k) == "string" then
                if not k:match("^[%a_][%w_]*$") then
                    k = string.format("[%q]", k)
                end
            else -- type(k) == "number"
                local nval, err = serialize._makedefault(k, opt, childlevel)
                if err ~= nil then
                    return nil, err
                end
                k = string.format("[%s]", nval)
            end
            -- concat k = v
            table.insert(bodystrs, k .. con .. v)
        end
    end

    if #bodystrs == 0 then
        return opt.indent and "{ }" or "{}"
    end
    return headstr .. table.concat(bodystrs, opt.indent and (",\n" .. indent .. opt.indent) or ",") .. tailstr
end

function serialize._makefunction(func, opt)
    local ok, funccode = pcall(serialize._dump, func, opt.strip)
    if not ok then
        return nil, string.format("%s: <%s>", funccode, func)
    end
    return string.format("func%q", funccode)
end

function serialize._resolvefunction(root, fenv, funccode)
    -- check
    if type(funccode) ~= "string" then
        return nil, "func should called with a string"
    end

    -- resolve funccode
    local func, err = load(funccode, "=(deserialized code)", "b", fenv)
    if err ~= nil then
        return nil, err
    end

    -- try restore upvalues
    if fenv then
        for i = 1, math.huge do
            local upname = debug.getupvalue(func, i)
            if upname == nil or upname == "" then
                break
            end
            debug.setupvalue(func, i, fenv[upname])
        end
    end
    return func
end

function serialize._makeref(path, opt)

    -- root reference
    if path[1] == nil then
        return "ref()"
    end

    local ppath = {}
    for i, v in ipairs(path) do
        ppath[i] = serialize._make(v, opt)
    end

    return "ref(" .. table.concat(ppath, opt.indent and ", " or ",") .. ")"
end

function serialize._resolveref(root, fenv, ...)
    local pos = root
    for i, v in ipairs({...}) do
        if type(v) ~= "string" and type(v) ~= "number" then
            return nil, "path segments in ref should be string or number"
        end
        if type(pos) ~= "table" then
            return nil, "unable to resolve path: <root>." .. table.concat(path, ".", 1, i - 1) .. " is " .. tostring(pos)
        end
        pos = pos[v]
    end
    return pos
end

-- make string with the level
function serialize._make(object, opt)

    -- call make* by type
    if type(object) == "string" then
        return serialize._makestring(object, opt)
    elseif type(object) == "boolean" or type(object) == "nil" or type(object) == "number" then
        return serialize._makedefault(object, opt)
    elseif type(object) == "table" then
        return serialize._maketable(object, opt)
    elseif type(object) == "function" then
        return serialize._makefunction(object, opt)
    else
        return nil, string.format("cannot serialize %s: <%s>", type(object), object)
    end
end

-- serialize to string from the given object
--
-- @param opt           serialize options
--
-- @return              string, errors
--
function serialize.save(object, opt)

    -- init options
    if opt == true then
        opt = { strip = true, binary = false, indent = false }
    elseif not opt then
        opt = {}
    end

    if opt.strip == nil then opt.strip = false end
    if opt.binary == nil then opt.binary = false end
    if opt.indent == nil then opt.indent = true end

    -- init indent, from nil, boolean, number or string to false or string
    if not opt.indent then
        -- no indent
        opt.indent = false
    elseif type(opt.indent) == "boolean" then -- true
        -- 4 spaces
        opt.indent = "    "
    elseif type(opt.indent) == "number" then
        if opt.indent < 0 then
            opt.indent = false
        elseif opt.indent > 20 then
            return nil, "invalid opt.indent, too large"
        else
            -- opt.indent spaces
            opt.indent = string.rep(" ", opt.indent)
        end
    elseif type(opt.indent) == "string" then
        -- only whitespaces allowed
        if not opt.indent:match("^%s+$") then
            return nil, "invalid opt.indent, only whitespaces are accepted"
        end
    else
        return nil, "invalid opt.indent, should be boolean, number or string"
    end

    -- make string
    local ok, result, errors = pcall(serialize._make, object, opt)
    if not ok then
        errors = "cannot serialize: " .. result
    end

    -- ok?
    if errors ~= nil then
        return nil, errors
    end

    if not opt.binary then
        return result
    end

    -- binary mode
    local func, lerr = loadstring("return " .. result)
    if lerr ~= nil then
        return nil, lerr
    end

    local dump, derr = serialize._dump(func, true)
    if derr ~= nil then
        return nil, derr
    end

    -- return shorter representation
    return (#dump < #result) and dump or result
end

function serialize._createenv()

    -- init env
    local env = { nan = math.nan, inf = math.huge }

    -- resolve reference
    function env.ref(...)
        -- load ref
        return serialize._createstub(serialize._resolveref, env, ...)
    end

    -- load function
    function env.func(...)
        -- load func
        return serialize._createstub(serialize._resolvefunction, env, ...)
    end

    -- return new env
    return env
end

-- load table from string in table
function serialize._load(str)

    -- load table as script
    local result = nil
    local binary = str:startswith("\27LJ")
    if not binary then
        str = "return " .. str
    end

    -- load string
    local env = serialize._createenv()
    local script, errors = load(str, "=(deserializing data)", binary and "b" or "t", env)
    if script then
        -- load object
        local ok, object = pcall(script)
        if ok then
            result = object
            if env.has_stub then
                local fenv = debug.getfenv(debug.getinfo(3, "f").func)
                result, errors = serialize._resolvestub(result, result, fenv)
            end
        else
            -- error
            errors = tostring(object)
        end
    end

    if errors then
        local data
        if binary then
            data = "<binary data>"
        elseif #str > 30 then
            data = string.format("%q... ", str:sub(8, 27))
        else
            data = string.format("%q", str:sub(8))
        end
        -- error
        return nil, string.format("cannot deserialize %s: %s", data, errors)
    end

    return result
end

-- deserialize string to object
--
-- @param str           the serialized string
--
-- @return              object, errors
--
function serialize.load(str)

    -- check
    assert(str)

    -- load string
    local result, errors = serialize._load(str)
    if errors ~= nil then
        return nil, errors
    end
    return result
end

-- return module: serialize
return serialize