org.apache.camel.converter.jaxp.XmlConverter Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.converter.jaxp;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringReader;
import java.io.StringWriter;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import javax.xml.XMLConstants;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.TransformerFactoryConfigurationError;
import javax.xml.transform.dom.DOMResult;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.stax.StAXSource;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.XMLReader;
import org.apache.camel.Converter;
import org.apache.camel.Exchange;
import org.apache.camel.support.CamelContextHelper;
import org.apache.camel.support.builder.xml.StAX2SAXSource;
import org.apache.camel.util.IOHelper;
import org.apache.camel.util.ObjectHelper;
import org.apache.camel.util.StringHelper;
import org.apache.camel.util.xml.BytesSource;
import org.apache.camel.util.xml.StringSource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A helper class to transform to and from various JAXB types such as {@link Source} and {@link Document}
*/
@Converter(generateLoader = true)
public class XmlConverter {
public static final String OUTPUT_PROPERTIES_PREFIX = "org.apache.camel.xmlconverter.output.";
public static final String DOCUMENT_BUILDER_FACTORY_FEATURE = "org.apache.camel.xmlconverter.documentBuilderFactory.feature";
public static String defaultCharset = ObjectHelper.getSystemProperty(Exchange.DEFAULT_CHARSET_PROPERTY, "UTF-8");
private static final String JDK_FALLBACK_TRANSFORMER_FACTORY = "com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl";
private static final String XALAN_TRANSFORMER_FACTORY = "org.apache.xalan.processor.TransformerFactoryImpl";
private static final Logger LOG = LoggerFactory.getLogger(XmlConverter.class);
private static final ErrorHandler DOCUMENT_BUILDER_LOGGING_ERROR_HANDLER = new DocumentBuilderLoggingErrorHandler();
private volatile DocumentBuilderFactory documentBuilderFactory;
private volatile TransformerFactory transformerFactory;
private volatile XMLReaderPool xmlReaderPool;
public XmlConverter() {
}
public XmlConverter(DocumentBuilderFactory documentBuilderFactory) {
this.documentBuilderFactory = documentBuilderFactory;
}
/**
* Returns the default set of output properties for conversions.
*/
public Properties defaultOutputProperties() {
Properties properties = new Properties();
properties.put(OutputKeys.ENCODING, defaultCharset);
properties.put(OutputKeys.OMIT_XML_DECLARATION, "yes");
return properties;
}
/**
* Converts the given input Source into the required result
*/
public void toResult(Source source, Result result) throws TransformerException {
toResult(source, result, defaultOutputProperties());
}
/**
* Converts the given input Source into the required result
*/
public void toResult(Source source, Result result, Properties outputProperties) throws TransformerException {
if (source == null) {
return;
}
Transformer transformer = createTransformer();
if (transformer == null) {
throw new TransformerException("Could not create a transformer - JAXP is misconfigured!");
}
transformer.setOutputProperties(outputProperties);
if (this.transformerFactory.getClass().getName().equals(XALAN_TRANSFORMER_FACTORY)
&& (source instanceof StAXSource)) {
//external xalan can't handle StAXSource, so convert StAXSource to SAXSource.
source = new StAX2SAXSource(((StAXSource) source).getXMLStreamReader());
}
transformer.transform(source, result);
}
/**
* Converts the given NodeList to a boolean
*/
@Converter
public Boolean toBoolean(NodeList list) {
return list.getLength() > 0;
}
/**
* Converts the given byte[] to a Source
*/
@Converter
public BytesSource toBytesSource(byte[] data) {
return new BytesSource(data);
}
/**
* Converts the given String to a Source
*/
@Converter
public StringSource toStringSource(String data) {
return new StringSource(data);
}
/**
* Converts the given Node to a Source
*/
@Converter
public DOMSource toDOMSource(Node node) throws ParserConfigurationException, TransformerException {
Document document = toDOMDocument(node);
return new DOMSource(document);
}
/**
* Converts the given Document to a DOMSource
*/
@Converter
public DOMSource toDOMSource(Document document) {
return new DOMSource(document);
}
/**
* Converts the given String to a Source
*/
@Converter
public Source toSource(String data) {
return new StringSource(data);
}
/**
* Converts the given input Source into text
*/
@Converter
public String toString(Source source, Exchange exchange) throws TransformerException {
if (source == null) {
return null;
} else if (source instanceof StringSource) {
return ((StringSource) source).getText();
} else if (source instanceof BytesSource) {
return new String(((BytesSource) source).getData());
} else {
StringWriter buffer = new StringWriter();
if (exchange != null) {
// check the camelContext properties first
Properties properties = CamelContextHelper.getCamelPropertiesWithPrefix(OUTPUT_PROPERTIES_PREFIX, exchange.getContext());
if (properties.size() > 0) {
toResult(source, new StreamResult(buffer), properties);
return buffer.toString();
}
}
// using the old way to deal with it
toResult(source, new StreamResult(buffer));
return buffer.toString();
}
}
/**
* Converts the given input Source into bytes
*/
@Converter
public byte[] toByteArray(Source source, Exchange exchange) throws TransformerException {
if (source instanceof BytesSource) {
return ((BytesSource)source).getData();
} else {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
if (exchange != null) {
// check the camelContext properties first
Properties properties = CamelContextHelper.getCamelPropertiesWithPrefix(OUTPUT_PROPERTIES_PREFIX,
exchange.getContext());
if (properties.size() > 0) {
toResult(source, new StreamResult(buffer), properties);
return buffer.toByteArray();
}
}
// using the old way to deal with it
toResult(source, new StreamResult(buffer));
return buffer.toByteArray();
}
}
/**
* Converts the given input Node into text
*/
@Converter
public String toString(Node node, Exchange exchange) throws TransformerException {
return toString(new DOMSource(node), exchange);
}
/**
* Converts the given Document to into text
* @param document The document to convert
* @param outputOptions The {@link OutputKeys} properties to control various aspects of the XML output
* @return The string representation of the document
* @throws TransformerException
*/
public String toStringFromDocument(Document document, Properties outputOptions) throws TransformerException {
if (document == null) {
return null;
}
DOMSource source = new DOMSource(document);
StringWriter buffer = new StringWriter();
toResult(source, new StreamResult(buffer), outputOptions);
return buffer.toString();
}
/**
* Converts the source instance to a {@link DOMSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public DOMSource toDOMSource(Source source, Exchange exchange) throws ParserConfigurationException, IOException, SAXException, TransformerException {
if (source instanceof DOMSource) {
return (DOMSource) source;
} else if (source instanceof SAXSource) {
return toDOMSourceFromSAX((SAXSource) source);
} else if (source instanceof StreamSource) {
return toDOMSourceFromStream((StreamSource) source, exchange);
} else if (source instanceof StAXSource) {
return toDOMSourceFromStAX((StAXSource)source);
} else {
return null;
}
}
/**
* Converts the source instance to a {@link DOMSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public DOMSource toDOMSource(String text) throws ParserConfigurationException, IOException, SAXException, TransformerException {
Source source = toSource(text);
return toDOMSourceFromStream((StreamSource) source, null);
}
/**
* Converts the source instance to a {@link DOMSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public DOMSource toDOMSource(byte[] bytes) throws IOException, SAXException, ParserConfigurationException {
InputStream is = new ByteArrayInputStream(bytes);
try {
return toDOMSource(is, null);
} finally {
IOHelper.close(is);
}
}
/**
* Converts the source instance to a {@link SAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public SAXSource toSAXSource(String source, Exchange exchange) throws IOException, SAXException, TransformerException {
return toSAXSource(toSource(source), exchange);
}
/**
* Converts the source instance to a {@link StAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
* @throws XMLStreamException
*/
@Converter
public StAXSource toStAXSource(String source, Exchange exchange) throws XMLStreamException {
XMLStreamReader r = new StaxConverter().createXMLStreamReader(new StringReader(source));
return new StAXSource(r);
}
/**
* Converts the source instance to a {@link StAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
* @throws XMLStreamException
*/
@Converter
public StAXSource toStAXSource(byte[] in, Exchange exchange) throws XMLStreamException {
XMLStreamReader r = new StaxConverter().createXMLStreamReader(new ByteArrayInputStream(in), exchange);
return new StAXSource(r);
}
/**
* Converts the source instance to a {@link SAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public SAXSource toSAXSource(InputStream source, Exchange exchange) throws IOException, SAXException, TransformerException {
return toSAXSource(toStreamSource(source), exchange);
}
/**
* Converts the source instance to a {@link SAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public SAXSource toSAXSource(byte[] in, Exchange exchange) throws IOException, SAXException, TransformerException {
return toSAXSource(toStreamSource(in, exchange), exchange);
}
/**
* Converts the source instance to a {@link StAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
* @throws XMLStreamException
*/
@Converter
public StAXSource toStAXSource(InputStream source, Exchange exchange) throws XMLStreamException {
XMLStreamReader r = new StaxConverter().createXMLStreamReader(source, exchange);
return new StAXSource(r);
}
/**
* Converts the source instance to a {@link SAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public SAXSource toSAXSource(File file, Exchange exchange) throws IOException, SAXException, TransformerException {
InputStream is = IOHelper.buffered(new FileInputStream(file));
return toSAXSource(is, exchange);
}
/**
* Converts the source instance to a {@link StAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
* @throws FileNotFoundException
* @throws XMLStreamException
*/
@Converter
public StAXSource toStAXSource(File file, Exchange exchange) throws FileNotFoundException, XMLStreamException {
InputStream is = IOHelper.buffered(new FileInputStream(file));
XMLStreamReader r = new StaxConverter().createXMLStreamReader(is, exchange);
return new StAXSource(r);
}
/**
* Converts the source instance to a {@link SAXSource} or returns null if the conversion is not
* supported (making it easy to derive from this class to add new kinds of conversion).
*/
@Converter
public SAXSource toSAXSource(Source source, Exchange exchange) throws IOException, SAXException, TransformerException {
if (source instanceof SAXSource) {
return (SAXSource) source;
} else if (source instanceof DOMSource) {
return toSAXSourceFromDOM((DOMSource) source, exchange);
} else if (source instanceof StreamSource) {
return toSAXSourceFromStream((StreamSource) source, exchange);
} else if (source instanceof StAXSource) {
return toSAXSourceFromStAX((StAXSource) source, exchange);
} else {
return null;
}
}
@Converter
public StreamSource toStreamSource(Source source, Exchange exchange) throws TransformerException {
if (source instanceof StreamSource) {
return (StreamSource) source;
} else if (source instanceof DOMSource) {
return toStreamSourceFromDOM((DOMSource) source, exchange);
} else if (source instanceof SAXSource) {
return toStreamSourceFromSAX((SAXSource) source, exchange);
} else if (source instanceof StAXSource) {
return toStreamSourceFromStAX((StAXSource) source, exchange);
} else {
return null;
}
}
@Converter
public StreamSource toStreamSource(InputStream in) throws TransformerException {
return new StreamSource(in);
}
@Converter
public StreamSource toStreamSource(Reader in) throws TransformerException {
return new StreamSource(in);
}
@Converter
public StreamSource toStreamSource(File in) throws TransformerException {
return new StreamSource(in);
}
@Converter
public StreamSource toStreamSource(byte[] in, Exchange exchange) throws TransformerException {
InputStream is = exchange.getContext().getTypeConverter().convertTo(InputStream.class, exchange, in);
return new StreamSource(is);
}
@Converter
public StreamSource toStreamSource(ByteBuffer in, Exchange exchange) throws TransformerException {
InputStream is = exchange.getContext().getTypeConverter().convertTo(InputStream.class, exchange, in);
return new StreamSource(is);
}
@Converter
public StreamSource toStreamSourceFromSAX(SAXSource source, Exchange exchange) throws TransformerException {
InputSource inputSource = source.getInputSource();
if (inputSource != null) {
if (inputSource.getCharacterStream() != null) {
return new StreamSource(inputSource.getCharacterStream());
}
if (inputSource.getByteStream() != null) {
return new StreamSource(inputSource.getByteStream());
}
}
String result = toString(source, exchange);
return new StringSource(result);
}
@Converter
public StreamSource toStreamSourceFromDOM(DOMSource source, Exchange exchange) throws TransformerException {
String result = toString(source, exchange);
return new StringSource(result);
}
@Converter
public StreamSource toStreamSourceFromStAX(StAXSource source, Exchange exchange) throws TransformerException {
String result = toString(source, exchange);
return new StringSource(result);
}
@Converter
public SAXSource toSAXSourceFromStream(StreamSource source, Exchange exchange) throws SAXException {
InputSource inputSource;
if (source.getReader() != null) {
inputSource = new InputSource(source.getReader());
} else {
inputSource = new InputSource(source.getInputStream());
}
inputSource.setSystemId(source.getSystemId());
inputSource.setPublicId(source.getPublicId());
XMLReader xmlReader = null;
try {
// use the SAXPaserFactory which is set from exchange
if (exchange != null) {
SAXParserFactory sfactory = exchange.getProperty(Exchange.SAXPARSER_FACTORY, SAXParserFactory.class);
if (sfactory != null) {
if (!sfactory.isNamespaceAware()) {
sfactory.setNamespaceAware(true);
}
xmlReader = sfactory.newSAXParser().getXMLReader();
}
}
if (xmlReader == null) {
if (xmlReaderPool == null) {
xmlReaderPool = new XMLReaderPool(createSAXParserFactory());
}
xmlReader = xmlReaderPool.createXMLReader();
}
} catch (Exception ex) {
LOG.warn("Cannot create the SAXParser XMLReader, due to {}", ex.getMessage(), ex);
}
return new SAXSource(xmlReader, inputSource);
}
@Converter
public Reader toReaderFromSource(Source src, Exchange exchange) throws TransformerException {
StreamSource stSrc = toStreamSource(src, exchange);
Reader r = stSrc.getReader();
if (r == null) {
r = new InputStreamReader(stSrc.getInputStream());
}
return r;
}
@Converter
public DOMSource toDOMSource(InputStream is, Exchange exchange) throws ParserConfigurationException, IOException, SAXException {
InputSource source = new InputSource(is);
String systemId = source.getSystemId();
DocumentBuilder builder = createDocumentBuilder(getDocumentBuilderFactory(exchange));
Document document = builder.parse(source);
return new DOMSource(document, systemId);
}
@Converter
public DOMSource toDOMSource(File file, Exchange exchange) throws ParserConfigurationException, IOException, SAXException {
InputStream is = IOHelper.buffered(new FileInputStream(file));
return toDOMSource(is, exchange);
}
@Converter
public DOMSource toDOMSourceFromStream(StreamSource source, Exchange exchange) throws ParserConfigurationException, IOException, SAXException {
Document document;
String systemId = source.getSystemId();
DocumentBuilder builder = createDocumentBuilder(getDocumentBuilderFactory(exchange));
Reader reader = source.getReader();
if (reader != null) {
document = builder.parse(new InputSource(reader));
} else {
InputStream inputStream = source.getInputStream();
if (inputStream != null) {
InputSource inputsource = new InputSource(inputStream);
inputsource.setSystemId(systemId);
document = builder.parse(inputsource);
} else {
throw new IOException("No input stream or reader available on StreamSource: " + source);
}
}
return new DOMSource(document, systemId);
}
@Converter
public SAXSource toSAXSourceFromDOM(DOMSource source, Exchange exchange) throws TransformerException {
String str = toString(source, exchange);
StringReader reader = new StringReader(str);
return new SAXSource(new InputSource(reader));
}
@Converter
public SAXSource toSAXSourceFromStAX(StAXSource source, Exchange exchange) throws TransformerException {
String str = toString(source, exchange);
StringReader reader = new StringReader(str);
return new SAXSource(new InputSource(reader));
}
@Converter
public DOMSource toDOMSourceFromSAX(SAXSource source) throws IOException, SAXException, ParserConfigurationException, TransformerException {
return new DOMSource(toDOMNodeFromSAX(source));
}
@Converter
public DOMSource toDOMSourceFromStAX(StAXSource source) throws IOException, SAXException, ParserConfigurationException, TransformerException {
return new DOMSource(toDOMNodeFromStAX(source));
}
@Converter
public Node toDOMNodeFromSAX(SAXSource source) throws ParserConfigurationException, IOException, SAXException, TransformerException {
DOMResult result = new DOMResult();
toResult(source, result);
return result.getNode();
}
@Converter
public Node toDOMNodeFromStAX(StAXSource source) throws ParserConfigurationException, IOException, SAXException, TransformerException {
DOMResult result = new DOMResult();
toResult(source, result);
return result.getNode();
}
/**
* Convert a NodeList consisting of just 1 node to a DOM Node.
* @param nl the NodeList
* @return the DOM Node
*/
@Converter(allowNull = true)
public Node toDOMNodeFromSingleNodeList(NodeList nl) {
return nl.getLength() == 1 ? nl.item(0) : null;
}
/**
* Convert a NodeList consisting of just 1 node to a DOM Document.
* Cannot convert NodeList with length > 1 because they require a root node.
* @param nl the NodeList
* @return the DOM Document
*/
@Converter(allowNull = true)
public Document toDOMDocumentFromSingleNodeList(NodeList nl) throws ParserConfigurationException, TransformerException {
if (nl.getLength() == 1) {
return toDOMDocument(nl.item(0));
} else if (nl instanceof Node) {
// as XML parsers may often have nodes that implement both Node and NodeList then the type converter lookup
// may lookup either a type converter from NodeList or Node. So let's fallback and try with Node
return toDOMDocument((Node) nl);
} else {
return null;
}
}
/**
* Converts the given TRaX Source into a W3C DOM node
*/
@Converter(allowNull = true)
public Node toDOMNode(Source source) throws TransformerException, ParserConfigurationException, IOException, SAXException {
DOMSource domSrc = toDOMSource(source, null);
return domSrc != null ? domSrc.getNode() : null;
}
/**
* Create a DOM element from the given source.
*/
@Converter
public Element toDOMElement(Source source) throws TransformerException, ParserConfigurationException, IOException, SAXException {
Node node = toDOMNode(source);
return toDOMElement(node);
}
/**
* Create a DOM element from the DOM node.
* Simply cast if the node is an Element, or
* return the root element if it is a Document.
*/
@Converter
public Element toDOMElement(Node node) throws TransformerException {
// If the node is an document, return the root element
if (node instanceof Document) {
return ((Document) node).getDocumentElement();
// If the node is an element, just cast it
} else if (node instanceof Element) {
return (Element) node;
// Other node types are not handled
} else {
throw new TransformerException("Unable to convert DOM node to an Element");
}
}
/**
* Converts the given data to a DOM document
*
* @param data is the data to be parsed
* @param exchange is the exchange to be used when calling the converter
* @return the parsed document
*/
@Converter
public Document toDOMDocument(byte[] data, Exchange exchange) throws IOException, SAXException, ParserConfigurationException {
DocumentBuilder documentBuilder = createDocumentBuilder(getDocumentBuilderFactory(exchange));
return documentBuilder.parse(new ByteArrayInputStream(data));
}
/**
* Converts the given {@link InputStream} to a DOM document
*
* @param in is the data to be parsed
* @param exchange is the exchange to be used when calling the converter
* @return the parsed document
*/
@Converter
public Document toDOMDocument(InputStream in, Exchange exchange) throws IOException, SAXException, ParserConfigurationException {
DocumentBuilder documentBuilder = createDocumentBuilder(getDocumentBuilderFactory(exchange));
if (in instanceof IOHelper.EncodingInputStream) {
// DocumentBuilder detects encoding from XML declaration, so we need to
// revert the converted encoding for the input stream
IOHelper.EncodingInputStream encIn = (IOHelper.EncodingInputStream) in;
return documentBuilder.parse(encIn.toOriginalInputStream());
} else {
return documentBuilder.parse(in);
}
}
/**
* Converts the given {@link Reader} to a DOM document
*
* @param in is the data to be parsed
* @param exchange is the exchange to be used when calling the converter
* @return the parsed document
*/
@Converter
public Document toDOMDocument(Reader in, Exchange exchange) throws IOException, SAXException, ParserConfigurationException {
return toDOMDocument(new InputSource(in), exchange);
}
/**
* Converts the given {@link InputSource} to a DOM document
*
* @param in is the data to be parsed
* @param exchange is the exchange to be used when calling the converter
* @return the parsed document
*/
@Converter
public Document toDOMDocument(InputSource in, Exchange exchange) throws IOException, SAXException, ParserConfigurationException {
DocumentBuilder documentBuilder = createDocumentBuilder(getDocumentBuilderFactory(exchange));
return documentBuilder.parse(in);
}
/**
* Converts the given {@link String} to a DOM document
*
* @param text is the data to be parsed
* @param exchange is the exchange to be used when calling the converter
* @return the parsed document
*/
@Converter
public Document toDOMDocument(String text, Exchange exchange) throws IOException, SAXException, ParserConfigurationException {
return toDOMDocument(new StringReader(text), exchange);
}
/**
* Converts the given {@link File} to a DOM document
*
* @param file is the data to be parsed
* @param exchange is the exchange to be used when calling the converter
* @return the parsed document
*/
@Converter
public Document toDOMDocument(File file, Exchange exchange) throws IOException, SAXException, ParserConfigurationException {
DocumentBuilder documentBuilder = createDocumentBuilder(getDocumentBuilderFactory(exchange));
return documentBuilder.parse(file);
}
/**
* Create a DOM document from the given source.
*/
@Converter
public Document toDOMDocument(Source source) throws TransformerException, ParserConfigurationException, IOException, SAXException {
Node node = toDOMNode(source);
return toDOMDocument(node);
}
/**
* Create a DOM document from the given Node.
*
* If the node is an document, just cast it, if the node is an root element, retrieve its
* owner element or create a new document and import the node.
*/
@Converter
public Document toDOMDocument(final Node node) throws ParserConfigurationException, TransformerException {
ObjectHelper.notNull(node, "node");
// If the node is the document, just cast it
if (node instanceof Document) {
return (Document) node;
// If the node is an element
} else if (node instanceof Element) {
Element elem = (Element) node;
// If this is the root element, return its owner document
if (elem.getOwnerDocument().getDocumentElement() == elem) {
return elem.getOwnerDocument();
// else, create a new doc and copy the element inside it
} else {
Document doc = createDocument();
// import node must not occur concurrent on the same node (must be its owner)
// so we need to synchronize on it
synchronized (node.getOwnerDocument()) {
doc.appendChild(doc.importNode(node, true));
}
return doc;
}
// other element types are not handled
} else {
throw new TransformerException("Unable to convert DOM node to a Document: " + node);
}
}
@Converter
public InputStream toInputStream(DOMSource source, Exchange exchange) throws TransformerException, IOException {
return new ByteArrayInputStream(toByteArray(source, exchange));
}
@Converter
public InputStream toInputStream(Document dom, Exchange exchange) throws TransformerException, IOException {
return toInputStream(new DOMSource(dom), exchange);
}
@Converter
public InputSource toInputSource(InputStream is, Exchange exchange) {
return new InputSource(is);
}
@Converter
public InputSource toInputSource(File file, Exchange exchange) throws FileNotFoundException {
InputStream is = IOHelper.buffered(new FileInputStream(file));
return new InputSource(is);
}
// Properties
//-------------------------------------------------------------------------
public DocumentBuilderFactory getDocumentBuilderFactory() {
if (documentBuilderFactory == null) {
documentBuilderFactory = createDocumentBuilderFactory();
}
return documentBuilderFactory;
}
public void setDocumentBuilderFactory(DocumentBuilderFactory documentBuilderFactory) {
this.documentBuilderFactory = documentBuilderFactory;
}
public TransformerFactory getTransformerFactory() {
if (transformerFactory == null) {
transformerFactory = createTransformerFactory();
}
return transformerFactory;
}
public void setTransformerFactory(TransformerFactory transformerFactory) {
if (transformerFactory != null) {
configureSaxonTransformerFactory(transformerFactory);
}
this.transformerFactory = transformerFactory;
}
// Helper methods
//-------------------------------------------------------------------------
protected void setupFeatures(DocumentBuilderFactory factory) {
Properties properties = System.getProperties();
List features = new ArrayList<>();
for (Map.Entry