- All Implemented Interfaces:
Closeable,AutoCloseable,Versioned
- Direct Known Subclasses:
NonBlockingUtf8JsonParserBase
-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.core.JsonParser
JsonParser.NumberType, JsonParser.NumberTypeFP -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intSince we are fed content that may or may not start at zero offset, we need to keep track of the first byte within that buffer, to be able to calculate logical offset within input "stream"protected intAlternate row tracker, used to keep track of position by `\r` marker (whereas_currInputRowtracks `\n`).protected booleanFlag that is sent when calling application indicates that there will be no more input to parse.protected intCurrent main decoding state within logical treeprotected intValue of_majorStateafter completing a scalar valueprotected intAdditional indicator within state; contextually relevant for just that stateprotected intSecondary minor state indicator used during decoding of escapes and/or multi-byte Unicode charactersprotected intWhen tokenizing non-standard ("odd") tokens, this is the type to consider; also works as index to actual textual representation.protected intprotected intprotected intprotected int[]Temporary buffer used for name parsing.protected intprotected intprotected intprotected final ByteQuadsCanonicalizerSymbol table that contains property names encountered so farprotected static final intprotected static final intprotected static final intState after non-blocking input source has indicated that no more input is forthcoming AND we have exhausted all the inputprotected static final intState right after parser has been constructed, before seeing the first byte to handle possible (but optional) BOM.protected static final intprotected static final intprotected static final intprotected static final intState right after parser a root value has been finished, but next token has not yet been recognized.protected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intState in which part of (UTF-8) BOM has been detected, but not yet completely.protected static final intState between root-level value, having processed at least one white-space character, and expecting either more, start of a value, or end of input stream.protected static final intState between root-level value, waiting for at least one white-space character as separatorprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intSpecial state at which point decoding of a non-quoted token has encountered a problem; that is, either not matching fully (like "truf" instead of "true", at "tru"), or not having trailing separator (or end of input), like "trueful".protected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final intprotected static final double[]protected static final String[]Fields inherited from class tools.jackson.core.json.JsonParserBase
_formatReadFeatures, _nameCopied, _nextToken, _streamReadContextFields inherited from class tools.jackson.core.base.ParserBase
_binaryValue, _byteArrayBuilder, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _numberBigDecimal, _numberBigInt, _numberDouble, _numberFloat, _numberInt, _numberIsNaN, _numberLong, _numberNegative, _numberString, _numTypesValid, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotalFields inherited from class tools.jackson.core.base.ParserMinimalBase
_closed, _currToken, _ioContext, _lastClearedToken, _objectReadContext, _streamReadConstraints, _streamReadFeatures, _tokenCount, _trackMaxTokenCount, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_RS, INT_SLASH, INT_SPACE, INT_TAB, MAX_BYTE_I, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MAX_SHORT_I, MIN_BYTE_I, MIN_INT_D, MIN_INT_L, MIN_LONG_D, MIN_SHORT_I, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN, STREAM_READ_FEATURE_DEFAULTSFields inherited from class tools.jackson.core.JsonParser
DEFAULT_READ_CAPABILITIES -
Constructor Summary
ConstructorsConstructorDescriptionNonBlockingJsonParserBase(ObjectReadContext readCtxt, IOContext ctxt, int stdFeatures, int formatFeatures, ByteQuadsCanonicalizer sym) -
Method Summary
Modifier and TypeMethodDescriptionprotected final String_addName(int[] quads, int qlen, int lastQuadBytes) protected final JsonTokenprotected voidAbstract method for sub-classes to implement; to be called byParserMinimalBase.close()implementation here.protected final JsonTokenprotected TokenStreamLocationFactory 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".protected final JsonTokenprotected final JsonToken_fieldComplete(String name) protected final String_findName(int q1, int lastQuadBytes) protected final String_findName(int q1, int q2, int lastQuadBytes) protected final String_findName(int q1, int q2, int q3, int lastQuadBytes) protected final Stringprotected final String_nonStdToken(int type) protected static final int_padLastQuad(int q, int bytes) protected voidMethod called to release internal buffers owned by the base reader.protected void_reportInvalidChar(int c) protected void_reportInvalidInitial(int mask) protected void_reportInvalidOther(int mask) protected void_reportInvalidOther(int mask, int ptr) protected final JsonTokenprotected final JsonTokenprotected final voidprotected final JsonTokenprotected final JsonToken_valueCompleteInt(int value, String asText) protected final JsonToken_valueNonStdNumberComplete(int type) booleanMethod that can be called to determine if this parser instance uses non-blocking ("asynchronous") input access for decoding or not.Method that returns location of the last processed character; usually for error reporting purposes.Method that return the starting location of the current token; that is, position of the first character from input that starts the current token.byte[]getBinaryValue(Base64Variant b64variant) 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.Accessor that can be called if (and only if) the current token isJsonToken.VALUE_EMBEDDED_OBJECT.Method for accessing textual representation of the current event; if no current event (before first call toJsonParser.nextToken(), or after encountering end-of-input), returns null.intMethod to read the textual representation of the current token in chunks and pass it to the given Writer.char[]Method similar toJsonParser.getString(), but that will return underlying (unmodifiable) character array that contains textual value, instead of constructing a String object to contain this information.intAccessor used withJsonParser.getStringCharacters(), to know length of String stored in returned buffer.intAccessor used withJsonParser.getStringCharacters(), to know offset of the first text content character within buffer.Method that will try to convert value of current token to aString.getValueAsString(String defValue) Method that will try to convert value of current token to aString.booleanMethod that can be used to determine whether calling ofJsonParser.getStringCharacters()would be the most efficient way to access String value for the event parser currently points to (compared toJsonParser.getString()).intreadBinaryValue(Base64Variant b64variant, OutputStream out) Similar toJsonParser.readBinaryValue(OutputStream)but allows explicitly specifying base64 variant to use.abstract intMethod that can be called to push back any content that has been read but not consumed by the parser.Method that can be used to get access to object that is used to access input being parsed; this is usually eitherInputStreamorReader, depending on what parser was constructed with.Methods inherited from class tools.jackson.core.json.JsonParserBase
_handleUnrecognizedCharacterEscape, _isAllowedCtrlCharRS, _parseIntValue, _parseNumericValue, _reportExtraEndMarker, _reportMismatchedEndMarker, _reportTooLongIntegral, _throwUnquotedSpace, _validJsonTokenList, _validJsonValueList, assignCurrentValue, createChildArrayContext, createChildObjectContext, currentName, currentNameInBuffer, currentValue, isEnabled, streamReadCapabilities, streamReadContext, versionMethods inherited from class tools.jackson.core.base.ParserBase
_contentReference, _contentReferenceRedacted, _convertBigDecimalToBigInteger, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _getBigDecimal, _getBigInteger, _getByteArrayBuilder, _getNumberDouble, _getNumberFloat, _growNameDecodeBuffer, _handleBase64MissingPadding, _handleEOF, _reportInvalidBase64Char, _reportInvalidBase64Char, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToFloat, convertNumberToInt, convertNumberToLong, getBigIntegerValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getNumberValueDeferred, getNumberValueExact, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isNaN, reset, resetAsNaN, resetFloat, resetIntMethods inherited from class tools.jackson.core.base.ParserMinimalBase
_constructInputCoercion, _constructNotNumericType, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _nullSafeUpdateToken, _reportBadInputStream, _reportBadReader, _reportError, _reportError, _reportError, _reportError, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidNumber, _reportInvalidSpace, _reportMissingRootWS, _reportOverflowByte, _reportOverflowInt, _reportOverflowInt, _reportOverflowInt, _reportOverflowLong, _reportOverflowLong, _reportOverflowLong, _reportOverflowShort, _reportUnexpectedChar, _reportUnexpectedNumberChar, _throwInternal, _updateToken, _updateTokenToNA, _updateTokenToNull, _wrapIOFailure, clearCurrentToken, currentNameMatch, currentToken, currentTokenCount, currentTokenId, finishToken, getBooleanValue, getByteValue, getLastClearedToken, getNumberTypeFP, getShortValue, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, hasCurrentToken, hasToken, hasTokenId, isClosed, isEnabled, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextName, nextName, nextNameMatch, nextValue, objectReadContext, readValueAs, readValueAs, readValueAs, readValueAsTree, skipChildren, streamReadConstraints, streamReadFeaturesMethods inherited from class tools.jackson.core.JsonParser
_constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _reportUnsupportedOperation, canReadObjectId, canReadTypeId, getBinaryValue, getObjectId, getSchema, getText, getTextCharacters, getTextLength, getTextOffset, getTypeId, getValueAsBoolean, getValueAsDouble, nextBooleanValue, nextIntValue, nextLongValue, nextStringValue, nextToken, nonBlockingInputFeeder, readBinaryValue, releaseBuffered
-
Field Details
-
MAJOR_INITIAL
protected static final int MAJOR_INITIALState right after parser has been constructed, before seeing the first byte to handle possible (but optional) BOM.- See Also:
-
MAJOR_ROOT
protected static final int MAJOR_ROOTState right after parser a root value has been finished, but next token has not yet been recognized.- See Also:
-
MAJOR_OBJECT_PROPERTY_FIRST
protected static final int MAJOR_OBJECT_PROPERTY_FIRST- See Also:
-
MAJOR_OBJECT_PROPERTY_NEXT
protected static final int MAJOR_OBJECT_PROPERTY_NEXT- See Also:
-
MAJOR_OBJECT_VALUE
protected static final int MAJOR_OBJECT_VALUE- See Also:
-
MAJOR_ARRAY_ELEMENT_FIRST
protected static final int MAJOR_ARRAY_ELEMENT_FIRST- See Also:
-
MAJOR_ARRAY_ELEMENT_NEXT
protected static final int MAJOR_ARRAY_ELEMENT_NEXT- See Also:
-
MAJOR_CLOSED
protected static final int MAJOR_CLOSEDState after non-blocking input source has indicated that no more input is forthcoming AND we have exhausted all the input- See Also:
-
MINOR_ROOT_BOM
protected static final int MINOR_ROOT_BOMState in which part of (UTF-8) BOM has been detected, but not yet completely.- See Also:
-
MINOR_ROOT_NEED_SEPARATOR
protected static final int MINOR_ROOT_NEED_SEPARATORState between root-level value, waiting for at least one white-space character as separator- See Also:
-
MINOR_ROOT_GOT_SEPARATOR
protected static final int MINOR_ROOT_GOT_SEPARATORState between root-level value, having processed at least one white-space character, and expecting either more, start of a value, or end of input stream.- See Also:
-
MINOR_PROPERTY_LEADING_WS
protected static final int MINOR_PROPERTY_LEADING_WS- See Also:
-
MINOR_PROPERTY_LEADING_COMMA
protected static final int MINOR_PROPERTY_LEADING_COMMA- See Also:
-
MINOR_PROPERTY_NAME
protected static final int MINOR_PROPERTY_NAME- See Also:
-
MINOR_PROPERTY_NAME_ESCAPE
protected static final int MINOR_PROPERTY_NAME_ESCAPE- See Also:
-
MINOR_PROPERTY_APOS_NAME
protected static final int MINOR_PROPERTY_APOS_NAME- See Also:
-
MINOR_PROPERTY_UNQUOTED_NAME
protected static final int MINOR_PROPERTY_UNQUOTED_NAME- See Also:
-
MINOR_VALUE_LEADING_WS
protected static final int MINOR_VALUE_LEADING_WS- See Also:
-
MINOR_VALUE_EXPECTING_COMMA
protected static final int MINOR_VALUE_EXPECTING_COMMA- See Also:
-
MINOR_VALUE_EXPECTING_COLON
protected static final int MINOR_VALUE_EXPECTING_COLON- See Also:
-
MINOR_VALUE_WS_AFTER_COMMA
protected static final int MINOR_VALUE_WS_AFTER_COMMA- See Also:
-
MINOR_VALUE_TOKEN_NULL
protected static final int MINOR_VALUE_TOKEN_NULL- See Also:
-
MINOR_VALUE_TOKEN_TRUE
protected static final int MINOR_VALUE_TOKEN_TRUE- See Also:
-
MINOR_VALUE_TOKEN_FALSE
protected static final int MINOR_VALUE_TOKEN_FALSE- See Also:
-
MINOR_VALUE_TOKEN_NON_STD
protected static final int MINOR_VALUE_TOKEN_NON_STD- See Also:
-
MINOR_NUMBER_PLUS
protected static final int MINOR_NUMBER_PLUS- See Also:
-
MINOR_NUMBER_MINUS
protected static final int MINOR_NUMBER_MINUS- See Also:
-
MINOR_NUMBER_ZERO
protected static final int MINOR_NUMBER_ZERO- See Also:
-
MINOR_NUMBER_MINUSZERO
protected static final int MINOR_NUMBER_MINUSZERO- See Also:
-
MINOR_NUMBER_INTEGER_DIGITS
protected static final int MINOR_NUMBER_INTEGER_DIGITS- See Also:
-
MINOR_NUMBER_FRACTION_DIGITS
protected static final int MINOR_NUMBER_FRACTION_DIGITS- See Also:
-
MINOR_NUMBER_EXPONENT_MARKER
protected static final int MINOR_NUMBER_EXPONENT_MARKER- See Also:
-
MINOR_NUMBER_EXPONENT_DIGITS
protected static final int MINOR_NUMBER_EXPONENT_DIGITS- See Also:
-
MINOR_VALUE_STRING
protected static final int MINOR_VALUE_STRING- See Also:
-
MINOR_VALUE_STRING_ESCAPE
protected static final int MINOR_VALUE_STRING_ESCAPE- See Also:
-
MINOR_VALUE_STRING_UTF8_2
protected static final int MINOR_VALUE_STRING_UTF8_2- See Also:
-
MINOR_VALUE_STRING_UTF8_3
protected static final int MINOR_VALUE_STRING_UTF8_3- See Also:
-
MINOR_VALUE_STRING_UTF8_4
protected static final int MINOR_VALUE_STRING_UTF8_4- See Also:
-
MINOR_VALUE_APOS_STRING
protected static final int MINOR_VALUE_APOS_STRING- See Also:
-
MINOR_VALUE_TOKEN_ERROR
protected static final int MINOR_VALUE_TOKEN_ERRORSpecial state at which point decoding of a non-quoted token has encountered a problem; that is, either not matching fully (like "truf" instead of "true", at "tru"), or not having trailing separator (or end of input), like "trueful". Attempt is made, then, to decode likely full input token to report suitable error.- See Also:
-
MINOR_COMMENT_LEADING_SLASH
protected static final int MINOR_COMMENT_LEADING_SLASH- See Also:
-
MINOR_COMMENT_CLOSING_ASTERISK
protected static final int MINOR_COMMENT_CLOSING_ASTERISK- See Also:
-
MINOR_COMMENT_C
protected static final int MINOR_COMMENT_C- See Also:
-
MINOR_COMMENT_CPP
protected static final int MINOR_COMMENT_CPP- See Also:
-
MINOR_COMMENT_YAML
protected static final int MINOR_COMMENT_YAML- See Also:
-
_symbols
Symbol table that contains property names encountered so far -
_quadBuffer
protected int[] _quadBufferTemporary buffer used for name parsing. -
_quadLength
protected int _quadLength -
_quad1
protected int _quad1 -
_pending32
protected int _pending32 -
_pendingBytes
protected int _pendingBytes -
_quoted32
protected int _quoted32 -
_quotedDigits
protected int _quotedDigits -
_majorState
protected int _majorStateCurrent main decoding state within logical tree -
_majorStateAfterValue
protected int _majorStateAfterValueValue of_majorStateafter completing a scalar value -
_minorState
protected int _minorStateAdditional indicator within state; contextually relevant for just that state -
_minorStateAfterSplit
protected int _minorStateAfterSplitSecondary minor state indicator used during decoding of escapes and/or multi-byte Unicode characters -
_endOfInput
protected boolean _endOfInputFlag that is sent when calling application indicates that there will be no more input to parse. -
NON_STD_TOKEN_NAN
protected static final int NON_STD_TOKEN_NAN- See Also:
-
NON_STD_TOKEN_INFINITY
protected static final int NON_STD_TOKEN_INFINITY- See Also:
-
NON_STD_TOKEN_PLUS_INFINITY
protected static final int NON_STD_TOKEN_PLUS_INFINITY- See Also:
-
NON_STD_TOKEN_MINUS_INFINITY
protected static final int NON_STD_TOKEN_MINUS_INFINITY- See Also:
-
NON_STD_TOKENS
-
NON_STD_TOKEN_VALUES
protected static final double[] NON_STD_TOKEN_VALUES -
_nonStdTokenType
protected int _nonStdTokenTypeWhen tokenizing non-standard ("odd") tokens, this is the type to consider; also works as index to actual textual representation. -
_currBufferStart
protected int _currBufferStartSince we are fed content that may or may not start at zero offset, we need to keep track of the first byte within that buffer, to be able to calculate logical offset within input "stream" -
_currInputRowAlt
protected int _currInputRowAltAlternate row tracker, used to keep track of position by `\r` marker (whereas_currInputRowtracks `\n`). Used to simplify tracking of linefeeds, assuming that input typically uses various linefeed combinations (`\r`, `\n` or `\r\n`) consistently, in which case we can simply choose max of two row candidates.
-
-
Constructor Details
-
NonBlockingJsonParserBase
public NonBlockingJsonParserBase(ObjectReadContext readCtxt, IOContext ctxt, int stdFeatures, int formatFeatures, ByteQuadsCanonicalizer sym)
-
-
Method Details
-
canParseAsync
public boolean canParseAsync()Description copied from class:JsonParserMethod that can be called to determine if this parser instance uses non-blocking ("asynchronous") input access for decoding or not. Access mode is determined by earlier calls viaJsonFactory; it may not be changed after construction.If non-blocking decoding is
true, it is possible to callJsonParser.nonBlockingInputFeeder()to obtain object to use for feeding input; otherwise (falsereturned) input is read by blocking.- Overrides:
canParseAsyncin classJsonParser- Returns:
- True if this is a non-blocking ("asynchronous") parser
-
symbolTableForTests
-
releaseBuffered
Description copied from class:JsonParserMethod 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:
releaseBufferedin classJsonParser- 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
-
_releaseBuffers
Description copied from class:ParserMinimalBaseMethod called to release internal buffers owned by the base reader. This is expected to be called afterParserMinimalBase._closeInput()since the buffers are expected not to be needed any longer.- Overrides:
_releaseBuffersin classParserBase- Throws:
JacksonException
-
streamReadInputSource
Description copied from class:JsonParserMethod that can be used to get access to object that is used to access input being parsed; this is usually eitherInputStreamorReader, 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:
streamReadInputSourcein classJsonParser- Returns:
- Input source this parser was configured with
-
_closeInput
protected void _closeInput()Description copied from class:ParserMinimalBaseAbstract method for sub-classes to implement; to be called byParserMinimalBase.close()implementation here.- Specified by:
_closeInputin classParserMinimalBase
-
hasStringCharacters
public boolean hasStringCharacters()Description copied from class:JsonParserMethod that can be used to determine whether calling ofJsonParser.getStringCharacters()would be the most efficient way to access String value for the event parser currently points to (compared toJsonParser.getString()).- Overrides:
hasStringCharactersin classJsonParserBase- Returns:
- True if parser currently has character array that can
be efficiently returned via
JsonParser.getStringCharacters(); false means that it may or may not exist
-
currentLocation
Description copied from class:JsonParserMethod 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.NAdue to not having access to input location information (when delegating actual decoding work to other library).- Specified by:
currentLocationin classJsonParser- Returns:
- Location of the last processed input unit (byte or character)
-
_currentLocationMinusOne
Description copied from class:ParserMinimalBaseFactory 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:
_currentLocationMinusOnein classParserMinimalBase- Returns:
- Same as
JsonParser.currentLocation()except offset by -1
-
currentTokenLocation
Description copied from class:JsonParserMethod 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.NAdue to not having access to input location information (when delegating actual decoding work to other library).- Specified by:
currentTokenLocationin classJsonParser- Returns:
- Starting location of the token parser currently points to
-
getString
Method for accessing textual representation of the current event; if no current event (before first call toJsonParser.nextToken(), or after encountering end-of-input), returns null. Method can be called for any event.- Specified by:
getStringin classJsonParser- Returns:
- String value associated with the current token (one returned
by
JsonParser.nextToken()or other iteration methods) - Throws:
JacksonException- if there are general I/O or parse issues, including if the text is too large, seeStreamReadConstraints.Builder.maxStringLength(int)
-
_getText2
- Throws:
JacksonException
-
getString
Description copied from class:JsonParserMethod 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 singleStringto 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 othergetString()calls (that is, it will not be consumed). So this accessor only avoids construction ofStringcompared to plainJsonParser.getString()method.NOTE: In Jackson 2.x this method was called
getString(Writer).- Overrides:
getStringin classParserMinimalBase- Parameters:
writer- Writer to write String value to- Returns:
- The number of characters written to the Writer
- Throws:
JacksonIOException- for low-level read issues, or failed write usingWriterStreamReadException- for decoding problemsJacksonException
-
getValueAsString
Description copied from class:JsonParserMethod that will try to convert value of current token to aString. 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 andnulltoken), default value of null will be returned; no exceptions are thrown.- Overrides:
getValueAsStringin classParserMinimalBase- Returns:
Stringvalue current token is converted to, if possible;nullotherwise- Throws:
JacksonException
-
getValueAsString
Description copied from class:JsonParserMethod that will try to convert value of current token to aString. 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 andnulltoken), specified default value will be returned; no exceptions are thrown.- Overrides:
getValueAsStringin classParserMinimalBase- Parameters:
defValue- Default value to return if conversion toStringis not possible- Returns:
Stringvalue current token is converted to, if possible;defotherwise- Throws:
JacksonException
-
getStringCharacters
Description copied from class:JsonParserMethod similar toJsonParser.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:- String contents are not guaranteed to start at
index 0 (rather, call
JsonParser.getStringOffset()) to know the actual offset - Length of string contents may be less than the
length of returned buffer: call
JsonParser.getStringLength()for actual length of returned content.
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:
getStringCharactersin classJsonParser- Returns:
- Buffer that contains the current textual value (but not necessarily at offset 0, and not necessarily until the end of buffer)
- Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
- String contents are not guaranteed to start at
index 0 (rather, call
-
getStringLength
Description copied from class:JsonParserAccessor used withJsonParser.getStringCharacters(), to know length of String stored in returned buffer.- Specified by:
getStringLengthin classJsonParser- Returns:
- Number of characters within buffer returned
by
JsonParser.getStringCharacters()that are part of textual content of the current token. - Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
-
getStringOffset
Description copied from class:JsonParserAccessor used withJsonParser.getStringCharacters(), to know offset of the first text content character within buffer.- Specified by:
getStringOffsetin classJsonParser- Returns:
- Offset of the first character within buffer returned
by
JsonParser.getStringCharacters()that is part of textual content of the current token. - Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
-
getBinaryValue
Description copied from class:JsonParserMethod 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 viaJsonParser.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:
getBinaryValuein classParserBase- Parameters:
b64variant- Expected variant of base64 encoded content (seeBase64Variantsfor definitions of "standard" variants).- Returns:
- Decoded binary data
- Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
-
readBinaryValue
Description copied from class:JsonParserSimilar toJsonParser.readBinaryValue(OutputStream)but allows explicitly specifying base64 variant to use.- Overrides:
readBinaryValuein classJsonParser- Parameters:
b64variant- base64 variant to useout- Output stream to use for passing decoded binary data- Returns:
- Number of bytes that were decoded and written via
OutputStream - Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
-
getEmbeddedObject
Description copied from class:JsonParserAccessor that can be called if (and only if) the current token isJsonToken.VALUE_EMBEDDED_OBJECT. For other token types, null is returned.Note: only some specialized parser implementations support embedding of objects (usually ones that are facades on top of non-streaming sources, such as object trees). One exception is access to binary content (whether via base64 encoding or not) which typically is accessible using this method, as well as
JsonParser.getBinaryValue().- Overrides:
getEmbeddedObjectin classParserMinimalBase- Returns:
- Embedded value (usually of "native" type supported by format)
for the current token, if any;
null otherwise - Throws:
JacksonException
-
_startArrayScope
- Throws:
JacksonException
-
_startObjectScope
- Throws:
JacksonException
-
_closeArrayScope
- Throws:
JacksonException
-
_closeObjectScope
- Throws:
JacksonException
-
_findName
- Throws:
JacksonException
-
_findName
- Throws:
JacksonException
-
_findName
- Throws:
JacksonException
-
_addName
- Throws:
JacksonException
-
_padLastQuad
protected static final int _padLastQuad(int q, int bytes) -
_eofAsNextToken
- Throws:
JacksonException
-
_fieldComplete
- Throws:
JacksonException
-
_valueComplete
- Throws:
JacksonException
-
_valueCompleteInt
- Throws:
JacksonException
-
_nonStdToken
-
_valueNonStdNumberComplete
- Throws:
JacksonException
-
_updateTokenLocation
protected final void _updateTokenLocation() -
_reportInvalidChar
- Throws:
JacksonException
-
_reportInvalidInitial
- Throws:
JacksonException
-
_reportInvalidOther
- Throws:
JacksonException
-
_reportInvalidOther
- Throws:
JacksonException
-