Merge "Initial implementation of the Shard Actor"
[controller.git] / opendaylight / netconf / netconf-util / src / main / java / org / opendaylight / controller / netconf / util / xml / XmlUtil.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.netconf.util.xml;
10
11 import com.google.common.base.Charsets;
12 import com.google.common.base.Optional;
13
14 import java.io.ByteArrayInputStream;
15 import java.io.File;
16 import java.io.FileInputStream;
17 import java.io.IOException;
18 import java.io.InputStream;
19 import java.io.StringWriter;
20
21 import javax.xml.XMLConstants;
22 import javax.xml.namespace.QName;
23 import javax.xml.parsers.DocumentBuilder;
24 import javax.xml.parsers.DocumentBuilderFactory;
25 import javax.xml.parsers.ParserConfigurationException;
26 import javax.xml.transform.OutputKeys;
27 import javax.xml.transform.Source;
28 import javax.xml.transform.Transformer;
29 import javax.xml.transform.TransformerFactory;
30 import javax.xml.transform.TransformerFactoryConfigurationError;
31 import javax.xml.transform.dom.DOMSource;
32 import javax.xml.transform.stream.StreamResult;
33 import javax.xml.transform.stream.StreamSource;
34 import javax.xml.validation.Schema;
35 import javax.xml.validation.SchemaFactory;
36 import javax.xml.xpath.XPathExpression;
37 import javax.xml.xpath.XPathExpressionException;
38
39 import org.opendaylight.controller.netconf.api.xml.XmlNetconfConstants;
40 import org.w3c.dom.Document;
41 import org.w3c.dom.Element;
42 import org.w3c.dom.Node;
43 import org.xml.sax.SAXException;
44
45 public final class XmlUtil {
46
47     public static final String XMLNS_ATTRIBUTE_KEY = "xmlns";
48     public static final String XMLNS_URI = "http://www.w3.org/2000/xmlns/";
49     private static final DocumentBuilderFactory BUILDERFACTORY;
50
51     static {
52         DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
53         factory.setNamespaceAware(true);
54         factory.setCoalescing(true);
55         factory.setIgnoringElementContentWhitespace(true);
56         factory.setIgnoringComments(true);
57         BUILDERFACTORY = factory;
58     }
59
60     private XmlUtil() {}
61
62     public static Element readXmlToElement(String xmlContent) throws SAXException, IOException {
63         Document doc = readXmlToDocument(xmlContent);
64         return doc.getDocumentElement();
65     }
66
67     public static Element readXmlToElement(InputStream xmlContent) throws SAXException, IOException {
68         Document doc = readXmlToDocument(xmlContent);
69         return doc.getDocumentElement();
70     }
71
72     public static Document readXmlToDocument(String xmlContent) throws SAXException, IOException {
73         return readXmlToDocument(new ByteArrayInputStream(xmlContent.getBytes(Charsets.UTF_8)));
74     }
75
76     // TODO improve exceptions throwing
77     // along with XmlElement
78
79     public static Document readXmlToDocument(InputStream xmlContent) throws SAXException, IOException {
80         DocumentBuilder dBuilder;
81         try {
82             dBuilder = BUILDERFACTORY.newDocumentBuilder();
83         } catch (ParserConfigurationException e) {
84             throw new IllegalStateException("Failed to parse XML document", e);
85         }
86         Document doc = dBuilder.parse(xmlContent);
87
88         doc.getDocumentElement().normalize();
89         return doc;
90     }
91
92     public static Element readXmlToElement(File xmlFile) throws SAXException, IOException {
93         return readXmlToDocument(new FileInputStream(xmlFile)).getDocumentElement();
94     }
95
96     public static Document newDocument() {
97         try {
98             DocumentBuilder builder = BUILDERFACTORY.newDocumentBuilder();
99             return builder.newDocument();
100         } catch (ParserConfigurationException e) {
101             throw new IllegalStateException("Failed to create document", e);
102         }
103     }
104
105     public static Element createElement(final Document document, String qName, Optional<String> namespaceURI) {
106         if(namespaceURI.isPresent()) {
107             final Element element = document.createElementNS(namespaceURI.get(), qName);
108             String name = XMLNS_ATTRIBUTE_KEY;
109             if(element.getPrefix() != null) {
110                 name += ":" + element.getPrefix();
111             }
112             element.setAttributeNS(XMLNS_URI, name, namespaceURI.get());
113             return element;
114         }
115         return document.createElement(qName);
116     }
117
118     public static Element createTextElement(Document document, String qName, String content, Optional<String> namespaceURI) {
119         Element typeElement = createElement(document, qName, namespaceURI);
120         typeElement.appendChild(document.createTextNode(content));
121         return typeElement;
122     }
123
124     public static Element createTextElementWithNamespacedContent(Document document, String qName, String prefix,
125                                                                  String namespace, String contentWithoutPrefix) {
126
127         String content = createPrefixedValue(XmlNetconfConstants.PREFIX, contentWithoutPrefix);
128         Element element = createTextElement(document, qName, content, Optional.<String>absent());
129         String prefixedNamespaceAttr = createPrefixedValue(XMLNS_ATTRIBUTE_KEY, prefix);
130         element.setAttributeNS(XMLNS_URI, prefixedNamespaceAttr, namespace);
131         return element;
132     }
133
134     public static String createPrefixedValue(String prefix, String value) {
135         return prefix + ":" + value;
136     }
137
138     public static String toString(Document document) {
139         return toString(document.getDocumentElement());
140     }
141
142     public static String toString(Element xml) {
143         return toString(xml, false);
144     }
145
146     public static String toString(XmlElement xmlElement) {
147         return toString(xmlElement.getDomElement(), false);
148     }
149
150     public static String toString(Element xml, boolean addXmlDeclaration) {
151         try {
152             Transformer transformer = TransformerFactory.newInstance().newTransformer();
153             transformer.setOutputProperty(OutputKeys.INDENT, "yes");
154             transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, addXmlDeclaration ? "no" : "yes");
155
156             StreamResult result = new StreamResult(new StringWriter());
157             DOMSource source = new DOMSource(xml);
158             transformer.transform(source, result);
159
160             return result.getWriter().toString();
161         } catch (Exception |  TransformerFactoryConfigurationError e) {
162             throw new IllegalStateException("Unable to serialize xml element " + xml, e);
163         }
164     }
165
166     public static String toString(Document doc, boolean addXmlDeclaration) {
167         return toString(doc.getDocumentElement(), addXmlDeclaration);
168     }
169
170     public static Schema loadSchema(InputStream... fromStreams) {
171         Source[] sources = new Source[fromStreams.length];
172         int i = 0;
173         for (InputStream stream : fromStreams) {
174             sources[i++] = new StreamSource(stream);
175         }
176
177         final SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
178         try {
179             return schemaFactory.newSchema(sources);
180         } catch (SAXException e) {
181             throw new IllegalStateException("Failed to instantiate XML schema", e);
182         }
183     }
184
185     public static Object evaluateXPath(XPathExpression expr, Object rootNode, QName returnType) {
186         try {
187             return expr.evaluate(rootNode, returnType);
188         } catch (XPathExpressionException e) {
189             throw new IllegalStateException("Error while evaluating xpath expression " + expr, e);
190         }
191     }
192
193     public static Document createDocumentCopy(Document original) {
194         final Document copiedDocument = newDocument();
195         final Node copiedRoot = copiedDocument.importNode(original.getDocumentElement(), true);
196         copiedDocument.appendChild(copiedRoot);
197         return copiedDocument;
198     }
199 }