Class BaseNodeDeserializer<T extends JsonNode>
- All Implemented Interfaces:
ContextualDeserializer,NullValueProvider,ValueInstantiator.Gettable,Serializable
- Direct Known Subclasses:
JsonNodeDeserializer,JsonNodeDeserializer.ArrayDeserializer,JsonNodeDeserializer.ObjectDeserializer
JsonNode deserializer implementations.
Starting with Jackson 2.13 uses iteration instead of recursion: this allows handling of very deeply nested input structures.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static final classOptimized variant similar in functionality to (a subset of)ArrayDeque; used to hold enclosing Array/Object nodes during recursion-as-iteration.Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonDeserializer
JsonDeserializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final booleanprotected final booleanprotected final BooleanFields inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer
_valueClass, _valueType, F_MASK_ACCEPT_ARRAYS, F_MASK_INT_COERCIONS -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBaseNodeDeserializer(BaseNodeDeserializer<?> base, boolean mergeArrays, boolean mergeObjects) BaseNodeDeserializer(Class<T> vc, Boolean supportsUpdates) -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract JsonDeserializer<?> _createWithMerge(boolean mergeArrays, boolean mergeObjects) protected final JsonNode_deserializeAnyScalar(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) protected final ContainerNode<?> _deserializeContainerNoRecursion(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, BaseNodeDeserializer.ContainerStack stack, ContainerNode<?> root) protected final ObjectNode_deserializeObjectAtName(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, BaseNodeDeserializer.ContainerStack stack) Alternate deserialization method used when parser already points to first FIELD_NAME and not START_OBJECT.protected final JsonNode_deserializeRareScalar(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) protected final JsonNode_fromBigDecimal(DeserializationContext ctxt, JsonNodeFactory nodeFactory, BigDecimal bigDec) protected final JsonNode_fromEmbedded(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) protected final JsonNode_fromFloat(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory) protected final JsonNode_fromInt(com.fasterxml.jackson.core.JsonParser p, int coercionFeatures, JsonNodeFactory nodeFactory) protected final JsonNode_fromInt(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory) protected void_handleDuplicateField(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, String fieldName, ObjectNode objectNode, JsonNode oldValue, JsonNode newValue) Method called when there is a duplicate value for a field.private static boolean_shouldMerge(Boolean specificMerge, Boolean generalMerge) createContextual(DeserializationContext ctxt, BeanProperty property) Method called to see if a different (or differently configured) deserializer is needed to deserialize values of specified property.deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer) Base implementation that does not assume specific type inclusion mechanism.booleanMethod called to see if deserializer instance is cachable and usable for other properties of same type (type for which instance was created).Method for accessing logical type of values this deserializer produces.supportsUpdate(DeserializationConfig config) Introspection method that may be called to see whether deserializer supports update of an existing value (aka "merging") or not.protected final JsonNodeupdateObject(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, ObjectNode node, BaseNodeDeserializer.ContainerStack stack) Alternate deserialization method that is to update existingObjectNodeif possible.Methods inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer
_byteOverflow, _checkBooleanToStringCoercion, _checkCoercionFail, _checkDoubleSpecialValue, _checkFloatSpecialValue, _checkFloatToIntCoercion, _checkFloatToStringCoercion, _checkFromStringCoercion, _checkFromStringCoercion, _checkIntToFloatCoercion, _checkIntToStringCoercion, _checkTextualNull, _checkToStringCoercion, _coerceBooleanFromInt, _coercedTypeDesc, _coercedTypeDesc, _coerceEmptyString, _coerceIntegral, _coerceNullToken, _coerceTextualNull, _deserializeFromArray, _deserializeFromEmpty, _deserializeFromEmptyString, _deserializeFromString, _deserializeWrappedValue, _failDoubleToIntCoercion, _findCoercionFromBlankString, _findCoercionFromEmptyArray, _findCoercionFromEmptyString, _findNullProvider, _hasTextualNull, _intOverflow, _isBlank, _isEmptyOrTextualNull, _isFalse, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _isTrue, _neitherNull, _nonNullNumber, _parseBoolean, _parseBooleanFromInt, _parseBooleanPrimitive, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDouble, _parseDouble, _parseDoublePrimitive, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseInteger, _parseInteger, _parseIntPrimitive, _parseIntPrimitive, _parseLong, _parseLong, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _verifyNullForScalarCoercion, _verifyNumberForScalarCoercion, _verifyStringForScalarCoercion, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueClass, getValueInstantiator, getValueType, getValueType, handledType, handleMissingEndArrayForSingle, handleNestedArrayForSingle, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializerMethods inherited from class com.fasterxml.jackson.databind.JsonDeserializer
deserialize, deserialize, deserializeWithType, findBackReference, getAbsentValue, getDelegatee, getEmptyAccessPattern, getEmptyValue, getEmptyValue, getKnownPropertyNames, getNullAccessPattern, getNullValue, getNullValue, getObjectIdReader, replaceDelegatee, unwrappingDeserializer
-
Field Details
-
_supportsUpdates
-
_mergeArrays
protected final boolean _mergeArrays -
_mergeObjects
protected final boolean _mergeObjects
-
-
Constructor Details
-
BaseNodeDeserializer
-
BaseNodeDeserializer
protected BaseNodeDeserializer(BaseNodeDeserializer<?> base, boolean mergeArrays, boolean mergeObjects)
-
-
Method Details
-
deserializeWithType
public Object deserializeWithType(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer) throws IOException Description copied from class:StdDeserializerBase implementation that does not assume specific type inclusion mechanism. Sub-classes are expected to override this method if they are to handle type information.- Overrides:
deserializeWithTypein classStdDeserializer<T extends JsonNode>- Parameters:
typeDeserializer- Deserializer to use for handling type information- Throws:
IOException
-
logicalType
Description copied from class:JsonDeserializerMethod for accessing logical type of values this deserializer produces. Typically used for further configuring handling of values, for example, to find which coercions are legal.- Overrides:
logicalTypein classJsonDeserializer<T extends JsonNode>- Returns:
- Logical type of values this deserializer produces, if known;
nullif not
-
isCachable
public boolean isCachable()Description copied from class:JsonDeserializerMethod called to see if deserializer instance is cachable and usable for other properties of same type (type for which instance was created).Note that cached instances are still resolved on per-property basis, if instance implements
ResolvableDeserializer: cached instance is just as the base. This means that in most cases it is safe to cache instances; however, it only makes sense to cache instances if instantiation is expensive, or if instances are heavy-weight.Default implementation returns false, to indicate that no caching is done.
- Overrides:
isCachablein classJsonDeserializer<T extends JsonNode>
-
supportsUpdate
Description copied from class:JsonDeserializerIntrospection method that may be called to see whether deserializer supports update of an existing value (aka "merging") or not. Return value should either beBoolean.FALSEif update is not supported at all (immutable values);Boolean.TRUEif update should usually work (regular POJOs, for example), ornullif this is either not known, or may sometimes work.Information gathered is typically used to either prevent merging update for property (either by skipping, if based on global defaults; or by exception during deserializer construction if explicit attempt made) if
Boolean.FALSEreturned, or inclusion ifBoolean.TRUEis specified. If "unknown" case (nullreturned) behavior is to exclude property if global defaults used; or to allow if explicit per-type or property merging is defined.Default implementation returns
nullto allow explicit per-type or per-property attempts.- Overrides:
supportsUpdatein classJsonDeserializer<T extends JsonNode>
-
createContextual
public JsonDeserializer<?> createContextual(DeserializationContext ctxt, BeanProperty property) throws JsonMappingException Description copied from interface:ContextualDeserializerMethod called to see if a different (or differently configured) deserializer is needed to deserialize values of specified property. Note that instance that this method is called on is typically shared one and as a result method should NOT modify this instance but rather construct and return a new instance. This instance should only be returned as-is, in case it is already suitable for use.- Specified by:
createContextualin interfaceContextualDeserializer- Parameters:
ctxt- Deserialization context to access configuration, additional deserializers that may be needed by this deserializerproperty- Method, field or constructor parameter that represents the property (and is used to assign deserialized value). Should be available; but there may be cases where caller cannot provide it and null is passed instead (in which case impls usually pass 'this' deserializer as is)- Returns:
- Deserializer to use for deserializing values of specified property; may be this instance or a new instance.
- Throws:
JsonMappingException
-
_shouldMerge
-
_createWithMerge
-
_handleDuplicateField
protected void _handleDuplicateField(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, String fieldName, ObjectNode objectNode, JsonNode oldValue, JsonNode newValue) throws IOException Method called when there is a duplicate value for a field. By default we don't care, and the last value is used. Can be overridden to provide alternate handling, such as throwing an exception, or choosing different strategy for combining values or choosing which one to keep.- Parameters:
fieldName- Name of the field for which duplicate value was foundobjectNode- Object node that contains valuesoldValue- Value that existed for the object node before newValue was addednewValue- Newly added value just added to the object node- Throws:
IOException
-
_deserializeObjectAtName
protected final ObjectNode _deserializeObjectAtName(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, BaseNodeDeserializer.ContainerStack stack) throws IOException Alternate deserialization method used when parser already points to first FIELD_NAME and not START_OBJECT.- Throws:
IOException
-
updateObject
protected final JsonNode updateObject(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, ObjectNode node, BaseNodeDeserializer.ContainerStack stack) throws IOException Alternate deserialization method that is to update existingObjectNodeif possible.- Throws:
IOException- Since:
- 2.9
-
_deserializeContainerNoRecursion
protected final ContainerNode<?> _deserializeContainerNoRecursion(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory, BaseNodeDeserializer.ContainerStack stack, ContainerNode<?> root) throws IOException - Throws:
IOException
-
_deserializeAnyScalar
protected final JsonNode _deserializeAnyScalar(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException - Throws:
IOException
-
_deserializeRareScalar
protected final JsonNode _deserializeRareScalar(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException - Throws:
IOException
-
_fromInt
protected final JsonNode _fromInt(com.fasterxml.jackson.core.JsonParser p, int coercionFeatures, JsonNodeFactory nodeFactory) throws IOException - Throws:
IOException
-
_fromInt
protected final JsonNode _fromInt(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory) throws IOException - Throws:
IOException
-
_fromFloat
protected final JsonNode _fromFloat(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt, JsonNodeFactory nodeFactory) throws IOException - Throws:
IOException
-
_fromBigDecimal
protected final JsonNode _fromBigDecimal(DeserializationContext ctxt, JsonNodeFactory nodeFactory, BigDecimal bigDec) -
_fromEmbedded
protected final JsonNode _fromEmbedded(com.fasterxml.jackson.core.JsonParser p, DeserializationContext ctxt) throws IOException - Throws:
IOException
-