Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 1 | """Implementation of JSONDecoder |
| 2 | """ |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 3 | import binascii |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 4 | import re |
| 5 | import sys |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 6 | import struct |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 7 | |
Ezio Melotti | 6b60fb9 | 2011-05-14 06:47:51 +0300 | [diff] [blame] | 8 | from json import scanner |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 9 | try: |
| 10 | from _json import scanstring as c_scanstring |
| 11 | except ImportError: |
| 12 | c_scanstring = None |
| 13 | |
| 14 | __all__ = ['JSONDecoder'] |
| 15 | |
| 16 | FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL |
| 17 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 18 | def _floatconstants(): |
| 19 | _BYTES = binascii.unhexlify(b'7FF80000000000007FF0000000000000') |
| 20 | if sys.byteorder != 'big': |
| 21 | _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1] |
| 22 | nan, inf = struct.unpack('dd', _BYTES) |
| 23 | return nan, inf, -inf |
| 24 | |
| 25 | NaN, PosInf, NegInf = _floatconstants() |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 26 | |
| 27 | |
| 28 | def linecol(doc, pos): |
Benjamin Peterson | a13d475 | 2008-10-16 21:17:24 +0000 | [diff] [blame] | 29 | if isinstance(doc, bytes): |
| 30 | newline = b'\n' |
| 31 | else: |
| 32 | newline = '\n' |
| 33 | lineno = doc.count(newline, 0, pos) + 1 |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 34 | if lineno == 1: |
| 35 | colno = pos |
| 36 | else: |
Benjamin Peterson | a13d475 | 2008-10-16 21:17:24 +0000 | [diff] [blame] | 37 | colno = pos - doc.rindex(newline, 0, pos) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 38 | return lineno, colno |
| 39 | |
| 40 | |
| 41 | def errmsg(msg, doc, pos, end=None): |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 42 | # Note that this function is called from _json |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 43 | lineno, colno = linecol(doc, pos) |
| 44 | if end is None: |
| 45 | fmt = '{0}: line {1} column {2} (char {3})' |
| 46 | return fmt.format(msg, lineno, colno, pos) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 47 | #fmt = '%s: line %d column %d (char %d)' |
| 48 | #return fmt % (msg, lineno, colno, pos) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 49 | endlineno, endcolno = linecol(doc, end) |
| 50 | fmt = '{0}: line {1} column {2} - line {3} column {4} (char {5} - {6})' |
| 51 | return fmt.format(msg, lineno, colno, endlineno, endcolno, pos, end) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 52 | #fmt = '%s: line %d column %d - line %d column %d (char %d - %d)' |
| 53 | #return fmt % (msg, lineno, colno, endlineno, endcolno, pos, end) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 54 | |
| 55 | |
| 56 | _CONSTANTS = { |
| 57 | '-Infinity': NegInf, |
| 58 | 'Infinity': PosInf, |
| 59 | 'NaN': NaN, |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 63 | STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS) |
| 64 | BACKSLASH = { |
| 65 | '"': '"', '\\': '\\', '/': '/', |
| 66 | 'b': '\b', 'f': '\f', 'n': '\n', 'r': '\r', 't': '\t', |
| 67 | } |
| 68 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 69 | def py_scanstring(s, end, strict=True, |
| 70 | _b=BACKSLASH, _m=STRINGCHUNK.match): |
| 71 | """Scan the string s for a JSON string. End is the index of the |
| 72 | character in s after the quote that started the JSON string. |
| 73 | Unescapes all valid JSON string escape sequences and raises ValueError |
| 74 | on attempt to decode an invalid string. If strict is False then literal |
| 75 | control characters are allowed in the string. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 76 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 77 | Returns a tuple of the decoded string and the index of the character in s |
| 78 | after the end quote.""" |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 79 | chunks = [] |
| 80 | _append = chunks.append |
| 81 | begin = end - 1 |
| 82 | while 1: |
| 83 | chunk = _m(s, end) |
| 84 | if chunk is None: |
| 85 | raise ValueError( |
| 86 | errmsg("Unterminated string starting at", s, begin)) |
| 87 | end = chunk.end() |
| 88 | content, terminator = chunk.groups() |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 89 | # Content is contains zero or more unescaped string characters |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 90 | if content: |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 91 | _append(content) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 92 | # Terminator is the end of string, a literal control character, |
| 93 | # or a backslash denoting that an escape sequence follows |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 94 | if terminator == '"': |
| 95 | break |
| 96 | elif terminator != '\\': |
| 97 | if strict: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 98 | #msg = "Invalid control character %r at" % (terminator,) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 99 | msg = "Invalid control character {0!r} at".format(terminator) |
| 100 | raise ValueError(errmsg(msg, s, end)) |
| 101 | else: |
| 102 | _append(terminator) |
| 103 | continue |
| 104 | try: |
| 105 | esc = s[end] |
| 106 | except IndexError: |
| 107 | raise ValueError( |
| 108 | errmsg("Unterminated string starting at", s, begin)) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 109 | # If not a unicode escape sequence, must be in the lookup table |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 110 | if esc != 'u': |
| 111 | try: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 112 | char = _b[esc] |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 113 | except KeyError: |
| 114 | msg = "Invalid \\escape: {0!r}".format(esc) |
| 115 | raise ValueError(errmsg(msg, s, end)) |
| 116 | end += 1 |
| 117 | else: |
| 118 | esc = s[end + 1:end + 5] |
| 119 | next_end = end + 5 |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 120 | if len(esc) != 4: |
| 121 | msg = "Invalid \\uXXXX escape" |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 122 | raise ValueError(errmsg(msg, s, end)) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 123 | uni = int(esc, 16) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 124 | if 0xd800 <= uni <= 0xdbff: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 125 | msg = "Invalid \\uXXXX\\uXXXX surrogate pair" |
| 126 | if not s[end + 5:end + 7] == '\\u': |
| 127 | raise ValueError(errmsg(msg, s, end)) |
| 128 | esc2 = s[end + 7:end + 11] |
| 129 | if len(esc2) != 4: |
| 130 | raise ValueError(errmsg(msg, s, end)) |
| 131 | uni2 = int(esc2, 16) |
| 132 | uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00)) |
| 133 | next_end += 6 |
| 134 | char = chr(uni) |
| 135 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 136 | end = next_end |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 137 | _append(char) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 138 | return ''.join(chunks), end |
| 139 | |
| 140 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 141 | # Use speedup if available |
| 142 | scanstring = c_scanstring or py_scanstring |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 143 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 144 | WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS) |
| 145 | WHITESPACE_STR = ' \t\n\r' |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 146 | |
| 147 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 148 | def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook, |
Antoine Pitrou | 7d6e076 | 2010-09-04 20:16:53 +0000 | [diff] [blame] | 149 | memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR): |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 150 | s, end = s_and_end |
Raymond Hettinger | 0ad98d8 | 2009-04-21 03:09:17 +0000 | [diff] [blame] | 151 | pairs = [] |
| 152 | pairs_append = pairs.append |
Antoine Pitrou | 7d6e076 | 2010-09-04 20:16:53 +0000 | [diff] [blame] | 153 | # Backwards compatibility |
| 154 | if memo is None: |
| 155 | memo = {} |
| 156 | memo_get = memo.setdefault |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 157 | # Use a slice to prevent IndexError from being raised, the following |
| 158 | # check will raise a more specific ValueError if the string is empty |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 159 | nextchar = s[end:end + 1] |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 160 | # Normally we expect nextchar == '"' |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 161 | if nextchar != '"': |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 162 | if nextchar in _ws: |
| 163 | end = _w(s, end).end() |
| 164 | nextchar = s[end:end + 1] |
| 165 | # Trivial empty object |
| 166 | if nextchar == '}': |
Ezio Melotti | d210aa1 | 2011-04-13 07:10:13 +0300 | [diff] [blame] | 167 | if object_pairs_hook is not None: |
| 168 | result = object_pairs_hook(pairs) |
| 169 | return result, end |
| 170 | pairs = {} |
| 171 | if object_hook is not None: |
| 172 | pairs = object_hook(pairs) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 173 | return pairs, end + 1 |
| 174 | elif nextchar != '"': |
| 175 | raise ValueError(errmsg("Expecting property name", s, end)) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 176 | end += 1 |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 177 | while True: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 178 | key, end = scanstring(s, end, strict) |
Antoine Pitrou | 7d6e076 | 2010-09-04 20:16:53 +0000 | [diff] [blame] | 179 | key = memo_get(key, key) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 180 | # To skip some function call overhead we optimize the fast paths where |
| 181 | # the JSON key separator is ": " or just ":". |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 182 | if s[end:end + 1] != ':': |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 183 | end = _w(s, end).end() |
| 184 | if s[end:end + 1] != ':': |
| 185 | raise ValueError(errmsg("Expecting : delimiter", s, end)) |
| 186 | end += 1 |
| 187 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 188 | try: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 189 | if s[end] in _ws: |
| 190 | end += 1 |
| 191 | if s[end] in _ws: |
| 192 | end = _w(s, end + 1).end() |
| 193 | except IndexError: |
| 194 | pass |
| 195 | |
| 196 | try: |
| 197 | value, end = scan_once(s, end) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 198 | except StopIteration: |
| 199 | raise ValueError(errmsg("Expecting object", s, end)) |
Raymond Hettinger | 0ad98d8 | 2009-04-21 03:09:17 +0000 | [diff] [blame] | 200 | pairs_append((key, value)) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 201 | try: |
| 202 | nextchar = s[end] |
| 203 | if nextchar in _ws: |
| 204 | end = _w(s, end + 1).end() |
| 205 | nextchar = s[end] |
| 206 | except IndexError: |
| 207 | nextchar = '' |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 208 | end += 1 |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 209 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 210 | if nextchar == '}': |
| 211 | break |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 212 | elif nextchar != ',': |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 213 | raise ValueError(errmsg("Expecting , delimiter", s, end - 1)) |
| 214 | end = _w(s, end).end() |
| 215 | nextchar = s[end:end + 1] |
| 216 | end += 1 |
| 217 | if nextchar != '"': |
| 218 | raise ValueError(errmsg("Expecting property name", s, end - 1)) |
Raymond Hettinger | 0ad98d8 | 2009-04-21 03:09:17 +0000 | [diff] [blame] | 219 | if object_pairs_hook is not None: |
| 220 | result = object_pairs_hook(pairs) |
| 221 | return result, end |
| 222 | pairs = dict(pairs) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 223 | if object_hook is not None: |
| 224 | pairs = object_hook(pairs) |
| 225 | return pairs, end |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 226 | |
Antoine Pitrou | 7d6e076 | 2010-09-04 20:16:53 +0000 | [diff] [blame] | 227 | def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR): |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 228 | s, end = s_and_end |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 229 | values = [] |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 230 | nextchar = s[end:end + 1] |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 231 | if nextchar in _ws: |
| 232 | end = _w(s, end + 1).end() |
| 233 | nextchar = s[end:end + 1] |
| 234 | # Look-ahead for trivial empty array |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 235 | if nextchar == ']': |
| 236 | return values, end + 1 |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 237 | _append = values.append |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 238 | while True: |
| 239 | try: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 240 | value, end = scan_once(s, end) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 241 | except StopIteration: |
| 242 | raise ValueError(errmsg("Expecting object", s, end)) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 243 | _append(value) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 244 | nextchar = s[end:end + 1] |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 245 | if nextchar in _ws: |
| 246 | end = _w(s, end + 1).end() |
| 247 | nextchar = s[end:end + 1] |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 248 | end += 1 |
| 249 | if nextchar == ']': |
| 250 | break |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 251 | elif nextchar != ',': |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 252 | raise ValueError(errmsg("Expecting , delimiter", s, end)) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 253 | try: |
| 254 | if s[end] in _ws: |
| 255 | end += 1 |
| 256 | if s[end] in _ws: |
| 257 | end = _w(s, end + 1).end() |
| 258 | except IndexError: |
| 259 | pass |
| 260 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 261 | return values, end |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 262 | |
| 263 | |
| 264 | class JSONDecoder(object): |
| 265 | """Simple JSON <http://json.org> decoder |
| 266 | |
| 267 | Performs the following translations in decoding by default: |
| 268 | |
| 269 | +---------------+-------------------+ |
| 270 | | JSON | Python | |
| 271 | +===============+===================+ |
| 272 | | object | dict | |
| 273 | +---------------+-------------------+ |
| 274 | | array | list | |
| 275 | +---------------+-------------------+ |
Georg Brandl | c8284cf | 2010-08-02 20:16:18 +0000 | [diff] [blame] | 276 | | string | str | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 277 | +---------------+-------------------+ |
Georg Brandl | c8284cf | 2010-08-02 20:16:18 +0000 | [diff] [blame] | 278 | | number (int) | int | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 279 | +---------------+-------------------+ |
| 280 | | number (real) | float | |
| 281 | +---------------+-------------------+ |
| 282 | | true | True | |
| 283 | +---------------+-------------------+ |
| 284 | | false | False | |
| 285 | +---------------+-------------------+ |
| 286 | | null | None | |
| 287 | +---------------+-------------------+ |
| 288 | |
| 289 | It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as |
| 290 | their corresponding ``float`` values, which is outside the JSON spec. |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 291 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 292 | """ |
| 293 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 294 | def __init__(self, object_hook=None, parse_float=None, |
Raymond Hettinger | 0ad98d8 | 2009-04-21 03:09:17 +0000 | [diff] [blame] | 295 | parse_int=None, parse_constant=None, strict=True, |
| 296 | object_pairs_hook=None): |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 297 | """``object_hook``, if specified, will be called with the result |
| 298 | of every JSON object decoded and its return value will be used in |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 299 | place of the given ``dict``. This can be used to provide custom |
| 300 | deserializations (e.g. to support JSON-RPC class hinting). |
| 301 | |
Georg Brandl | d4460aa | 2010-10-15 17:03:02 +0000 | [diff] [blame] | 302 | ``object_pairs_hook``, if specified will be called with the result of |
| 303 | every JSON object decoded with an ordered list of pairs. The return |
| 304 | value of ``object_pairs_hook`` will be used instead of the ``dict``. |
| 305 | This feature can be used to implement custom decoders that rely on the |
| 306 | order that the key and value pairs are decoded (for example, |
| 307 | collections.OrderedDict will remember the order of insertion). If |
| 308 | ``object_hook`` is also defined, the ``object_pairs_hook`` takes |
| 309 | priority. |
| 310 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 311 | ``parse_float``, if specified, will be called with the string |
| 312 | of every JSON float to be decoded. By default this is equivalent to |
| 313 | float(num_str). This can be used to use another datatype or parser |
| 314 | for JSON floats (e.g. decimal.Decimal). |
| 315 | |
| 316 | ``parse_int``, if specified, will be called with the string |
| 317 | of every JSON int to be decoded. By default this is equivalent to |
| 318 | int(num_str). This can be used to use another datatype or parser |
| 319 | for JSON integers (e.g. float). |
| 320 | |
| 321 | ``parse_constant``, if specified, will be called with one of the |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 322 | following strings: -Infinity, Infinity, NaN. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 323 | This can be used to raise an exception if invalid JSON numbers |
| 324 | are encountered. |
| 325 | |
Georg Brandl | d4460aa | 2010-10-15 17:03:02 +0000 | [diff] [blame] | 326 | If ``strict`` is false (true is the default), then control |
| 327 | characters will be allowed inside strings. Control characters in |
| 328 | this context are those with character codes in the 0-31 range, |
| 329 | including ``'\\t'`` (tab), ``'\\n'``, ``'\\r'`` and ``'\\0'``. |
| 330 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 331 | """ |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 332 | self.object_hook = object_hook |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 333 | self.parse_float = parse_float or float |
| 334 | self.parse_int = parse_int or int |
| 335 | self.parse_constant = parse_constant or _CONSTANTS.__getitem__ |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 336 | self.strict = strict |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 337 | self.object_pairs_hook = object_pairs_hook |
| 338 | self.parse_object = JSONObject |
| 339 | self.parse_array = JSONArray |
| 340 | self.parse_string = scanstring |
Antoine Pitrou | 7d6e076 | 2010-09-04 20:16:53 +0000 | [diff] [blame] | 341 | self.memo = {} |
Ezio Melotti | 6b60fb9 | 2011-05-14 06:47:51 +0300 | [diff] [blame] | 342 | self.scan_once = scanner.make_scanner(self) |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 343 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 344 | |
| 345 | def decode(self, s, _w=WHITESPACE.match): |
Georg Brandl | c8284cf | 2010-08-02 20:16:18 +0000 | [diff] [blame] | 346 | """Return the Python representation of ``s`` (a ``str`` instance |
| 347 | containing a JSON document). |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 348 | |
| 349 | """ |
| 350 | obj, end = self.raw_decode(s, idx=_w(s, 0).end()) |
| 351 | end = _w(s, end).end() |
| 352 | if end != len(s): |
| 353 | raise ValueError(errmsg("Extra data", s, end, len(s))) |
| 354 | return obj |
| 355 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 356 | def raw_decode(self, s, idx=0): |
Georg Brandl | c8284cf | 2010-08-02 20:16:18 +0000 | [diff] [blame] | 357 | """Decode a JSON document from ``s`` (a ``str`` beginning with |
| 358 | a JSON document) and return a 2-tuple of the Python |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 359 | representation and the index in ``s`` where the document ended. |
| 360 | |
| 361 | This can be used to decode a JSON document from a string that may |
| 362 | have extraneous data at the end. |
| 363 | |
| 364 | """ |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 365 | try: |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 366 | obj, end = self.scan_once(s, idx) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 367 | except StopIteration: |
| 368 | raise ValueError("No JSON object could be decoded") |
| 369 | return obj, end |