org.opencastproject.util.XmlUtil Maven / Gradle / Ivy
/*
* Licensed to The Apereo Foundation under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
*
* The Apereo Foundation licenses this file to you under the Educational
* Community 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://opensource.org/licenses/ecl2.txt
*
* 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.opencastproject.util;
import static org.opencastproject.util.data.Either.left;
import static org.opencastproject.util.data.Either.right;
import static org.opencastproject.util.data.functions.Misc.chuck;
import org.opencastproject.util.data.Either;
import org.apache.commons.io.IOUtils;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
/** XML utility functions. */
public final class XmlUtil {
private static final DocumentBuilderFactory nsDbf;
private static final DocumentBuilderFactory dbf;
static {
nsDbf = XmlSafeParser.newDocumentBuilderFactory();
nsDbf.setNamespaceAware(true);
//
dbf = XmlSafeParser.newDocumentBuilderFactory();
dbf.setNamespaceAware(false);
}
private XmlUtil() {
}
/** Namespace aware parsing of src
. */
public static Either parseNs(InputSource src) {
try {
DocumentBuilder docBuilder = nsDbf.newDocumentBuilder();
return right(docBuilder.parse(src));
} catch (Exception e) {
return left(e);
}
}
/** Namespace aware parsing of xml
. */
public static Either parseNs(String xml) {
return parseNs(fromXmlString(xml));
}
/**
* Writes an xml representation to a stream.
*
* @param doc
* the document
* @param out
* the output stream
* @throws IOException
* if there is an error transforming the dom to a stream
*/
public static void toXml(Document doc, OutputStream out) throws IOException {
try {
DOMSource domSource = new DOMSource(doc);
StreamResult result = new StreamResult(out);
Transformer transformer = XmlSafeParser.newTransformerFactory()
.newTransformer();
transformer.setOutputProperty(OutputKeys.VERSION, doc.getXmlVersion());
transformer.transform(domSource, result);
} catch (TransformerException e) {
throw new IOException("unable to transform dom to a stream");
}
}
/**
* Writes an xml representation to an input stream and return it.
*
* @param document
* the document
* @return the input stream containing the serialized xml representation
* @throws IOException
* if there is an error transforming the dom to a stream
*/
public static InputStream serializeDocument(Document document) throws IOException {
ByteArrayOutputStream out = null;
try {
out = new ByteArrayOutputStream();
XmlUtil.toXml(document, out);
return new ByteArrayInputStream(out.toByteArray());
} finally {
IoSupport.closeQuietly(out);
}
}
/**
* Serializes the document to a XML string
*
* @param document
* the document
* @return the serialized XML string
* @throws IOException
* if there is an error transforming the dom to a stream
*/
public static String toXmlString(Document document) throws IOException {
InputStream inputStream = null;
try {
inputStream = serializeDocument(document);
return IOUtils.toString(inputStream, "UTF-8");
} finally {
IoSupport.closeQuietly(inputStream);
}
}
/** Create an {@link org.xml.sax.InputSource} from an XML string. */
public static InputSource fromXmlString(String xml) {
return new InputSource(IOUtils.toInputStream(xml));
}
/**
* Creates an xml document root and returns it.
*
* @return the document
*/
public static Document newDocument() {
try {
return nsDbf.newDocumentBuilder().newDocument();
} catch (ParserConfigurationException e) {
return chuck(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy