- All Implemented Interfaces:
Closeable,AutoCloseable,Versioned
JsonParserDelegate that allows use of
TokenFilter for outputting a subset of content that
is visible to caller-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.core.JsonParser
JsonParser.NumberType, JsonParser.NumberTypeFP -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanFlag that determines whether filtering will continue after the first match is indicated or not: if `false`, output is based on just the first full match (returningTokenFilter.INCLUDE_ALL) and no more checks are made; if `true` then filtering will be applied as necessary until end of content.protected JsonTokenLast token retrieved vianextToken(), if any.protected TokenFilterContextIn cases where_headContextis "ahead" of context exposed to caller, this context points to what is currently exposed to caller.protected TokenFilterContextDuring traversal this is the actual "open" parse tree, which sometimes is the same as_exposedContext, and at other times is ahead of it.protected TokenFilter.InclusionFlag that determines whether path leading up to included content should also be automatically included or not.protected TokenFilterState that applies to the item within container, used where applicable.protected JsonTokenLast cleared token, if any: that is, value that was in effect whenclearCurrentToken()was called.protected intNumber of tokens for whichTokenFilter.INCLUDE_ALLhas been returned.protected TokenFilterObject consulted to determine whether to write parts of content generator is asked to write or not.Fields inherited from class tools.jackson.core.util.JsonParserDelegate
delegateFields inherited from class tools.jackson.core.JsonParser
DEFAULT_READ_CAPABILITIES -
Constructor Summary
ConstructorsConstructorDescriptionFilteringParserDelegate(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches) FilteringParserDelegate(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches, boolean allowNonBlockingParser) -
Method Summary
Modifier and TypeMethodDescriptionprotected TokenStreamContextprotected final JsonTokenprotected final JsonToken_nextTokenWithBuffering(TokenFilterContext buffRoot) voidMethod called to "consume" the current token by effectively removing it so thatJsonParser.hasCurrentToken()returns false, andJsonParser.currentToken()null).Method that returns location of the last processed character; usually for error reporting purposes.Method that can be called to get the name associated with the current token: forJsonToken.PROPERTY_NAMEs it will be the same as whatJsonParser.getString()returns; for Object property values it will be the preceding property name; and for others (array element, root-level values) null.Accessor to find which token parser currently points to, if any; null will be returned if none.final intMethod similar toJsonParser.currentToken()but that returns anintinstead ofJsonToken(enum value).Method that can be called to get the last token that was cleared usingJsonParser.clearCurrentToken().intAccessor for finding number of matches, where specific token and sub-tree starting (if structured type) are passed.Method for accessing textual representation of the current token; if no current token (before first call toJsonParser.nextToken(), or after encountering end-of-input), returns null.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 defaultValue) Method that will try to convert value of current token to aString.booleanMethod for checking whether parser currently points to a token (and data for that token is available).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()).final booleanMethod that is functionally equivalent to:return currentToken() == tbut may be more efficiently implemented.booleanhasTokenId(int id) Method that is functionally equivalent to:return currentTokenId() == idbut may be more efficiently implemented.booleanSpecialized accessor that can be used to verify that the current token indicates start array (usually meaning that current token isJsonToken.START_ARRAY) when start array is expected.booleanSimilar toJsonParser.isExpectedStartArrayToken(), but checks whether stream currently points toJsonToken.START_OBJECT.nextName()Method that fetches next token (as if callingJsonParser.nextToken()) and verifies whether it isJsonToken.PROPERTY_NAME; if it is, returns same asJsonParser.currentName(), otherwise null.booleanMethod that fetches next token (as if callingJsonParser.nextToken()) and verifies whether it isJsonToken.PROPERTY_NAMEwith specified name and returns result of that comparison.intnextNameMatch(PropertyNameMatcher matcher) Method that tries to match next token from stream asJsonToken.PROPERTY_NAME, and if so, further match it to one of pre-specified (field) names.Main iteration method, which will advance stream enough to determine type of the next token, if any.Iteration method that will advance stream enough to determine type of the next token that is a value type (including JSON Array and Object start/end markers).Need to override, re-implement similar to how method defined inParserMinimalBase, to keep state correct here.Method that can be used to access current parsing context reader is in.Methods inherited from class tools.jackson.core.util.JsonParserDelegate
assignCurrentValue, canParseAsync, canReadObjectId, canReadTypeId, close, currentNameMatch, currentTokenCount, currentTokenLocation, currentValue, delegate, finishToken, getBigIntegerValue, getBinaryValue, getBooleanValue, getByteValue, getDecimalValue, getDoubleValue, getEmbeddedObject, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberTypeFP, getNumberValue, getNumberValueDeferred, getNumberValueExact, getObjectId, getSchema, getShortValue, getString, getTypeId, getValueAsBoolean, getValueAsBoolean, getValueAsDouble, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, isClosed, isEnabled, isExpectedNumberIntToken, isNaN, nonBlockingInputFeeder, objectReadContext, readBinaryValue, readValueAs, readValueAs, readValueAs, readValueAsTree, streamReadCapabilities, streamReadConstraints, streamReadFeatures, streamReadInputSource, versionMethods inherited from class tools.jackson.core.JsonParser
_constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _reportUnsupportedOperation, getBinaryValue, getText, getTextCharacters, getTextLength, getTextOffset, nextBooleanValue, nextIntValue, nextLongValue, nextStringValue, readBinaryValue, releaseBuffered, releaseBuffered
-
Field Details
-
rootFilter
Object consulted to determine whether to write parts of content generator is asked to write or not. -
_allowMultipleMatches
protected boolean _allowMultipleMatchesFlag that determines whether filtering will continue after the first match is indicated or not: if `false`, output is based on just the first full match (returningTokenFilter.INCLUDE_ALL) and no more checks are made; if `true` then filtering will be applied as necessary until end of content. -
_inclusion
Flag that determines whether path leading up to included content should also be automatically included or not. If `false`, no path inclusion is done and only explicitly included entries are output; if `true` then path from main level down to match is also included as necessary. -
_currToken
Last token retrieved vianextToken(), if any. Null before the first call tonextToken(), as well as if token has been explicitly cleared -
_lastClearedToken
Last cleared token, if any: that is, value that was in effect whenclearCurrentToken()was called. -
_headContext
During traversal this is the actual "open" parse tree, which sometimes is the same as_exposedContext, and at other times is ahead of it. Note that this context is never null. -
_exposedContext
In cases where_headContextis "ahead" of context exposed to caller, this context points to what is currently exposed to caller. When the two are in sync, this context reference will benull. -
_itemFilter
State that applies to the item within container, used where applicable. Specifically used to pass inclusion state between property name and property, and also used for array elements. -
_matchCount
protected int _matchCountNumber of tokens for whichTokenFilter.INCLUDE_ALLhas been returned.
-
-
Constructor Details
-
FilteringParserDelegate
public FilteringParserDelegate(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches) - Parameters:
p- Parser to delegate calls tof- Filter to useinclusion- Definition of inclusion criteriaallowMultipleMatches- Whether to allow multiple matches- Throws:
IllegalArgumentException- if non-blocking (async) parser (for whichparser.canParseAsync()returns `true`) is used -- doing so requires use of different constructor:FilteringParserDelegate(JsonParser, TokenFilter, TokenFilter.Inclusion, boolean, boolean)
-
FilteringParserDelegate
public FilteringParserDelegate(JsonParser p, TokenFilter f, TokenFilter.Inclusion inclusion, boolean allowMultipleMatches, boolean allowNonBlockingParser) - Parameters:
p- Parser to delegate calls tof- Filter to useinclusion- Definition of inclusion criteriaallowMultipleMatches- Whether to allow multiple matchesallowNonBlockingParser- If true, allows use of NonBlockingJsonParser: must also feed all input to parser before calling nextToken on this delegate- Throws:
IllegalArgumentException- if NonBlockingJsonParser is used without explicit permission
-
-
Method Details
-
getFilter
-
getMatchCount
public int getMatchCount()Accessor for finding number of matches, where specific token and sub-tree starting (if structured type) are passed.- Returns:
- Number of matches
-
currentToken
Description copied from class:JsonParserAccessor to find which token parser currently points to, if any; null will be returned if none. If return value is non-null, data associated with the token is available via other accessor methods.- Overrides:
currentTokenin classJsonParserDelegate- Returns:
- Type of the token this parser currently points to, if any: null before any tokens have been read, and after end-of-input has been encountered, as well as if the current token has been explicitly cleared.
-
currentTokenId
public final int currentTokenId()Description copied from class:JsonParserMethod similar toJsonParser.currentToken()but that returns anintinstead ofJsonToken(enum value).Use of int directly is typically more efficient on switch statements, so this method may be useful when building low-overhead codecs. Note, however, that effect may not be big enough to matter: make sure to profile performance before deciding to use this method.
- Overrides:
currentTokenIdin classJsonParserDelegate- Returns:
intmatching one of constants fromJsonTokenId.
-
hasCurrentToken
public boolean hasCurrentToken()Description copied from class:JsonParserMethod for checking whether parser currently points to a token (and data for that token is available). Equivalent to check forparser.getCurrentToken() != null.- Overrides:
hasCurrentTokenin classJsonParserDelegate- Returns:
- True if the parser just returned a valid
token via
JsonParser.nextToken(); false otherwise (parser was just constructed, encountered end-of-input and returned null fromJsonParser.nextToken(), or the token has been consumed)
-
hasTokenId
public boolean hasTokenId(int id) Description copied from class:JsonParserMethod that is functionally equivalent to:return currentTokenId() == idbut may be more efficiently implemented.Note that no traversal or conversion is performed; so in some cases calling method like
JsonParser.isExpectedStartArrayToken()is necessary instead.- Overrides:
hasTokenIdin classJsonParserDelegate- Parameters:
id- Token id to match (from (@link JsonTokenId})- Returns:
Trueif the parser current points to specified token
-
hasToken
Description copied from class:JsonParserMethod that is functionally equivalent to:return currentToken() == tbut may be more efficiently implemented.Note that no traversal or conversion is performed; so in some cases calling method like
JsonParser.isExpectedStartArrayToken()is necessary instead.- Overrides:
hasTokenin classJsonParserDelegate- Parameters:
t- Token to match- Returns:
Trueif the parser current points to specified token
-
isExpectedStartArrayToken
public boolean isExpectedStartArrayToken()Description copied from class:JsonParserSpecialized accessor that can be used to verify that the current token indicates start array (usually meaning that current token isJsonToken.START_ARRAY) when start array is expected. For some specialized parsers this can return true for other cases as well; this is usually done to emulate arrays in cases underlying format is ambiguous (XML, for example, has no format-level difference between Objects and Arrays; it just has elements).Default implementation is equivalent to:
currentToken() == JsonToken.START_ARRAY
but may be overridden by custom parser implementations.- Overrides:
isExpectedStartArrayTokenin classJsonParserDelegate- Returns:
- True if the current token can be considered as a
start-array marker (such
JsonToken.START_ARRAY);falseif not
-
isExpectedStartObjectToken
public boolean isExpectedStartObjectToken()Description copied from class:JsonParserSimilar toJsonParser.isExpectedStartArrayToken(), but checks whether stream currently points toJsonToken.START_OBJECT.- Overrides:
isExpectedStartObjectTokenin classJsonParserDelegate- Returns:
- True if the current token can be considered as a
start-array marker (such
JsonToken.START_OBJECT);falseif not
-
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).- Overrides:
currentLocationin classJsonParserDelegate- Returns:
- Location of the last processed input unit (byte or character)
-
streamReadContext
Description copied from class:JsonParserMethod that can be used to access current parsing context reader is in. There are 3 different types: root, array and object contexts, with slightly different available information. Contexts are hierarchically nested, and can be used for example for figuring out part of the input document that correspond to specific array or object (for highlighting purposes, or error reporting). Contexts can also be used for simple xpath-like matching of input, if so desired.NOTE: method was called
getParsingContext()in Jackson 2.x- Overrides:
streamReadContextin classJsonParserDelegate- Returns:
- Stream output context (
TokenStreamContext) associated with this parser
-
currentName
Description copied from class:JsonParserMethod that can be called to get the name associated with the current token: forJsonToken.PROPERTY_NAMEs it will be the same as whatJsonParser.getString()returns; for Object property values it will be the preceding property name; and for others (array element, root-level values) null.- Overrides:
currentNamein classJsonParserDelegate- Returns:
- Name of the current property name, if any, in the parsing context (
nullif none)
-
clearCurrentToken
public void clearCurrentToken()Description copied from class:JsonParserMethod called to "consume" the current token by effectively removing it so thatJsonParser.hasCurrentToken()returns false, andJsonParser.currentToken()null). Cleared token value can still be accessed by callingJsonParser.getLastClearedToken()(if absolutely needed), but usually isn't.Method was added to be used by the optional data binder, since it has to be able to consume last token used for binding (so that it will not be used again).
- Overrides:
clearCurrentTokenin classJsonParserDelegate
-
getLastClearedToken
Description copied from class:JsonParserMethod that can be called to get the last token that was cleared usingJsonParser.clearCurrentToken(). This is not necessarily the latest token read. Will return null if no tokens have been cleared, or if parser has been closed.- Overrides:
getLastClearedTokenin classJsonParserDelegate- Returns:
- Last cleared token, if any;
nullotherwise
-
nextToken
Description copied from class:JsonParserMain 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.- Overrides:
nextTokenin classJsonParserDelegate- Returns:
- Next token from the stream, if any found, or null to indicate end-of-input
- Throws:
JacksonException- for low-level read issuesStreamReadException- for decoding problems
-
_nextToken2
- Throws:
JacksonException
-
_nextTokenWithBuffering
protected final JsonToken _nextTokenWithBuffering(TokenFilterContext buffRoot) throws JacksonException - Throws:
JacksonException
-
nextValue
Description copied from class:JsonParserIteration method that will advance stream enough to determine type of the next token that is a value type (including JSON Array and Object start/end markers). Or put another way, nextToken() will be called once, and ifJsonToken.PROPERTY_NAMEis returned, another time to get the value of the property. Method is most useful for iterating over value entries of JSON objects; Object property name will still be available by callingJsonParser.currentName()when parser points to the value.- Overrides:
nextValuein classJsonParserDelegate- Returns:
- Next non-field-name token from the stream, if any found,
or null to indicate end-of-input (or, for non-blocking
parsers,
JsonToken.NOT_AVAILABLEif no tokens were available yet) - Throws:
JacksonException- for low-level read issuesStreamReadException- for decoding problems
-
skipChildren
Need to override, re-implement similar to how method defined inParserMinimalBase, to keep state correct here.- Overrides:
skipChildrenin classJsonParserDelegate- Returns:
- This parser, to allow call chaining
- Throws:
JacksonException- for low-level read issuesStreamReadException- for decoding problems
-
getString
Description copied from class:JsonParserMethod for accessing textual representation of the current token; if no current token (before first call toJsonParser.nextToken(), or after encountering end-of-input), returns null. Method can be called for any token type.- Overrides:
getStringin classJsonParserDelegate- Returns:
- String value associated with the current token (one returned
by
JsonParser.nextToken()or other iteration methods) - Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
-
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 classJsonParserDelegate- 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
-
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).- Overrides:
getStringCharactersin classJsonParserDelegate- 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.- Overrides:
getStringLengthin classJsonParserDelegate- 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.- Overrides:
getStringOffsetin classJsonParserDelegate- 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
-
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 classJsonParserDelegate- 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 classJsonParserDelegate- Parameters:
defaultValue- Default value to return if conversion toStringis not possible- Returns:
Stringvalue current token is converted to, if possible;defotherwise- Throws:
JacksonException
-
nextName
Description copied from class:JsonParserMethod that fetches next token (as if callingJsonParser.nextToken()) and verifies whether it isJsonToken.PROPERTY_NAME; if it is, returns same asJsonParser.currentName(), otherwise null.NOTE: in Jackson 2.x method was called
nextFieldName()- Overrides:
nextNamein classJsonParserDelegate- Returns:
- Name of the the
JsonToken.PROPERTY_NAMEparser advanced to, if any;nullif next token is of some other type - Throws:
JacksonException- for low-level read issuesStreamReadException- for decoding problems
-
nextName
Description copied from class:JsonParserMethod that fetches next token (as if callingJsonParser.nextToken()) and verifies whether it isJsonToken.PROPERTY_NAMEwith 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:
nextNamein classJsonParserDelegate- Parameters:
str- Property name to compare next token to (if next token isJsonToken.PROPERTY_NAME)- Returns:
Trueif parser advanced toJsonToken.PROPERTY_NAMEwith specified name;falseotherwise (different token or non-matching name)- Throws:
JacksonException- for low-level read issuesStreamReadException- for decoding problems
-
nextNameMatch
Description copied from class:JsonParserMethod that tries to match next token from stream asJsonToken.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 fromPropertyNameMatcher.- Overrides:
nextNameMatchin classJsonParserDelegate- 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
PropertyNameMatcherfor details) - Throws:
JacksonIOException- for low-level read issuesStreamReadException- for decoding problemsJacksonException
-
_filterContext
-