org.modelmapper.jackson.JsonNodeValueReader Maven / Gradle / Ivy
/*
* Copyright 2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.modelmapper.jackson;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.POJONode;
import java.io.IOException;
import java.util.Collection;
import org.modelmapper.internal.util.Lists;
import org.modelmapper.spi.ValueReader;
/**
* JsonNode ValueReader implementation.
*
* @author Jonathan Halterman
*/
public class JsonNodeValueReader implements ValueReader {
public Object get(JsonNode source, String memberName) {
JsonNode propertyNode = source.get(memberName);
if (propertyNode == null)
return null;
switch (propertyNode.getNodeType()) {
case BOOLEAN:
return propertyNode.asBoolean();
case NUMBER:
return propertyNode.numberValue();
case POJO:
return ((POJONode) propertyNode).getPojo();
case STRING:
return propertyNode.asText();
case BINARY:
try {
return propertyNode.binaryValue();
} catch (IOException ignore) {
return null;
}
case NULL:
case MISSING:
return null;
case ARRAY:
case OBJECT:
default:
return propertyNode;
}
}
public Member getMember(JsonNode source, String memberName) {
final Object value = get(source, memberName);
final Class> type = value != null ? value.getClass() : JsonNode.class;
return new Member(type) {
@Override
public JsonNode getOrigin() {
if (value instanceof JsonNode)
return (JsonNode) value;
return null;
}
@Override
public Object get(JsonNode source, String memberName) {
return JsonNodeValueReader.this.get(source, memberName);
}
};
}
public Collection memberNames(JsonNode source) {
if (source.isObject())
return Lists.from(source.fieldNames());
return null;
}
@Override
public String toString() {
return "Jackson";
}
}