mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.json: Optimize long string parsing.
This commit is contained in:
parent
f10d012d24
commit
8098be4eb1
1 changed files with 5 additions and 5 deletions
|
@ -258,16 +258,16 @@ function json.decode(json)
|
|||
return val;
|
||||
end
|
||||
local function readstring()
|
||||
local s = "";
|
||||
local s = {};
|
||||
checkandskip("\"");
|
||||
while ch do
|
||||
while ch and ch ~= "\\" and ch ~= "\"" do
|
||||
s = s..ch; next();
|
||||
t_insert(s, ch); next();
|
||||
end
|
||||
if ch == "\\" then
|
||||
next();
|
||||
if unescapes[ch] then
|
||||
s = s..unescapes[ch];
|
||||
t_insert(s, unescapes[ch]);
|
||||
next();
|
||||
elseif ch == "u" then
|
||||
local seq = "";
|
||||
|
@ -277,13 +277,13 @@ function json.decode(json)
|
|||
if not ch:match("[0-9a-fA-F]") then error("invalid unicode escape sequence in string"); end
|
||||
seq = seq..ch;
|
||||
end
|
||||
s = s..codepoint_to_utf8(tonumber(seq, 16));
|
||||
t_insert(s, codepoint_to_utf8(tonumber(seq, 16)));
|
||||
next();
|
||||
else error("invalid escape sequence in string"); end
|
||||
end
|
||||
if ch == "\"" then
|
||||
next();
|
||||
return s;
|
||||
return t_concat(s);
|
||||
end
|
||||
end
|
||||
error("eof while reading string");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue