com.fasterxml.jackson.dataformat.xml.deser.WrapperHandlingDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-all Show documentation
Show all versions of swagger-all Show documentation
swagger-all is a rebundled verison of Swagger as one OSGi bundle.
The newest version!
package com.fasterxml.jackson.dataformat.xml.deser;
import java.io.IOException;
import java.util.*;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.deser.*;
import com.fasterxml.jackson.databind.deser.std.DelegatingDeserializer;
import com.fasterxml.jackson.databind.jsontype.TypeDeserializer;
import com.fasterxml.jackson.dataformat.xml.util.TypeUtil;
/**
* Delegating deserializer whose only function is to handle case of
* "unwrapped" List/array deserialization from XML.
*/
public class WrapperHandlingDeserializer
extends DelegatingDeserializer
{
private static final long serialVersionUID = 1L;
/**
* (Simple) Names of properties, for which virtual wrapping is needed
* to compensate: these are so-called 'unwrapped' XML lists where property
* name is used for elements, and not as List markers.
*/
protected final Set _namesToWrap;
/*
/**********************************************************************
/* Construction
/**********************************************************************
*/
public WrapperHandlingDeserializer(BeanDeserializerBase delegate) {
this(delegate, null);
}
public WrapperHandlingDeserializer(BeanDeserializerBase delegate, Set namesToWrap)
{
super(delegate);
_namesToWrap = namesToWrap;
}
/*
/**********************************************************************
/* Abstract method implementations
/**********************************************************************
*/
@Override
protected JsonDeserializer> newDelegatingInstance(JsonDeserializer> newDelegatee0) {
// default not enough, as we may need to create a new wrapping deserializer
// even if delegatee does not change
throw new IllegalStateException("Internal error: should never get called");
}
@Override
public JsonDeserializer> createContextual(DeserializationContext ctxt,
BeanProperty property)
throws JsonMappingException
{
JsonDeserializer> del = ctxt.handleSecondaryContextualization(_delegatee, property);
BeanDeserializerBase newDelegatee = _verifyDeserType(del);
// Let's go through the properties now...
Iterator it = newDelegatee.properties();
HashSet unwrappedNames = null;
while (it.hasNext()) {
SettableBeanProperty prop = it.next();
/* First things first: only consider array/Collection types
* (not perfect check, but simplest reasonable check)
*/
JavaType type = prop.getType();
if (!TypeUtil.isIndexedType(type)) {
continue;
}
PropertyName wrapperName = prop.getWrapperName();
// skip anything with wrapper (should work as is)
if (wrapperName != null && wrapperName != PropertyName.NO_NAME) {
continue;
}
if (unwrappedNames == null) {
unwrappedNames = new HashSet();
}
// not optimal; should be able to use PropertyName...
unwrappedNames.add(prop.getName());
}
// Ok: if nothing to take care of, just return the delegatee...
if (unwrappedNames == null) {
return newDelegatee;
}
// Otherwise, create the thing that can deal with virtual wrapping
return new WrapperHandlingDeserializer(newDelegatee, unwrappedNames);
}
/*
/**********************************************************************
/* Overridden deserialization methods
/**********************************************************************
*/
@Override
public Object deserialize(JsonParser jp, DeserializationContext ctxt)
throws IOException, JsonProcessingException
{
_configureParser(jp);
return _delegatee.deserialize(jp, ctxt);
}
@SuppressWarnings("unchecked")
@Override
public Object deserialize(JsonParser jp, DeserializationContext ctxt,
Object intoValue)
throws IOException, JsonProcessingException
{
_configureParser(jp);
return ((JsonDeserializer