BUG 1883 - Ensure that all debug logging is done conditionally
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / xml / codec / XmlStreamUtils.java
1 /*
2  * Copyright (c) 2014 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 package org.opendaylight.controller.xml.codec;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.base.Preconditions;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.AttributesContainer;
14 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
15 import org.opendaylight.yangtools.yang.data.api.Node;
16 import org.opendaylight.yangtools.yang.data.api.SimpleNode;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
18 import org.opendaylight.yangtools.yang.data.impl.codec.TypeDefinitionAwareCodec;
19 import org.opendaylight.yangtools.yang.data.impl.codec.xml.XmlCodecProvider;
20 import org.opendaylight.yangtools.yang.data.impl.schema.SchemaUtils;
21 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
22 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
23 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
24 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
25 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
26 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
27 import org.opendaylight.yangtools.yang.model.api.type.IdentityrefTypeDefinition;
28 import org.opendaylight.yangtools.yang.model.api.type.InstanceIdentifierTypeDefinition;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 import javax.annotation.Nonnull;
33 import javax.annotation.Nullable;
34 import javax.xml.stream.XMLStreamException;
35 import javax.xml.stream.XMLStreamWriter;
36 import java.net.URI;
37 import java.util.Map.Entry;
38
39 /**
40  * Utility class for bridging JAXP Stream and YANG Data APIs. Note that the definition of this class
41  * by no means final and subject to change as more functionality is centralized here.
42  */
43 @Beta
44 public class XmlStreamUtils {
45   private static final Logger LOG = LoggerFactory.getLogger(XmlStreamUtils.class);
46   private final XmlCodecProvider codecProvider;
47
48   protected XmlStreamUtils(final XmlCodecProvider codecProvider) {
49     this.codecProvider = Preconditions.checkNotNull(codecProvider);
50   }
51
52   /**
53    * Create a new instance encapsulating a particular codec provider.
54    *
55    * @param codecProvider XML codec provider
56    * @return A new instance
57    */
58   public static XmlStreamUtils create(final XmlCodecProvider codecProvider) {
59     return new XmlStreamUtils(codecProvider);
60   }
61
62   /**
63    * Check if a particular data element can be emitted as an empty element, bypassing value encoding. This
64    * functionality is optional, as valid XML stream is produced even if start/end element is produced unconditionally.
65    *
66    * @param data Data node
67    * @return True if the data node will result in empty element body.
68    */
69   public static boolean isEmptyElement(final Node<?> data) {
70     if (data == null) {
71       return true;
72     }
73
74     if (data instanceof CompositeNode) {
75       return ((CompositeNode) data).getValue().isEmpty();
76     }
77     if (data instanceof SimpleNode) {
78       return data.getValue() == null;
79     }
80
81     // Safe default
82     return false;
83   }
84
85   /**
86    * Write an InstanceIdentifier into the output stream. Calling corresponding {@link javax.xml.stream.XMLStreamWriter#writeStartElement(String)}
87    * and {@link javax.xml.stream.XMLStreamWriter#writeEndElement()} is the responsibility of the caller.
88    *
89    * @param writer XML Stream writer
90    * @param id InstanceIdentifier
91    * @throws javax.xml.stream.XMLStreamException
92    */
93   public static void write(final @Nonnull XMLStreamWriter writer, final @Nonnull YangInstanceIdentifier id) throws XMLStreamException {
94     Preconditions.checkNotNull(writer, "Writer may not be null");
95     Preconditions.checkNotNull(id, "Variable should contain instance of instance identifier and can't be null");
96     LOG.debug("Writing Instance identifier with Random prefix");
97     final RandomPrefix prefixes = new RandomPrefix();
98     final String str = XmlUtils.encodeIdentifier(prefixes, id);
99
100     for (Entry<URI, String> e: prefixes.getPrefixes()) {
101       writer.writeNamespace(e.getValue(), e.getKey().toString());
102     }
103     if(LOG.isDebugEnabled()) {
104         LOG.debug("Instance identifier with Random prefix is now {}", str);
105     }
106     writer.writeCharacters(str);
107   }
108
109   /**
110    * Write a full XML document corresponding to a CompositeNode into an XML stream writer.
111    *
112    * @param writer XML Stream writer
113    * @param data data node
114    * @param schema corresponding schema node, may be null
115    * @throws javax.xml.stream.XMLStreamException if an encoding problem occurs
116    */
117   public void writeDocument(final @Nonnull XMLStreamWriter writer, final @Nonnull CompositeNode data, final @Nullable SchemaNode schema) throws XMLStreamException {
118     // final Boolean repairing = (Boolean) writer.getProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES);
119     // Preconditions.checkArgument(repairing == true, "XML Stream Writer has to be repairing namespaces");
120
121     writer.writeStartDocument();
122     writeElement(writer, data, schema);
123     writer.writeEndDocument();
124     writer.flush();
125   }
126
127
128   /**
129    * Write an element into a XML stream writer. This includes the element start/end tags and
130    * the value of the element.
131    *
132    * @param writer XML Stream writer
133    * @param data data node
134    * @param schema Schema node
135    * @throws javax.xml.stream.XMLStreamException if an encoding problem occurs
136    */
137   public void writeElement(final XMLStreamWriter writer, final @Nonnull Node<?> data, final SchemaNode schema) throws XMLStreamException {
138     final QName qname = data.getNodeType();
139     final String pfx = qname.getPrefix() != null ? qname.getPrefix() : "";
140     final String ns = qname.getNamespace() != null ? qname.getNamespace().toString() : "";
141
142     if (isEmptyElement(data)) {
143       writer.writeEmptyElement(pfx, qname.getLocalName(), ns);
144       return;
145     }
146
147     writer.writeStartElement(pfx, qname.getLocalName(), ns);
148     if (data instanceof AttributesContainer && ((AttributesContainer) data).getAttributes() != null) {
149       for (Entry<QName, String> attribute : ((AttributesContainer) data).getAttributes().entrySet()) {
150         writer.writeAttribute(attribute.getKey().getNamespace().toString(), attribute.getKey().getLocalName(), attribute.getValue());
151       }
152     }
153
154     if (data instanceof SimpleNode<?>) {
155       LOG.debug("writeElement : node is of type SimpleNode");
156       // Simple node
157       if (schema instanceof LeafListSchemaNode) {
158         writeValue(writer, ((LeafListSchemaNode) schema).getType(), data.getValue());
159       } else if (schema instanceof LeafSchemaNode) {
160         writeValue(writer, ((LeafSchemaNode) schema).getType(), data.getValue());
161       } else {
162         Object value = data.getValue();
163         if (value != null) {
164           writer.writeCharacters(String.valueOf(value));
165         }
166       }
167     } else {
168       LOG.debug("writeElement : node is of type CompositeNode");
169       // CompositeNode
170       for (Node<?> child : ((CompositeNode) data).getValue()) {
171         DataSchemaNode childSchema = null;
172         if (schema instanceof DataNodeContainer) {
173           childSchema = SchemaUtils.findFirstSchema(child.getNodeType(), ((DataNodeContainer) schema).getChildNodes()).orNull();
174           if (childSchema == null && LOG.isDebugEnabled()) {
175             LOG.debug("Probably the data node \"{}\" does not conform to schema", child == null ? "" : child.getNodeType().getLocalName());
176           }
177         }
178
179         writeElement(writer, child, childSchema);
180       }
181     }
182
183     writer.writeEndElement();
184   }
185
186   /**
187    * Write a value into a XML stream writer. This method assumes the start and end of element is
188    * emitted by the caller.
189    *
190    * @param writer XML Stream writer
191    * @param type type definitions
192    * @param value object value
193    * @throws javax.xml.stream.XMLStreamException if an encoding problem occurs
194    */
195   public void writeValue(final @Nonnull XMLStreamWriter writer, final @Nonnull TypeDefinition<?> type, final Object value) throws XMLStreamException {
196     if (value == null) {
197       if(LOG.isDebugEnabled()){
198         LOG.debug("Value of {}:{} is null, not encoding it", type.getQName().getNamespace(), type.getQName().getLocalName());
199       }
200       return;
201     }
202
203     final TypeDefinition<?> baseType = XmlUtils.resolveBaseTypeFrom(type);
204     if (baseType instanceof IdentityrefTypeDefinition) {
205       write(writer, (IdentityrefTypeDefinition) baseType, value);
206     } else if (baseType instanceof InstanceIdentifierTypeDefinition) {
207       write(writer, (InstanceIdentifierTypeDefinition) baseType, value);
208     } else {
209       final TypeDefinitionAwareCodec<Object, ?> codec = codecProvider.codecFor(baseType);
210       String text;
211       if (codec != null) {
212         try {
213           text = codec.serialize(value);
214         } catch (ClassCastException e) {
215           LOG.error("Provided node value {} did not have type {} required by mapping. Using stream instead.", value, baseType, e);
216           text = String.valueOf(value);
217         }
218       } else {
219         LOG.error("Failed to find codec for {}, falling back to using stream", baseType);
220         text = String.valueOf(value);
221       }
222       writer.writeCharacters(text);
223     }
224   }
225
226   private static void write(final @Nonnull XMLStreamWriter writer, final @Nonnull IdentityrefTypeDefinition type, final @Nonnull Object value) throws XMLStreamException {
227     if (value instanceof QName) {
228       final QName qname = (QName) value;
229       final String prefix;
230       if (qname.getPrefix() != null && !qname.getPrefix().isEmpty()) {
231         prefix = qname.getPrefix();
232       } else {
233         prefix = "x";
234       }
235
236       writer.writeNamespace(prefix, qname.getNamespace().toString());
237       writer.writeCharacters(prefix + ':' + qname.getLocalName());
238     } else {
239       if(LOG.isDebugEnabled()) {
240         LOG.debug("Value of {}:{} is not a QName but {}", type.getQName().getNamespace(), type.getQName().getLocalName(), value.getClass());
241       }
242       writer.writeCharacters(String.valueOf(value));
243     }
244   }
245
246   private static void write(final @Nonnull XMLStreamWriter writer, final @Nonnull InstanceIdentifierTypeDefinition type, final @Nonnull Object value) throws XMLStreamException {
247     if (value instanceof YangInstanceIdentifier) {
248       if(LOG.isDebugEnabled()) {
249           LOG.debug("Writing InstanceIdentifier object {}", value);
250       }
251       write(writer, (YangInstanceIdentifier)value);
252     } else {
253       if(LOG.isDebugEnabled()) {
254           LOG.debug("Value of {}:{} is not an InstanceIdentifier but {}", type.getQName().getNamespace(), type.getQName().getLocalName(), value.getClass());
255       }
256         writer.writeCharacters(String.valueOf(value));
257     }
258   }
259 }