Bug 3104 - fixed XmlNormalizedNodeBodyReader
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / XmlNormalizedNodeBodyReader.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.sal.rest.impl;
9
10 import com.google.common.collect.Iterables;
11 import java.io.IOException;
12 import java.io.InputStream;
13 import java.lang.annotation.Annotation;
14 import java.lang.reflect.Type;
15 import java.util.ArrayDeque;
16 import java.util.ArrayList;
17 import java.util.Collection;
18 import java.util.Collections;
19 import java.util.Deque;
20 import java.util.List;
21 import javax.ws.rs.Consumes;
22 import javax.ws.rs.WebApplicationException;
23 import javax.ws.rs.core.MediaType;
24 import javax.ws.rs.core.MultivaluedMap;
25 import javax.ws.rs.ext.MessageBodyReader;
26 import javax.ws.rs.ext.Provider;
27 import javax.xml.parsers.DocumentBuilder;
28 import javax.xml.parsers.DocumentBuilderFactory;
29 import javax.xml.parsers.ParserConfigurationException;
30 import org.opendaylight.controller.sal.rest.api.Draft02;
31 import org.opendaylight.controller.sal.rest.api.RestconfService;
32 import org.opendaylight.controller.sal.restconf.impl.InstanceIdentifierContext;
33 import org.opendaylight.controller.sal.restconf.impl.NormalizedNodeContext;
34 import org.opendaylight.controller.sal.restconf.impl.RestconfDocumentedException;
35 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorTag;
36 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorType;
37 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
38 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
39 import org.opendaylight.yangtools.yang.data.impl.codec.xml.XmlUtils;
40 import org.opendaylight.yangtools.yang.data.impl.schema.SchemaUtils;
41 import org.opendaylight.yangtools.yang.data.impl.schema.transform.dom.parser.DomToNormalizedNodeParserFactory;
42 import org.opendaylight.yangtools.yang.model.api.AugmentationSchema;
43 import org.opendaylight.yangtools.yang.model.api.AugmentationTarget;
44 import org.opendaylight.yangtools.yang.model.api.ChoiceCaseNode;
45 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
46 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
47 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
48 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
49 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
50 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
51 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
52 import org.slf4j.Logger;
53 import org.slf4j.LoggerFactory;
54 import org.w3c.dom.Document;
55 import org.w3c.dom.Element;
56
57 @Provider
58 @Consumes({ Draft02.MediaTypes.DATA + RestconfService.XML, Draft02.MediaTypes.OPERATION + RestconfService.XML,
59     MediaType.APPLICATION_XML, MediaType.TEXT_XML })
60 public class XmlNormalizedNodeBodyReader extends AbstractIdentifierAwareJaxRsProvider implements MessageBodyReader<NormalizedNodeContext> {
61
62     private final static Logger LOG = LoggerFactory.getLogger(XmlNormalizedNodeBodyReader.class);
63     private static final DocumentBuilderFactory BUILDERFACTORY;
64
65     static {
66         final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
67         try {
68             factory.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);
69             factory.setFeature("http://xml.org/sax/features/external-general-entities", false);
70             factory.setFeature("http://xml.org/sax/features/external-parameter-entities", false);
71             factory.setXIncludeAware(false);
72             factory.setExpandEntityReferences(false);
73         } catch (final ParserConfigurationException e) {
74             throw new ExceptionInInitializerError(e);
75         }
76         factory.setNamespaceAware(true);
77         factory.setCoalescing(true);
78         factory.setIgnoringElementContentWhitespace(true);
79         factory.setIgnoringComments(true);
80         BUILDERFACTORY = factory;
81     }
82
83     @Override
84     public boolean isReadable(final Class<?> type, final Type genericType, final Annotation[] annotations,
85             final MediaType mediaType) {
86         return true;
87     }
88
89     @Override
90     public NormalizedNodeContext readFrom(final Class<NormalizedNodeContext> type, final Type genericType,
91             final Annotation[] annotations, final MediaType mediaType,
92             final MultivaluedMap<String, String> httpHeaders, final InputStream entityStream) throws IOException,
93             WebApplicationException {
94         try {
95             final InstanceIdentifierContext<?> path = getInstanceIdentifierContext();
96
97             if (entityStream.available() < 1) {
98                 // represent empty nopayload input
99                 return new NormalizedNodeContext(path, null);
100             }
101
102             final DocumentBuilder dBuilder;
103             try {
104                 dBuilder = BUILDERFACTORY.newDocumentBuilder();
105             } catch (final ParserConfigurationException e) {
106                 throw new RuntimeException("Failed to parse XML document", e);
107             }
108             final Document doc = dBuilder.parse(entityStream);
109
110             return parse(path,doc);
111         } catch (final RestconfDocumentedException e){
112             throw e;
113         } catch (final Exception e) {
114             LOG.debug("Error parsing xml input", e);
115
116             throw new RestconfDocumentedException("Error parsing input: " + e.getMessage(), ErrorType.PROTOCOL,
117                     ErrorTag.MALFORMED_MESSAGE);
118         }
119     }
120
121     private NormalizedNodeContext parse(final InstanceIdentifierContext<?> pathContext,final Document doc) {
122
123         final List<Element> elements = Collections.singletonList(doc.getDocumentElement());
124         final SchemaNode schemaNodeContext = pathContext.getSchemaNode();
125         DataSchemaNode schemaNode;
126         if (schemaNodeContext instanceof RpcDefinition) {
127             schemaNode = ((RpcDefinition) schemaNodeContext).getInput();
128         } else if (schemaNodeContext instanceof DataSchemaNode) {
129             schemaNode = (DataSchemaNode) schemaNodeContext;
130         } else {
131             throw new IllegalStateException("Unknow SchemaNode");
132         }
133
134         final String docRootElm = doc.getDocumentElement().getLocalName();
135         final List<YangInstanceIdentifier.PathArgument> iiToDataList = new ArrayList<>();
136         InstanceIdentifierContext<SchemaNode> outIIContext;
137
138
139         // FIXME the factory instance should be cached if the schema context is the same
140         final DomToNormalizedNodeParserFactory parserFactory =
141                 DomToNormalizedNodeParserFactory.getInstance(XmlUtils.DEFAULT_XML_CODEC_PROVIDER, pathContext.getSchemaContext());
142
143         if (isPost()) {
144             final Deque<Object> foundSchemaNodes = findPathToSchemaNodeByName(schemaNode, docRootElm);
145             while (!foundSchemaNodes.isEmpty()) {
146                 final Object child  = foundSchemaNodes.pop();
147                 if (child instanceof AugmentationSchema) {
148                     final AugmentationSchema augmentSchemaNode = (AugmentationSchema) child;
149                     iiToDataList.add(SchemaUtils.getNodeIdentifierForAugmentation(augmentSchemaNode));
150                 } else if (child instanceof DataSchemaNode) {
151                     schemaNode = (DataSchemaNode) child;
152                     iiToDataList.add(new YangInstanceIdentifier.NodeIdentifier(schemaNode.getQName()));
153                 }
154             }
155         }
156
157         NormalizedNode<?, ?> parsed = null;
158
159         if(schemaNode instanceof ContainerSchemaNode) {
160             parsed = parserFactory.getContainerNodeParser().parse(Collections.singletonList(doc.getDocumentElement()), (ContainerSchemaNode) schemaNode);
161         } else if(schemaNode instanceof ListSchemaNode) {
162             final ListSchemaNode casted = (ListSchemaNode) schemaNode;
163             parsed = parserFactory.getMapEntryNodeParser().parse(elements, casted);
164             if (isPost()) {
165                 iiToDataList.add(parsed.getIdentifier());
166             }
167         }
168         // FIXME : add another DataSchemaNode extensions e.g. LeafSchemaNode
169
170         final YangInstanceIdentifier fullIIToData = YangInstanceIdentifier.create(Iterables.concat(
171                 pathContext.getInstanceIdentifier().getPathArguments(), iiToDataList));
172
173         outIIContext = new InstanceIdentifierContext<>(fullIIToData, pathContext.getSchemaNode(), pathContext.getMountPoint(),
174                 pathContext.getSchemaContext());
175
176         return new NormalizedNodeContext(outIIContext, parsed);
177     }
178
179     private static Deque<Object> findPathToSchemaNodeByName(final DataSchemaNode schemaNode, final String elementName) {
180         final Deque<Object> result = new ArrayDeque<>();
181         final ArrayList<ChoiceSchemaNode> choiceSchemaNodes = new ArrayList<>();
182         final Collection<DataSchemaNode> children = ((DataNodeContainer) schemaNode).getChildNodes();
183         for (final DataSchemaNode child : children) {
184             if (child instanceof ChoiceSchemaNode) {
185                 choiceSchemaNodes.add((ChoiceSchemaNode) child);
186             } else if (child.getQName().getLocalName().equalsIgnoreCase(elementName)) {
187                 result.push(child);
188                 if (child.isAugmenting()) {
189                     final AugmentationSchema augment = findCorrespondingAugment(schemaNode, child);
190                     if (augment != null) {
191                         result.push(augment);
192                     }
193                 }
194                 return result;
195             }
196         }
197
198         for (final ChoiceSchemaNode choiceNode : choiceSchemaNodes) {
199             for (final ChoiceCaseNode caseNode : choiceNode.getCases()) {
200                 final Deque<Object> resultFromRecursion = findPathToSchemaNodeByName(caseNode, elementName);
201                 if (!resultFromRecursion.isEmpty()) {
202                     resultFromRecursion.push(choiceNode);
203                     if (choiceNode.isAugmenting()) {
204                         final AugmentationSchema augment = findCorrespondingAugment(schemaNode, choiceNode);
205                         if (augment != null) {
206                             resultFromRecursion.push(augment);
207                         }
208                     }
209                     return resultFromRecursion;
210                 }
211             }
212         }
213         return result;
214     }
215
216     private static AugmentationSchema findCorrespondingAugment(final DataSchemaNode parent, final DataSchemaNode child) {
217         if (parent instanceof AugmentationTarget && !(parent instanceof ChoiceSchemaNode)) {
218             for (final AugmentationSchema augmentation : ((AugmentationTarget) parent).getAvailableAugmentations()) {
219                 final DataSchemaNode childInAugmentation = augmentation.getDataChildByName(child.getQName());
220                 if (childInAugmentation != null) {
221                     return augmentation;
222                 }
223             }
224         }
225         return null;
226     }
227 }
228