Class UTF8StreamJsonParser

All Implemented Interfaces:
Closeable, AutoCloseable, Versioned

public class UTF8StreamJsonParser extends JsonParserBase
This is a concrete implementation of JsonParser, which is based on a InputStream as the input source.
  • Field Details

    • BYTE_LF

      static final byte BYTE_LF
      See Also:
    • FEAT_MASK_TRAILING_COMMA

      private static final int FEAT_MASK_TRAILING_COMMA
    • FEAT_MASK_ALLOW_MISSING

      private static final int FEAT_MASK_ALLOW_MISSING
    • _icUTF8

      private static final int[] _icUTF8
    • _icLatin1

      protected static final int[] _icLatin1
    • _symbols

      protected final ByteQuadsCanonicalizer _symbols
      Symbol table that contains property names encountered so far
    • _quadBuffer

      protected int[] _quadBuffer
      Temporary buffer used for name parsing.
    • _tokenIncomplete

      protected boolean _tokenIncomplete
      Flag that indicates that the current token has not yet been fully processed, and needs to be finished for some access (or skipped to obtain the next token)
    • _quad1

      private int _quad1
      Temporary storage for partially parsed name bytes.
    • _quadPtr

      private int _quadPtr
      Temporary input pointer
    • _nameStartOffset

      protected int _nameStartOffset
      Value of ParserBase._inputPtr at the time when the first character of name token was read. Used for calculating token location when requested; combined with ParserBase._currInputProcessed, may be updated appropriately as needed.
    • _nameStartRow

      protected int _nameStartRow
    • _nameStartCol

      protected int _nameStartCol
    • _inputStream

      protected InputStream _inputStream
    • _inputBuffer

      protected byte[] _inputBuffer
      Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    • _bufferRecyclable

      protected boolean _bufferRecyclable
      Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

      If it is not, it also means that parser CANNOT modify underlying buffer.

  • Constructor Details

    • UTF8StreamJsonParser

      public UTF8StreamJsonParser(ObjectReadContext readCtxt, IOContext ctxt, int stdFeatures, int formatReadFeatures, InputStream in, ByteQuadsCanonicalizer sym, byte[] inputBuffer, int start, int end, int bytesPreProcessed, boolean bufferRecyclable)
      Constructor called when caller wants to provide input buffer directly (or needs to, in case of bootstrapping having read some of contents) and it may or may not be recyclable use standard recycle context.
      Parameters:
      readCtxt - Object read context to use
      ctxt - I/O context to use
      stdFeatures - Standard stream read features enabled
      formatReadFeatures - Format-specific read features enabled
      in - InputStream used for reading actual content, if any; null if none
      sym - Name canonicalizer to use
      inputBuffer - Input buffer to read initial content from (before Reader)
      start - Pointer in inputBuffer that has the first content character to decode
      end - Pointer past the last content character in inputBuffer
      bytesPreProcessed - Number of bytes that have been consumed already (by bootstrapping)
      bufferRecyclable - Whether inputBuffer passed is managed by Jackson core (and thereby needs recycling)
  • Method Details

    • releaseBuffered

      public int releaseBuffered(OutputStream out) throws JacksonException
      Description copied from class: JsonParser
      Method that can be called to push back any content that has been read but not consumed by the parser. This is usually done after reading all content of interest using parser. Content is released by writing it to given stream if possible; if underlying input is byte-based it can released, if not (char-based) it cannot.
      Overrides:
      releaseBuffered in class JsonParser
      Parameters:
      out - OutputStream to which buffered, undecoded content is written to
      Returns:
      -1 if the underlying content source is not byte based (that is, input cannot be sent to OutputStream; otherwise number of bytes released (0 if there was nothing to release)
      Throws:
      JacksonException - if write to stream threw exception
    • streamReadInputSource

      public Object streamReadInputSource()
      Description copied from class: JsonParser
      Method that can be used to get access to object that is used to access input being parsed; this is usually either InputStream or Reader, depending on what parser was constructed with. Note that returned value may be null in some cases; including case where parser implementation does not want to exposed raw source to caller. In cases where input has been decorated, object returned here is the decorated version; this allows some level of interaction between users of parser and decorator object.

      In general use of this accessor should be considered as "last effort", i.e. only used if no other mechanism is applicable.

      NOTE: was named getInputSource() in Jackson 2.x.

      Specified by:
      streamReadInputSource in class JsonParser
      Returns:
      Input source this parser was configured with
    • _loadMore

      protected final boolean _loadMore() throws JacksonException
      Throws:
      JacksonException
    • _closeInput

      protected void _closeInput()
      Description copied from class: ParserMinimalBase
      Abstract method for sub-classes to implement; to be called by ParserMinimalBase.close() implementation here.
      Specified by:
      _closeInput in class ParserMinimalBase
    • _releaseBuffers

      protected void _releaseBuffers()
      Method called to release internal buffers owned by the base reader. This may be called along with _closeInput() (for example, when explicitly closing this reader instance), or separately (if need be).
      Overrides:
      _releaseBuffers in class ParserBase
    • getString

      public String getString() throws JacksonException
      Description copied from class: JsonParser
      Method for accessing textual representation of the current token; if no current token (before first call to JsonParser.nextToken(), or after encountering end-of-input), returns null. Method can be called for any token type.
      Specified by:
      getString in class JsonParser
      Returns:
      String value associated with the current token (one returned by JsonParser.nextToken() or other iteration methods)
      Throws:
      JacksonException
    • getString

      public int getString(Writer writer) throws JacksonException
      Description copied from class: JsonParser
      Method to read the textual representation of the current token in chunks and pass it to the given Writer. Functionally same as calling:
        writer.write(parser.getString());
      
      but should typically be more efficient as longer content does need to be combined into a single String to return, and write can occur directly from intermediate buffers Jackson uses.

      NOTE: String value will still be buffered (usually using TextBuffer) and will be accessible with other getString() calls (that is, it will not be consumed). So this accessor only avoids construction of String compared to plain JsonParser.getString() method. Note there is method JsonParser.readString(Writer) that may avoid buffering.

      NOTE: In Jackson 2.x this method was called getText(Writer).

      Overrides:
      getString in class ParserMinimalBase
      Parameters:
      writer - Writer to write String value to
      Returns:
      The number of characters written to the Writer
      Throws:
      JacksonException
    • readString

      public long readString(Writer writer) throws JacksonException
      Description copied from class: JsonParser
      Method to read the textual representation of the current JsonToken.VALUE_STRING token in chunks and stream it directly to the given Writer, without buffering the entire String value in memory. Functionally same as calling:
        writer.write(parser.getString());
      
      but tries to stream the decoded content directly without storing it in TextBuffer, making it suitable for arbitrarily large strings without memory constraints.

      NOTE: whether streaming happens depends on format-specific implementation of this method -- the default implementation delegates to JsonParser.getString(Writer) which does not stream content.

      NOTE: This method consumes the contents of the JsonToken.VALUE_STRING token, advancing the parser state so that the underlying String value is no longer available via JsonParser.getString() or other getString* accessors after this method completes. This differs from JsonParser.getString(Writer) which preserves the buffered string for subsequent access.

      NOTE: This method is primarily intended for very large JSON string values (megabytes or larger) where full buffering would be prohibitive. For typical string sizes, prefer JsonParser.getString() or JsonParser.getString(Writer) which provide more convenient access. The implementation uses an intermediate buffer for efficient bulk writes to the Writer.

      NOTE: This method does enforce StreamReadConstraints.getMaxStringLength() validation during streaming, checking the string length at buffer boundaries and at completion. Strings exceeding the configured limit will result in a StreamConstraintsException.

      NOTE: This method is NOT supported by non-blocking (async) parsers and will throw UnsupportedOperationException if called on such parsers, since content availability is unpredictable in asynchronous parsing mode.

      Overrides:
      readString in class JsonParser
      Parameters:
      writer - Writer to stream the String value to
      Returns:
      The number of characters written to the Writer (as long to support strings exceeding Integer.MAX_VALUE)
      Throws:
      JacksonException
    • getValueAsString

      public String getValueAsString() throws JacksonException
      Description copied from class: JsonParser
      Method that will try to convert value of current token to a String. JSON Strings map naturally; scalar values get converted to their textual representation. If representation cannot be converted to a String value (including structured types like Objects and Arrays and null token), default value of null will be returned; no exceptions are thrown.
      Overrides:
      getValueAsString in class ParserMinimalBase
      Returns:
      String value current token is converted to, if possible; null otherwise
      Throws:
      JacksonException
    • getValueAsString

      public String getValueAsString(String defValue) throws JacksonException
      Description copied from class: JsonParser
      Method that will try to convert value of current token to a String. JSON Strings map naturally; scalar values get converted to their textual representation. If representation cannot be converted to a String value (including structured types like Objects and Arrays and null token), specified default value will be returned; no exceptions are thrown.
      Overrides:
      getValueAsString in class ParserMinimalBase
      Parameters:
      defValue - Default value to return if conversion to String is not possible
      Returns:
      String value current token is converted to, if possible; def otherwise
      Throws:
      JacksonException
    • getValueAsInt

      public int getValueAsInt() throws JacksonException
      Description copied from class: JsonParser
      Method that will try to convert value of current token to a Java int value. Numbers are coerced using default Java rules; booleans convert to 0 (false) and 1 (true), and Strings are parsed using default Java language integer parsing rules.

      If representation cannot be converted to an int (including structured type markers like start/end Object/Array) default value of 0 will be returned; no exceptions are thrown.

      Overrides:
      getValueAsInt in class ParserMinimalBase
      Returns:
      int value current token is converted to, if possible; default value otherwise otherwise
      Throws:
      JacksonException
    • getValueAsInt

      public int getValueAsInt(int defValue) throws JacksonException
      Description copied from class: JsonParser
      Method that will try to convert value of current token to a int. Numbers are coerced using default Java rules; booleans convert to 0 (false) and 1 (true), and Strings are parsed using default Java language integer parsing rules.

      If representation cannot be converted to an int (including structured type markers like start/end Object/Array) specified def will be returned; no exceptions are thrown.

      Overrides:
      getValueAsInt in class ParserMinimalBase
      Parameters:
      defValue - Default value to return if conversion to int is not possible
      Returns:
      int value current token is converted to, if possible; def otherwise
      Throws:
      JacksonException
    • _getText2

      protected final String _getText2(JsonToken t) throws JacksonException
      Throws:
      JacksonException
    • getStringCharacters

      public char[] getStringCharacters() throws JacksonException
      Description copied from class: JsonParser
      Method similar to JsonParser.getString(), but that will return underlying (unmodifiable) character array that contains textual value, instead of constructing a String object to contain this information. Note, however, that:

      Note that caller MUST NOT modify the returned character array in any way -- doing so may corrupt current parser state and render parser instance useless.

      The only reason to call this method (over JsonParser.getString()) is to avoid construction of a String object (which will make a copy of contents).

      Specified by:
      getStringCharacters in class JsonParser
      Returns:
      Buffer that contains the current textual value (but not necessarily at offset 0, and not necessarily until the end of buffer)
      Throws:
      JacksonException
    • getStringLength

      public int getStringLength() throws JacksonException
      Description copied from class: JsonParser
      Accessor used with JsonParser.getStringCharacters(), to know length of String stored in returned buffer.
      Specified by:
      getStringLength in class JsonParser
      Returns:
      Number of characters within buffer returned by JsonParser.getStringCharacters() that are part of textual content of the current token.
      Throws:
      JacksonException
    • getStringOffset

      public int getStringOffset() throws JacksonException
      Description copied from class: JsonParser
      Accessor used with JsonParser.getStringCharacters(), to know offset of the first text content character within buffer.
      Specified by:
      getStringOffset in class JsonParser
      Returns:
      Offset of the first character within buffer returned by JsonParser.getStringCharacters() that is part of textual content of the current token.
      Throws:
      JacksonException
    • getBinaryValue

      public byte[] getBinaryValue(Base64Variant b64variant) throws JacksonException
      Description copied from class: JsonParser
      Method that can be used to read (and consume -- results may not be accessible using other methods after the call) base64-encoded binary data included in the current textual JSON value. It works similar to getting String value via JsonParser.getString() and decoding result (except for decoding part), but should be significantly more performant.

      Note that non-decoded textual contents of the current token are not guaranteed to be accessible after this method is called. Current implementation, for example, clears up textual content during decoding. Decoded binary content, however, will be retained until parser is advanced to the next event.

      Overrides:
      getBinaryValue in class ParserBase
      Parameters:
      b64variant - Expected variant of base64 encoded content (see Base64Variants for definitions of "standard" variants).
      Returns:
      Decoded binary data
      Throws:
      JacksonException
    • readBinaryValue

      public int readBinaryValue(Base64Variant b64variant, OutputStream out) throws JacksonException
      Description copied from class: JsonParser
      Similar to JsonParser.readBinaryValue(OutputStream) but allows explicitly specifying base64 variant to use.
      Overrides:
      readBinaryValue in class JsonParser
      Parameters:
      b64variant - base64 variant to use
      out - Output stream to use for passing decoded binary data
      Returns:
      Number of bytes that were decoded and written via OutputStream
      Throws:
      JacksonException
    • _readBinary

      protected int _readBinary(Base64Variant b64variant, OutputStream out, byte[] buffer) throws IOException
      Throws:
      IOException
    • nextToken

      public JsonToken nextToken() throws JacksonException
      Description copied from class: JsonParser
      Main iteration method, which will advance stream enough to determine type of the next token, if any. If none remaining (stream has no content other than possible white space before ending), null will be returned.
      Specified by:
      nextToken in class JsonParser
      Returns:
      Next token from the stream, if any found, or null to indicate end-of-input
      Throws:
      JacksonException - for low-level read issues
    • _nextTokenNotInObject

      private final JsonToken _nextTokenNotInObject(int i) throws JacksonException
      Throws:
      JacksonException
    • _nextAfterName

      private final JsonToken _nextAfterName() throws JacksonException
      Throws:
      JacksonException
    • finishToken

      public void finishToken() throws JacksonException
      Description copied from class: JsonParser
      Method that may be used to force full handling of the current token so that even if lazy processing is enabled, the whole contents are read for possible retrieval. This is usually used to ensure that the token end location is available, as well as token contents (similar to what calling, say JsonParser.getStringCharacters(), would achieve).

      Note that for many dataformat implementations this method will not do anything; this is the default implementation unless overridden by sub-classes.

      Overrides:
      finishToken in class ParserMinimalBase
      Throws:
      JacksonException - for low-level read issues
    • nextName

      public String nextName() throws JacksonException
      Description copied from class: JsonParser
      Method that fetches next token (as if calling JsonParser.nextToken()) and verifies whether it is JsonToken.PROPERTY_NAME; if it is, returns same as JsonParser.currentName(), otherwise null.

      NOTE: in Jackson 2.x method was called nextFieldName()

      Overrides:
      nextName in class ParserMinimalBase
      Returns:
      Name of the the JsonToken.PROPERTY_NAME parser advanced to, if any; null if next token is of some other type
      Throws:
      JacksonException - for low-level read issues
    • nextName

      public boolean nextName(SerializableString str) throws JacksonException
      Description copied from class: JsonParser
      Method that fetches next token (as if calling JsonParser.nextToken()) and verifies whether it is JsonToken.PROPERTY_NAME with specified name and returns result of that comparison. It is functionally equivalent to:
        return (nextToken() == JsonToken.PROPERTY_NAME) && str.getValue().equals(currentName());
      
      but may be faster for parser to verify, and can therefore be used if caller expects to get such a property name from input next.

      NOTE: in Jackson 2.x method was called nextFieldName()

      Overrides:
      nextName in class ParserMinimalBase
      Parameters:
      str - Property name to compare next token to (if next token is JsonToken.PROPERTY_NAME)
      Returns:
      True if parser advanced to JsonToken.PROPERTY_NAME with specified name; false otherwise (different token or non-matching name)
      Throws:
      JacksonException - for low-level read issues
    • nextNameMatch

      public int nextNameMatch(PropertyNameMatcher matcher) throws JacksonException
      Description copied from class: JsonParser
      Method that tries to match next token from stream as JsonToken.PROPERTY_NAME, and if so, further match it to one of pre-specified (field) names. If match succeeds, property index (non-negative `int`) is returned; otherwise one of marker constants from PropertyNameMatcher.
      Overrides:
      nextNameMatch in class ParserMinimalBase
      Parameters:
      matcher - Matcher that will handle actual matching
      Returns:
      Index of the matched property name, if non-negative, or a negative error code otherwise (see PropertyNameMatcher for details)
      Throws:
      JacksonException
    • _skipColonFast

      private final int _skipColonFast(int ptr) throws JacksonException
      Throws:
      JacksonException
    • _isNextTokenNameYes

      private final void _isNextTokenNameYes(int i) throws JacksonException
      Throws:
      JacksonException
    • _isNextTokenNameMaybe

      private final boolean _isNextTokenNameMaybe(int i, SerializableString str) throws JacksonException
      Throws:
      JacksonException
    • _matchName

      protected final int _matchName(PropertyNameMatcher matcher, int i) throws JacksonException
      Throws:
      JacksonException
    • _matchMediumName

      protected final int _matchMediumName(PropertyNameMatcher matcher, int qptr, int q2) throws JacksonException
      Throws:
      JacksonException
    • _matchMediumName2

      protected final int _matchMediumName2(PropertyNameMatcher matcher, int qptr, int q3, int q2) throws JacksonException
      Throws:
      JacksonException
    • _matchLongName

      protected final int _matchLongName(PropertyNameMatcher matcher, int qptr, int q) throws JacksonException
      Throws:
      JacksonException
    • nextStringValue

      public String nextStringValue() throws JacksonException
      Description copied from class: JsonParser
      Method that fetches next token (as if calling JsonParser.nextToken()) and if it is JsonToken.VALUE_STRING returns contained String value; otherwise returns null. It is functionally equivalent to:
        return (nextToken() == JsonToken.VALUE_STRING) ? getString() : null;
      
      but may be faster for parser to process, and can therefore be used if caller expects to get a String value next from input.
      Overrides:
      nextStringValue in class JsonParser
      Returns:
      String value of JsonToken.VALUE_STRING token parser advanced to; or null if next token is of some other type
      Throws:
      JacksonException
    • nextIntValue

      public int nextIntValue(int defaultValue) throws JacksonException
      Description copied from class: JsonParser
      Method that fetches next token (as if calling JsonParser.nextToken()) and if it is JsonToken.VALUE_NUMBER_INT returns 32-bit int value; otherwise returns specified default value It is functionally equivalent to:
        return (nextToken() == JsonToken.VALUE_NUMBER_INT) ? getIntValue() : defaultValue;
      
      but may be faster for parser to process, and can therefore be used if caller expects to get an int value next from input.

      NOTE: value checks are performed similar to JsonParser.getIntValue()

      Overrides:
      nextIntValue in class JsonParser
      Parameters:
      defaultValue - Value to return if next token is NOT of type JsonToken.VALUE_NUMBER_INT
      Returns:
      Integer (int) value of the JsonToken.VALUE_NUMBER_INT token parser advanced to; or defaultValue if next token is of some other type
      Throws:
      JacksonException - for low-level read issues
    • nextLongValue

      public long nextLongValue(long defaultValue) throws JacksonException
      Description copied from class: JsonParser
      Method that fetches next token (as if calling JsonParser.nextToken()) and if it is JsonToken.VALUE_NUMBER_INT returns 64-bit long value; otherwise returns specified default value It is functionally equivalent to:
        return (nextToken() == JsonToken.VALUE_NUMBER_INT) ? getLongValue() : defaultValue;
      
      but may be faster for parser to process, and can therefore be used if caller expects to get a long value next from input.

      NOTE: value checks are performed similar to JsonParser.getLongValue()

      Overrides:
      nextLongValue in class JsonParser
      Parameters:
      defaultValue - Value to return if next token is NOT of type JsonToken.VALUE_NUMBER_INT
      Returns:
      long value of the JsonToken.VALUE_NUMBER_INT token parser advanced to; or defaultValue if next token is of some other type
      Throws:
      JacksonException
    • nextBooleanValue

      public Boolean nextBooleanValue() throws JacksonException
      Description copied from class: JsonParser
      Method that fetches next token (as if calling JsonParser.nextToken()) and if it is JsonToken.VALUE_TRUE or JsonToken.VALUE_FALSE returns matching Boolean value; otherwise return null. It is functionally equivalent to:
        JsonToken t = nextToken();
        if (t == JsonToken.VALUE_TRUE) return Boolean.TRUE;
        if (t == JsonToken.VALUE_FALSE) return Boolean.FALSE;
        return null;
      
      but may be faster for parser to process, and can therefore be used if caller expects to get a Boolean value next from input.
      Overrides:
      nextBooleanValue in class JsonParser
      Returns:
      Boolean value of the JsonToken.VALUE_TRUE or JsonToken.VALUE_FALSE token parser advanced to; or null if next token is of some other type
      Throws:
      JacksonException
    • _parseFloatThatStartsWithPeriod

      protected final JsonToken _parseFloatThatStartsWithPeriod(boolean neg, boolean hasSign) throws JacksonException
      Throws:
      JacksonException
    • _parseUnsignedNumber

      protected JsonToken _parseUnsignedNumber(int c) throws JacksonException
      Initial parsing method for number values. It needs to be able to parse enough input to be able to determine whether the value is to be considered a simple integer value, or a more generic decimal value: latter of which needs to be expressed as a floating point number. The basic rule is that if the number has no fractional or exponential part, it is an integer; otherwise a floating point number.

      Because much of input has to be processed in any case, no partial parsing is done: all input text will be stored for further processing. However, actual numeric value conversion will be deferred, since it is usually the most complicated and costliest part of processing.

      Parameters:
      c - The first non-null digit character of the number to parse
      Returns:
      Type of token decoded, usually JsonToken.VALUE_NUMBER_INT or JsonToken.VALUE_NUMBER_FLOAT
      Throws:
      JacksonIOException - for low-level read issues
      StreamReadException - for decoding problems
      JacksonException
    • _parseSignedNumber

      private final JsonToken _parseSignedNumber(boolean negative) throws JacksonException
      Throws:
      JacksonException
    • _parseNumber2

      private final JsonToken _parseNumber2(char[] outBuf, int outPtr, boolean negative, int intPartLength) throws JacksonException
      Throws:
      JacksonException
    • _verifyNoLeadingZeroes

      private final int _verifyNoLeadingZeroes() throws JacksonException
      Throws:
      JacksonException
    • _parseFloat

      private final JsonToken _parseFloat(char[] outBuf, int outPtr, int c, boolean negative, int integerPartLength) throws JacksonException
      Throws:
      JacksonException
    • _verifyRootSpace

      private final void _verifyRootSpace(int ch) throws JacksonException
      Method called to ensure that a root-value is followed by a space token.

      NOTE: caller MUST ensure there is at least one character available; and that input pointer is AT given char (not past)

      Parameters:
      ch - First character of likely white space to skip
      Throws:
      JacksonIOException - for low-level read issues
      StreamReadException - for decoding problems (invalid white space)
      JacksonException
    • _parseName

      protected final String _parseName(int i) throws JacksonException
      Throws:
      JacksonException
    • parseMediumName

      protected final String parseMediumName(int q2) throws JacksonException
      Throws:
      JacksonException
    • parseMediumName2

      protected final String parseMediumName2(int q3, int q2) throws JacksonException
      Throws:
      JacksonException
    • parseLongName

      protected final String parseLongName(int q, int q2, int q3) throws JacksonException
      Throws:
      JacksonException
    • slowParseName

      protected String slowParseName() throws JacksonException
      Throws:
      JacksonException
    • parseName

      private final String parseName(int q1, int ch, int lastQuadBytes) throws JacksonException
      Throws:
      JacksonException
    • parseName

      private final String parseName(int q1, int q2, int ch, int lastQuadBytes) throws JacksonException
      Throws:
      JacksonException
    • parseName

      private final String parseName(int q1, int q2, int q3, int ch, int lastQuadBytes) throws JacksonException
      Throws:
      JacksonException
    • parseEscapedName

      protected final String parseEscapedName(int[] quads, int qlen, int currQuad, int ch, int currQuadBytes) throws JacksonException
      Throws:
      JacksonException
    • _handleOddName

      protected String _handleOddName(int ch) throws JacksonException
      Method called when we see non-white space character other than double quote, when expecting a property name. In standard mode will just throw an exception; but in non-standard modes may be able to parse name.
      Parameters:
      ch - First undecoded character of possible "odd name" to decode
      Returns:
      Name decoded, if allowed and successful
      Throws:
      JacksonIOException - for low-level read issues
      StreamReadException - for decoding problems (invalid name)
      JacksonException
    • _parseAposName

      protected String _parseAposName() throws JacksonException
      Throws:
      JacksonException
    • findName

      private final String findName(int q1, int lastQuadBytes) throws StreamReadException
      Throws:
      StreamReadException
    • findName

      private final String findName(int q1, int q2, int lastQuadBytes) throws StreamReadException
      Throws:
      StreamReadException
    • findName

      private final String findName(int q1, int q2, int q3, int lastQuadBytes) throws StreamReadException
      Throws:
      StreamReadException
    • findName

      private final String findName(int[] quads, int qlen, int lastQuad, int lastQuadBytes) throws StreamReadException
      Throws:
      StreamReadException
    • addName

      private final String addName(int[] quads, int qlen, int lastQuadBytes) throws StreamReadException
      Throws:
      StreamReadException
    • _padLastQuad

      private static final int _padLastQuad(int q, int bytes)
    • _loadMoreGuaranteed

      protected void _loadMoreGuaranteed() throws JacksonException
      Throws:
      JacksonException
    • _finishString

      protected void _finishString() throws JacksonException
      Throws:
      JacksonException
    • _finishAndReturnString

      protected String _finishAndReturnString() throws JacksonException
      Throws:
      JacksonException
    • _finishString2

      private final void _finishString2(char[] outBuf, int outPtr) throws JacksonException
      Throws:
      JacksonException
    • _skipString

      protected void _skipString() throws JacksonException
      Method called to skim through rest of unparsed String value, if it is not needed. This can be done bit faster if contents need not be stored for future access.
      Throws:
      JacksonIOException - for low-level read issues
      StreamReadException - for decoding problems (invalid String value)
      JacksonException
    • _streamString

      private long _streamString(Writer writer) throws IOException, JacksonException
      Throws:
      IOException
      JacksonException
    • _handleUnexpectedValue

      protected JsonToken _handleUnexpectedValue(int c) throws JacksonException
      Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.
      Parameters:
      c - First undecoded character of possible "odd value" to decode
      Returns:
      Type of value decoded, if allowed and successful
      Throws:
      JacksonIOException - for low-level read issues
      StreamReadException - for decoding problems
      JacksonException
    • _handleApos

      protected JsonToken _handleApos() throws JacksonException
      Throws:
      JacksonException
    • _handleInvalidNumberStart

      protected JsonToken _handleInvalidNumberStart(int ch, boolean neg) throws JacksonException
      Throws:
      JacksonException
    • _handleInvalidNumberStart

      protected JsonToken _handleInvalidNumberStart(int ch, boolean neg, boolean hasSign) throws JacksonException
      Throws:
      JacksonException
    • _matchTrue

      protected final void _matchTrue() throws JacksonException
      Throws:
      JacksonException
    • _matchFalse

      protected final void _matchFalse() throws JacksonException
      Throws:
      JacksonException
    • _matchNull

      protected final void _matchNull() throws JacksonException
      Throws:
      JacksonException
    • _matchToken

      protected final void _matchToken(String matchStr, int i) throws JacksonException
      Throws:
      JacksonException
    • _matchToken2

      private final void _matchToken2(String matchStr, int i) throws JacksonException
      Throws:
      JacksonException
    • _checkMatchEnd

      private final void _checkMatchEnd(String matchStr, int i, int ch) throws JacksonException
      Throws:
      JacksonException
    • _skipWS

      private final int _skipWS() throws JacksonException
      Throws:
      JacksonException
    • _skipWS2

      private final int _skipWS2() throws JacksonException
      Throws:
      JacksonException
    • _skipWSOrEnd

      private final int _skipWSOrEnd() throws JacksonException
      Throws:
      JacksonException
    • _skipWSOrEnd2

      private final int _skipWSOrEnd2() throws JacksonException
      Throws:
      JacksonException
    • _skipColon

      private final int _skipColon() throws JacksonException
      Throws:
      JacksonException
    • _skipColon2

      private final int _skipColon2(boolean gotColon) throws JacksonException
      Throws:
      JacksonException
    • _skipComment

      private final void _skipComment() throws JacksonException
      Throws:
      JacksonException
    • _skipCComment

      private final void _skipCComment() throws JacksonException
      Throws:
      JacksonException
    • _skipYAMLComment

      private final boolean _skipYAMLComment() throws JacksonException
      Throws:
      JacksonException
    • _skipLine

      private final void _skipLine() throws JacksonException
      Throws:
      JacksonException
    • _decodeEscaped

      protected char _decodeEscaped() throws JacksonException
      Description copied from class: ParserBase
      Method that sub-classes must implement to support escaped sequences in base64-encoded sections. Sub-classes that do not need base64 support can leave this as is
      Overrides:
      _decodeEscaped in class ParserBase
      Returns:
      Character decoded, if any
      Throws:
      JacksonException - If escape decoding fails
    • _decodeCharForError

      protected int _decodeCharForError(int firstByte) throws JacksonException
      Throws:
      JacksonException
    • _decodeUtf8_2

      private final int _decodeUtf8_2(int c) throws JacksonException
      Throws:
      JacksonException
    • _decodeUtf8_3

      private final int _decodeUtf8_3(int c1) throws JacksonException
      Throws:
      JacksonException
    • _decodeUtf8_3fast

      private final int _decodeUtf8_3fast(int c1) throws JacksonException
      Throws:
      JacksonException
    • _decodeUtf8_4

      private final int _decodeUtf8_4(int c) throws JacksonException
      Throws:
      JacksonException
    • _skipUtf8_2

      private final void _skipUtf8_2() throws JacksonException
      Throws:
      JacksonException
    • _skipUtf8_3

      private final void _skipUtf8_3() throws JacksonException
      Throws:
      JacksonException
    • _skipUtf8_4

      private final void _skipUtf8_4(int c) throws JacksonException
      Throws:
      JacksonException
    • _skipCR

      protected final void _skipCR() throws JacksonException
      Throws:
      JacksonException
    • nextByte

      private int nextByte() throws JacksonException
      Throws:
      JacksonException
    • _reportInvalidToken

      protected <T> T _reportInvalidToken(String matchedPart, int ptr) throws JacksonException
      Throws:
      JacksonException
    • _reportInvalidToken

      protected <T> T _reportInvalidToken(String matchedPart) throws JacksonException
      Throws:
      JacksonException
    • _reportInvalidToken

      protected <T> T _reportInvalidToken(String matchedPart, String msg) throws JacksonException
      Throws:
      JacksonException
    • _reportInvalidChar

      protected <T> T _reportInvalidChar(int c) throws StreamReadException
      Throws:
      StreamReadException
    • _reportInvalidInitial

      protected <T> T _reportInvalidInitial(int mask) throws StreamReadException
      Throws:
      StreamReadException
    • _reportInvalidOther

      protected <T> T _reportInvalidOther(int mask) throws StreamReadException
      Throws:
      StreamReadException
    • _reportInvalidOther

      protected <T> T _reportInvalidOther(int mask, int ptr) throws StreamReadException
      Throws:
      StreamReadException
    • _decodeBase64

      protected final byte[] _decodeBase64(Base64Variant b64variant) throws JacksonException
      Efficient handling for incremental parsing of base64-encoded textual content.
      Parameters:
      b64variant - Type of base64 encoding expected in context
      Returns:
      Fully decoded value of base64 content
      Throws:
      JacksonIOException - for low-level read issues
      StreamReadException - for decoding problems (invalid content)
      JacksonException
    • currentTokenLocation

      public TokenStreamLocation currentTokenLocation()
      Description copied from class: JsonParser
      Method that return the starting location of the current token; that is, position of the first character from input that starts the current token.

      Note that the location is not guaranteed to be accurate (although most implementation will try their best): some implementations may only return TokenStreamLocation.NA due to not having access to input location information (when delegating actual decoding work to other library).

      Specified by:
      currentTokenLocation in class JsonParser
      Returns:
      Starting location of the token parser currently points to
    • currentLocation

      public TokenStreamLocation currentLocation()
      Description copied from class: JsonParser
      Method that returns location of the last processed character; usually for error reporting purposes.

      Note that the location is not guaranteed to be accurate (although most implementation will try their best): some implementations may only report specific boundary locations (start or end locations of tokens) and others only return TokenStreamLocation.NA due to not having access to input location information (when delegating actual decoding work to other library).

      Specified by:
      currentLocation in class JsonParser
      Returns:
      Location of the last processed input unit (byte or character)
    • _currentLocationMinusOne

      protected TokenStreamLocation _currentLocationMinusOne()
      Description copied from class: ParserMinimalBase
      Factory method used to provide location for cases where we must read and consume a single "wrong" character (to possibly allow error recovery), but need to report accurate location for that character: if so, the current location is past location we want, and location we want will be "one location earlier".

      Default implementation simply returns JsonParser.currentLocation()

      Overrides:
      _currentLocationMinusOne in class ParserMinimalBase
      Returns:
      Same as JsonParser.currentLocation() except offset by -1
    • _updateLocation

      private final void _updateLocation()
    • _updateNameLocation

      private final void _updateNameLocation()
    • _closeScope

      private final JsonToken _closeScope(int i) throws StreamReadException
      Throws:
      StreamReadException
    • _closeArrayScope

      private final void _closeArrayScope() throws StreamReadException
      Throws:
      StreamReadException
    • _closeObjectScope

      private final void _closeObjectScope() throws StreamReadException
      Throws:
      StreamReadException