Skip to content

Commit 191838f

Browse files
committed
Fix empty arrays handling
1 parent 6095711 commit 191838f

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

json/json.lua

+22-18
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
-- compat-5.1 if using Lua 5.0
1919
--
2020
-- 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).
2222
-- Fixed Lua 5.1 compatibility issues.
2323
-- Introduced json.null to have null values in associative arrays.
2424
-- json.encode() performance improvement (more than 50%) through table.concat rather than ..
@@ -39,8 +39,8 @@ local table = require("table")
3939
local json = {} -- Public namespace
4040
local json_private = {} -- Private namespace
4141

42-
-- Public constants
43-
json.EMPTY_ARRAY={}
42+
-- Public constants
43+
json.EMPTY_ARRAY={}
4444
json.EMPTY_OBJECT={}
4545

4646
-- Public functions
@@ -68,19 +68,19 @@ function json.encode (v)
6868
if v==nil then
6969
return "null"
7070
end
71-
71+
7272
local vtype = type(v)
7373

7474
-- Handle strings
75-
if vtype=='string' then
75+
if vtype=='string' then
7676
return '"' .. json_private.encodeString(v) .. '"' -- Need to handle encoding in string
7777
end
78-
78+
7979
-- Handle booleans
8080
if vtype=='number' or vtype=='boolean' then
8181
return tostring(v)
8282
end
83-
83+
8484
-- Handle tables
8585
if vtype=='table' then
8686
local rval = {}
@@ -103,12 +103,12 @@ function json.encode (v)
103103
return '{' .. table.concat(rval,',') .. '}'
104104
end
105105
end
106-
106+
107107
-- Handle null values
108108
if vtype=='function' and v==json.null then
109109
return 'null'
110110
end
111-
111+
112112
assert(false,'encode attempt to encode unsupported type ' .. vtype .. ':' .. tostring(v))
113113
end
114114

@@ -175,7 +175,11 @@ function decode_scanArray(s,startPos)
175175
assert(startPos<=stringLen,'JSON String ended unexpectedly scanning array.')
176176
local curChar = string.sub(s,startPos,startPos)
177177
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
179183
end
180184
if (curChar==',') then
181185
startPos = decode_scanWhitespace(s,startPos+1)
@@ -194,14 +198,14 @@ function decode_scanComment(s, startPos)
194198
assert( string.sub(s,startPos,startPos+1)=='/*', "decode_scanComment called but comment does not start at position " .. startPos)
195199
local endPos = string.find(s,'*/',startPos+2)
196200
assert(endPos~=nil, "Unterminated comment in string at " .. startPos)
197-
return endPos+2
201+
return endPos+2
198202
end
199203

200204
--- Scans for given constants: true, false or null
201205
-- Returns the appropriate Lua type, and the position of the next character to read.
202206
-- @param s The string being scanned.
203207
-- @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
205209
-- scanned.
206210
function decode_scanConstant(s, startPos)
207211
local consts = { ["true"] = true, ["false"] = false, ["null"] = nil }
@@ -368,7 +372,7 @@ end
368372
local escapeList = {
369373
['"'] = '\\"',
370374
['\\'] = '\\\\',
371-
['/'] = '\\/',
375+
['/'] = '\\/',
372376
['\b'] = '\\b',
373377
['\f'] = '\\f',
374378
['\n'] = '\\n',
@@ -388,16 +392,16 @@ end
388392
-- @param t The table to evaluate as an array
389393
-- @return boolean, number True if the table can be represented as an array, false otherwise. If true,
390394
-- the second returned value is the maximum
391-
-- number of indexed elements in the array.
395+
-- number of indexed elements in the array.
392396
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
394398
-- (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
396400
if (t == json.EMPTY_OBJECT) then return false end
397401
-- by default empty objects should be json object
398402
if (type(t)~='table') then return false end
399403
if next (t) == nil then return false end
400-
404+
401405
local maxIndex = 0
402406
for k,v in pairs(t) do
403407
if (type(k)=='number' and math.floor(k)==k and 1<=k) then -- k,v is an indexed pair
@@ -421,7 +425,7 @@ end
421425
-- @return boolean True if the object should be JSON encoded, false if it should be ignored.
422426
function isEncodable(o)
423427
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)
425429
end
426430

427431
return json

0 commit comments

Comments
 (0)