18
18
-- compat-5.1 if using Lua 5.0
19
19
--
20
20
-- CHANGELOG
21
- -- 0.9.20 Introduction of local Lua functions for private functions (removed _ function prefix).
21
+ -- 0.9.20 Introduction of local Lua functions for private functions (removed _ function prefix).
22
22
-- Fixed Lua 5.1 compatibility issues.
23
23
-- Introduced json.null to have null values in associative arrays.
24
24
-- json.encode() performance improvement (more than 50%) through table.concat rather than ..
@@ -39,8 +39,8 @@ local table = require("table")
39
39
local json = {} -- Public namespace
40
40
local json_private = {} -- Private namespace
41
41
42
- -- Public constants
43
- json .EMPTY_ARRAY = {}
42
+ -- Public constants
43
+ json .EMPTY_ARRAY = {}
44
44
json .EMPTY_OBJECT = {}
45
45
46
46
-- Public functions
@@ -68,19 +68,19 @@ function json.encode (v)
68
68
if v == nil then
69
69
return " null"
70
70
end
71
-
71
+
72
72
local vtype = type (v )
73
73
74
74
-- Handle strings
75
- if vtype == ' string' then
75
+ if vtype == ' string' then
76
76
return ' "' .. json_private .encodeString (v ) .. ' "' -- Need to handle encoding in string
77
77
end
78
-
78
+
79
79
-- Handle booleans
80
80
if vtype == ' number' or vtype == ' boolean' then
81
81
return tostring (v )
82
82
end
83
-
83
+
84
84
-- Handle tables
85
85
if vtype == ' table' then
86
86
local rval = {}
@@ -103,12 +103,12 @@ function json.encode (v)
103
103
return ' {' .. table.concat (rval ,' ,' ) .. ' }'
104
104
end
105
105
end
106
-
106
+
107
107
-- Handle null values
108
108
if vtype == ' function' and v == json .null then
109
109
return ' null'
110
110
end
111
-
111
+
112
112
assert (false ,' encode attempt to encode unsupported type ' .. vtype .. ' :' .. tostring (v ))
113
113
end
114
114
@@ -175,7 +175,11 @@ function decode_scanArray(s,startPos)
175
175
assert (startPos <= stringLen ,' JSON String ended unexpectedly scanning array.' )
176
176
local curChar = string.sub (s ,startPos ,startPos )
177
177
if (curChar == ' ]' ) then
178
- return array , startPos + 1
178
+ if # array == 0 then
179
+ return json .EMPTY_ARRAY , startPos + 1
180
+ else
181
+ return array , startPos + 1
182
+ end
179
183
end
180
184
if (curChar == ' ,' ) then
181
185
startPos = decode_scanWhitespace (s ,startPos + 1 )
@@ -194,14 +198,14 @@ function decode_scanComment(s, startPos)
194
198
assert ( string.sub (s ,startPos ,startPos + 1 )== ' /*' , " decode_scanComment called but comment does not start at position " .. startPos )
195
199
local endPos = string.find (s ,' */' ,startPos + 2 )
196
200
assert (endPos ~= nil , " Unterminated comment in string at " .. startPos )
197
- return endPos + 2
201
+ return endPos + 2
198
202
end
199
203
200
204
--- Scans for given constants: true, false or null
201
205
-- Returns the appropriate Lua type, and the position of the next character to read.
202
206
-- @param s The string being scanned.
203
207
-- @param startPos The position in the string at which to start scanning.
204
- -- @return object, int The object (true, false or nil) and the position at which the next character should be
208
+ -- @return object, int The object (true, false or nil) and the position at which the next character should be
205
209
-- scanned.
206
210
function decode_scanConstant (s , startPos )
207
211
local consts = { [" true" ] = true , [" false" ] = false , [" null" ] = nil }
368
372
local escapeList = {
369
373
[' "' ] = ' \\ "' ,
370
374
[' \\ ' ] = ' \\\\ ' ,
371
- [' /' ] = ' \\ /' ,
375
+ [' /' ] = ' \\ /' ,
372
376
[' \b ' ] = ' \\ b' ,
373
377
[' \f ' ] = ' \\ f' ,
374
378
[' \n ' ] = ' \\ n' ,
@@ -388,16 +392,16 @@ end
388
392
-- @param t The table to evaluate as an array
389
393
-- @return boolean, number True if the table can be represented as an array, false otherwise. If true,
390
394
-- the second returned value is the maximum
391
- -- number of indexed elements in the array.
395
+ -- number of indexed elements in the array.
392
396
function json .isArray (t )
393
- -- Next we count all the elements, ensuring that any non-indexed elements are not-encodable
397
+ -- Next we count all the elements, ensuring that any non-indexed elements are not-encodable
394
398
-- (with the possible exception of 'n')
395
- if (t == json .EMPTY_ARRAY ) then return true , 0 end
399
+ if (t == json .EMPTY_ARRAY ) then return true , 0 end
396
400
if (t == json .EMPTY_OBJECT ) then return false end
397
401
-- by default empty objects should be json object
398
402
if (type (t )~= ' table' ) then return false end
399
403
if next (t ) == nil then return false end
400
-
404
+
401
405
local maxIndex = 0
402
406
for k ,v in pairs (t ) do
403
407
if (type (k )== ' number' and math.floor (k )== k and 1 <= k ) then -- k,v is an indexed pair
421
425
-- @return boolean True if the object should be JSON encoded, false if it should be ignored.
422
426
function isEncodable (o )
423
427
local t = type (o )
424
- return (t == ' string' or t == ' boolean' or t == ' number' or t == ' nil' or t == ' table' ) or (t == ' function' and o == json .null )
428
+ return (t == ' string' or t == ' boolean' or t == ' number' or t == ' nil' or t == ' table' ) or (t == ' function' and o == json .null )
425
429
end
426
430
427
431
return json
0 commit comments