"""Implementation of JSONDecoder"""importrefromjsonimportscannertry:from_jsonimportscanstringasc_scanstringexceptImportError:c_scanstring=None__all__=['JSONDecoder','JSONDecodeError']FLAGS=re.VERBOSE|re.MULTILINE|re.DOTALLNaN=float('nan')PosInf=float('inf')NegInf=float('-inf')
[docs]classJSONDecodeError(ValueError):"""Subclass of ValueError with the following additional properties: msg: The unformatted error message doc: The JSON document being parsed pos: The start index of doc where parsing failed lineno: The line corresponding to pos colno: The column corresponding to pos """# Note that this exception is used from _jsondef__init__(self,msg,doc,pos):lineno=doc.count('\n',0,pos)+1colno=pos-doc.rfind('\n',0,pos)errmsg='%s: line %d column %d (char %d)'%(msg,lineno,colno,pos)ValueError.__init__(self,errmsg)self.msg=msgself.doc=docself.pos=posself.lineno=linenoself.colno=colnodef__reduce__(self):returnself.__class__,(self.msg,self.doc,self.pos)
_CONSTANTS={'-Infinity':NegInf,'Infinity':PosInf,'NaN':NaN,}STRINGCHUNK=re.compile(r'(.*?)(["\\\x00-\x1f])',FLAGS)BACKSLASH={'"':'"','\\':'\\','/':'/','b':'\b','f':'\f','n':'\n','r':'\r','t':'\t',}def_decode_uXXXX(s,pos):esc=s[pos+1:pos+5]iflen(esc)==4andesc[1]notin'xX':try:returnint(esc,16)exceptValueError:passmsg="Invalid \\uXXXX escape"raiseJSONDecodeError(msg,s,pos)defpy_scanstring(s,end,strict=True,_b=BACKSLASH,_m=STRINGCHUNK.match):"""Scan the string s for a JSON string. End is the index of the character in s after the quote that started the JSON string. Unescapes all valid JSON string escape sequences and raises ValueError on attempt to decode an invalid string. If strict is False then literal control characters are allowed in the string. Returns a tuple of the decoded string and the index of the character in s after the end quote."""chunks=[]_append=chunks.appendbegin=end-1while1:chunk=_m(s,end)ifchunkisNone:raiseJSONDecodeError("Unterminated string starting at",s,begin)end=chunk.end()content,terminator=chunk.groups()# Content is contains zero or more unescaped string charactersifcontent:_append(content)# Terminator is the end of string, a literal control character,# or a backslash denoting that an escape sequence followsifterminator=='"':breakelifterminator!='\\':ifstrict:#msg = "Invalid control character %r at" % (terminator,)msg="Invalid control character {0!r} at".format(terminator)raiseJSONDecodeError(msg,s,end)else:_append(terminator)continuetry:esc=s[end]exceptIndexError:raiseJSONDecodeError("Unterminated string starting at",s,begin)fromNone# If not a unicode escape sequence, must be in the lookup tableifesc!='u':try:char=_b[esc]exceptKeyError:msg="Invalid \\escape: {0!r}".format(esc)raiseJSONDecodeError(msg,s,end)end+=1else:uni=_decode_uXXXX(s,end)end+=5if0xd800<=uni<=0xdbffands[end:end+2]=='\\u':uni2=_decode_uXXXX(s,end+1)if0xdc00<=uni2<=0xdfff:uni=0x10000+(((uni-0xd800)<<10)|(uni2-0xdc00))end+=6char=chr(uni)_append(char)return''.join(chunks),end# Use speedup if availablescanstring=c_scanstringorpy_scanstringWHITESPACE=re.compile(r'[ \t\n\r]*',FLAGS)WHITESPACE_STR=' \t\n\r'defJSONObject(s_and_end,strict,scan_once,object_hook,object_pairs_hook,memo=None,_w=WHITESPACE.match,_ws=WHITESPACE_STR):s,end=s_and_endpairs=[]pairs_append=pairs.append# Backwards compatibilityifmemoisNone:memo={}memo_get=memo.setdefault# Use a slice to prevent IndexError from being raised, the following# check will raise a more specific ValueError if the string is emptynextchar=s[end:end+1]# Normally we expect nextchar == '"'ifnextchar!='"':ifnextcharin_ws:end=_w(s,end).end()nextchar=s[end:end+1]# Trivial empty objectifnextchar=='}':ifobject_pairs_hookisnotNone:result=object_pairs_hook(pairs)returnresult,end+1pairs={}ifobject_hookisnotNone:pairs=object_hook(pairs)returnpairs,end+1elifnextchar!='"':raiseJSONDecodeError("Expecting property name enclosed in double quotes",s,end)end+=1whileTrue:key,end=scanstring(s,end,strict)key=memo_get(key,key)# To skip some function call overhead we optimize the fast paths where# the JSON key separator is ": " or just ":".ifs[end:end+1]!=':':end=_w(s,end).end()ifs[end:end+1]!=':':raiseJSONDecodeError("Expecting ':' delimiter",s,end)end+=1try:ifs[end]in_ws:end+=1ifs[end]in_ws:end=_w(s,end+1).end()exceptIndexError:passtry:value,end=scan_once(s,end)exceptStopIterationaserr:raiseJSONDecodeError("Expecting value",s,err.value)fromNonepairs_append((key,value))try:nextchar=s[end]ifnextcharin_ws:end=_w(s,end+1).end()nextchar=s[end]exceptIndexError:nextchar=''end+=1ifnextchar=='}':breakelifnextchar!=',':raiseJSONDecodeError("Expecting ',' delimiter",s,end-1)end=_w(s,end).end()nextchar=s[end:end+1]end+=1ifnextchar!='"':raiseJSONDecodeError("Expecting property name enclosed in double quotes",s,end-1)ifobject_pairs_hookisnotNone:result=object_pairs_hook(pairs)returnresult,endpairs=dict(pairs)ifobject_hookisnotNone:pairs=object_hook(pairs)returnpairs,enddefJSONArray(s_and_end,scan_once,_w=WHITESPACE.match,_ws=WHITESPACE_STR):s,end=s_and_endvalues=[]nextchar=s[end:end+1]ifnextcharin_ws:end=_w(s,end+1).end()nextchar=s[end:end+1]# Look-ahead for trivial empty arrayifnextchar==']':returnvalues,end+1_append=values.appendwhileTrue:try:value,end=scan_once(s,end)exceptStopIterationaserr:raiseJSONDecodeError("Expecting value",s,err.value)fromNone_append(value)nextchar=s[end:end+1]ifnextcharin_ws:end=_w(s,end+1).end()nextchar=s[end:end+1]end+=1ifnextchar==']':breakelifnextchar!=',':raiseJSONDecodeError("Expecting ',' delimiter",s,end-1)try:ifs[end]in_ws:end+=1ifs[end]in_ws:end=_w(s,end+1).end()exceptIndexError:passreturnvalues,end
[docs]classJSONDecoder(object):"""Simple JSON <https://json.org> decoder Performs the following translations in decoding by default: +---------------+-------------------+ | JSON | Python | +===============+===================+ | object | dict | +---------------+-------------------+ | array | list | +---------------+-------------------+ | string | str | +---------------+-------------------+ | number (int) | int | +---------------+-------------------+ | 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. """def__init__(self,*,object_hook=None,parse_float=None,parse_int=None,parse_constant=None,strict=True,object_pairs_hook=None):"""``object_hook``, if specified, will be called with the result of every JSON object decoded and its return value will be used in place of the given ``dict``. This can be used to provide custom deserializations (e.g. to support JSON-RPC class hinting). ``object_pairs_hook``, if specified will be called with the result of every JSON object decoded with an ordered list of pairs. The return value of ``object_pairs_hook`` will be used instead of the ``dict``. This feature can be used to implement custom decoders. If ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority. ``parse_float``, if specified, will be called with the string of every JSON float to be decoded. By default this is equivalent to float(num_str). This can be used to use another datatype or parser for JSON floats (e.g. decimal.Decimal). ``parse_int``, if specified, will be called with the string of every JSON int to be decoded. By default this is equivalent to int(num_str). This can be used to use another datatype or parser for JSON integers (e.g. float). ``parse_constant``, if specified, will be called with one of the following strings: -Infinity, Infinity, NaN. This can be used to raise an exception if invalid JSON numbers are encountered. If ``strict`` is false (true is the default), then control characters will be allowed inside strings. Control characters in this context are those with character codes in the 0-31 range, including ``'\\t'`` (tab), ``'\\n'``, ``'\\r'`` and ``'\\0'``. """self.object_hook=object_hookself.parse_float=parse_floatorfloatself.parse_int=parse_intorintself.parse_constant=parse_constantor_CONSTANTS.__getitem__self.strict=strictself.object_pairs_hook=object_pairs_hookself.parse_object=JSONObjectself.parse_array=JSONArrayself.parse_string=scanstringself.memo={}self.scan_once=scanner.make_scanner(self)
[docs]defdecode(self,s,_w=WHITESPACE.match):"""Return the Python representation of ``s`` (a ``str`` instance containing a JSON document). """obj,end=self.raw_decode(s,idx=_w(s,0).end())end=_w(s,end).end()ifend!=len(s):raiseJSONDecodeError("Extra data",s,end)returnobj
[docs]defraw_decode(self,s,idx=0):"""Decode a JSON document from ``s`` (a ``str`` 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. """try:obj,end=self.scan_once(s,idx)exceptStopIterationaserr:raiseJSONDecodeError("Expecting value",s,err.value)fromNonereturnobj,end