com.fasterxml.jackson.module.jaxb.ser.DomElementJsonSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
package com.fasterxml.jackson.module.jaxb.ser;
import java.io.IOException;
import java.lang.reflect.Type;
import org.w3c.dom.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitorWrapper;
public class DomElementJsonSerializer
extends StdSerializer
{
public DomElementJsonSerializer() { super(Element.class); }
@Override
public void serialize(Element value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonGenerationException
{
jgen.writeStartObject();
jgen.writeStringField("name", value.getTagName());
if (value.getNamespaceURI() != null) {
jgen.writeStringField("namespace", value.getNamespaceURI());
}
NamedNodeMap attributes = value.getAttributes();
if (attributes != null && attributes.getLength() > 0) {
jgen.writeArrayFieldStart("attributes");
for (int i = 0; i < attributes.getLength(); i++) {
Attr attribute = (Attr) attributes.item(i);
jgen.writeStartObject();
jgen.writeStringField("$", attribute.getValue());
jgen.writeStringField("name", attribute.getName());
String ns = attribute.getNamespaceURI();
if (ns != null) {
jgen.writeStringField("namespace", ns);
}
jgen.writeEndObject();
}
jgen.writeEndArray();
}
NodeList children = value.getChildNodes();
if (children != null && children.getLength() > 0) {
jgen.writeArrayFieldStart("children");
for (int i = 0; i < children.getLength(); i++) {
Node child = children.item(i);
switch (child.getNodeType()) {
case Node.CDATA_SECTION_NODE:
case Node.TEXT_NODE:
jgen.writeStartObject();
jgen.writeStringField("$", child.getNodeValue());
jgen.writeEndObject();
break;
case Node.ELEMENT_NODE:
serialize((Element) child, jgen, provider);
break;
}
}
jgen.writeEndArray();
}
jgen.writeEndObject();
}
// Improved in 2.3; was missing from 2.2
@Override
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint)
throws JsonMappingException
{
if (visitor != null) {
visitor.expectStringFormat(typeHint);
}
}
@Override
public JsonNode getSchema(SerializerProvider provider, Type typeHint)
throws JsonMappingException
{
// Since 2.3: should be more like String type really, not structure
return createSchemaNode("string", true);
}
}