-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathdecoder.py
More file actions
269 lines (235 loc) · 8.07 KB
/
decoder.py
File metadata and controls
269 lines (235 loc) · 8.07 KB
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
"""
Implementation of JSONDecoder
"""
import re
from simplejson.scanner import Scanner, pattern
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
def _floatconstants():
import struct
import sys
_BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
if sys.byteorder != 'big':
# slicing not available in Python 2.2
#_BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
_BYTES = '000000000000f87f000000000000f07f'.decode('hex')
nan, inf = struct.unpack('dd', _BYTES)
return nan, inf, -inf
NaN, PosInf, NegInf = _floatconstants()
def linecol(doc, pos):
lineno = doc.count('\n', 0, pos) + 1
if lineno == 1:
colno = pos
else:
colno = pos - doc.rindex('\n', 0, pos)
return lineno, colno
def errmsg(msg, doc, pos, end=None):
lineno, colno = linecol(doc, pos)
if end is None:
return '%s: line %d column %d (char %d)' % (msg, lineno, colno, pos)
endlineno, endcolno = linecol(doc, end)
return '%s: line %d column %d - line %d column %d (char %d - %d)' % (
msg, lineno, colno, endlineno, endcolno, pos, end)
def JSONInfinity(match, context):
return PosInf, None
pattern('Infinity')(JSONInfinity)
def JSONNegInfinity(match, context):
return NegInf, None
pattern('-Infinity')(JSONNegInfinity)
def JSONNaN(match, context):
return NaN, None
pattern('NaN')(JSONNaN)
def JSONTrue(match, context):
return True, None
pattern('true')(JSONTrue)
def JSONFalse(match, context):
return False, None
pattern('false')(JSONFalse)
def JSONNull(match, context):
return None, None
pattern('null')(JSONNull)
def JSONNumber(match, context):
match = JSONNumber.regex.match(match.string, *match.span())
integer, frac, exp = match.groups()
if frac or exp:
res = float(integer + (frac or '') + (exp or ''))
else:
res = int(integer)
return res, None
pattern(r'(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?')(JSONNumber)
STRINGCHUNK = re.compile(r'("|\\|[^"\\]+)', FLAGS)
STRINGBACKSLASH = re.compile(r'([\\/bfnrt"]|u[A-Fa-f0-9]{4})', FLAGS)
BACKSLASH = {
'"': u'"', '\\': u'\\', '/': u'/',
'b': u'\b', 'f': u'\f', 'n': u'\n', 'r': u'\r', 't': u'\t',
}
DEFAULT_ENCODING = "utf-8"
def scanstring(s, end, encoding=None):
if encoding is None:
encoding = DEFAULT_ENCODING
chunks = []
while 1:
chunk = STRINGCHUNK.match(s, end)
end = chunk.end()
m = chunk.group(1)
if m == '"':
break
if m == '\\':
chunk = STRINGBACKSLASH.match(s, end)
if chunk is None:
raise ValueError(errmsg("Invalid \\escape", s, end))
end = chunk.end()
esc = chunk.group(1)
try:
m = BACKSLASH[esc]
except KeyError:
m = unichr(int(esc[1:], 16))
if not isinstance(m, unicode):
m = unicode(m, encoding)
chunks.append(m)
return u''.join(chunks), end
def JSONString(match, context):
encoding = getattr(context, 'encoding', None)
return scanstring(match.string, match.end(), encoding)
pattern(r'"')(JSONString)
WHITESPACE = re.compile(r'\s+', FLAGS)
def skipwhitespace(s, end):
m = WHITESPACE.match(s, end)
if m is not None:
return m.end()
return end
def JSONObject(match, context):
pairs = {}
s = match.string
end = skipwhitespace(s, match.end())
nextchar = s[end:end + 1]
# trivial empty object
if nextchar == '}':
return pairs, end + 1
if nextchar != '"':
raise ValueError(errmsg("Expecting property name", s, end))
end += 1
encoding = getattr(context, 'encoding', None)
while True:
key, end = scanstring(s, end, encoding)
end = skipwhitespace(s, end)
if s[end:end + 1] != ':':
raise ValueError(errmsg("Expecting : delimiter", s, end))
end = skipwhitespace(s, end + 1)
try:
value, end = JSONScanner.iterscan(s, idx=end).next()
except StopIteration:
raise ValueError(errmsg("Expecting object", s, end))
pairs[key] = value
end = skipwhitespace(s, end)
nextchar = s[end:end + 1]
end += 1
if nextchar == '}':
break
if nextchar != ',':
raise ValueError(errmsg("Expecting , delimiter", s, end - 1))
end = skipwhitespace(s, end)
nextchar = s[end:end + 1]
end += 1
if nextchar != '"':
raise ValueError(errmsg("Expecting property name", s, end - 1))
return pairs, end
pattern(r'{')(JSONObject)
def JSONArray(match, context):
values = []
s = match.string
end = skipwhitespace(s, match.end())
# look-ahead for trivial empty array
nextchar = s[end:end + 1]
if nextchar == ']':
return values, end + 1
while True:
try:
value, end = JSONScanner.iterscan(s, idx=end).next()
except StopIteration:
raise ValueError(errmsg("Expecting object", s, end))
values.append(value)
end = skipwhitespace(s, end)
nextchar = s[end:end + 1]
end += 1
if nextchar == ']':
break
if nextchar != ',':
raise ValueError(errmsg("Expecting , delimiter", s, end))
end = skipwhitespace(s, end)
return values, end
pattern(r'\[')(JSONArray)
ANYTHING = [
JSONTrue,
JSONFalse,
JSONNull,
JSONNaN,
JSONInfinity,
JSONNegInfinity,
JSONNumber,
JSONString,
JSONArray,
JSONObject,
]
JSONScanner = Scanner(ANYTHING)
class JSONDecoder(object):
"""
Simple JSON <http://json.org> decoder
Performs the following translations in decoding:
+---------------+-------------------+
| JSON | Python |
+===============+===================+
| object | dict |
+---------------+-------------------+
| array | list |
+---------------+-------------------+
| string | unicode |
+---------------+-------------------+
| number (int) | int, long |
+---------------+-------------------+
| number (real) | float |
+---------------+-------------------+
| true | True |
+---------------+-------------------+
| false | False |
+---------------+-------------------+
| null | None |
+---------------+-------------------+
It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as
their corresponding ``float`` values, which is outside the JSON spec.
"""
_scanner = Scanner(ANYTHING)
__all__ = ['__init__', 'decode', 'raw_decode']
def __init__(self, encoding=None):
"""
``encoding`` determines the encoding used to interpret any ``str``
objects decoded by this instance (utf-8 by default). It has no
effect when decoding ``unicode`` objects.
Note that currently only encodings that are a superset of ASCII work,
strings of other encodings should be passed in as ``unicode``.
"""
self.encoding = encoding
def decode(self, s):
"""
Return the Python representation of ``s`` (a ``str`` or ``unicode``
instance containing a JSON document)
"""
obj, end = self.raw_decode(s, idx=skipwhitespace(s, 0))
end = skipwhitespace(s, end)
if end != len(s):
raise ValueError(errmsg("Extra data", s, end, len(s)))
return obj
def raw_decode(self, s, **kw):
"""
Decode a JSON document from ``s`` (a ``str`` or ``unicode`` beginning
with a JSON document) and return a 2-tuple of the Python
representation and the index in ``s`` where the document ended.
This can be used to decode a JSON document from a string that may
have extraneous data at the end.
"""
kw.setdefault('context', self)
try:
obj, end = self._scanner.iterscan(s, **kw).next()
except StopIteration:
raise ValueError("No JSON object could be decoded")
return obj, end
__all__ = ['JSONDecoder']