Merge ".gitignore .factorypath created by m2e-apt"
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / netconf / schema / mapping / SchemalessMessageTransformer.java
1 /*
2  * Copyright (c) 2016 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.netconf.sal.connect.netconf.schema.mapping;
9
10 import java.util.Date;
11 import java.util.Map;
12 import javax.xml.transform.dom.DOMSource;
13 import org.opendaylight.controller.config.util.xml.MissingNameSpaceException;
14 import org.opendaylight.controller.config.util.xml.XmlElement;
15 import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
16 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
17 import org.opendaylight.controller.md.sal.dom.spi.DefaultDOMRpcResult;
18 import org.opendaylight.netconf.api.NetconfMessage;
19 import org.opendaylight.netconf.sal.connect.api.MessageTransformer;
20 import org.opendaylight.netconf.sal.connect.netconf.util.NetconfMessageTransformUtil;
21 import org.opendaylight.netconf.sal.connect.util.MessageCounter;
22 import org.opendaylight.yangtools.yang.common.QName;
23 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
24 import org.opendaylight.yangtools.yang.data.api.schema.AnyXmlNode;
25 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
26 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
27 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
28 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
29 import org.w3c.dom.Document;
30 import org.w3c.dom.Element;
31
32 /**
33  * Transforms anyxml rpcs for schemaless netconf devices.
34  */
35 public class SchemalessMessageTransformer implements MessageTransformer<NetconfMessage> {
36
37     private static final YangInstanceIdentifier.NodeIdentifier REPLY_ID =
38             new YangInstanceIdentifier.NodeIdentifier(NetconfMessageTransformUtil.NETCONF_RPC_REPLY_QNAME);
39     // TODO maybe we should move this somewhere else as this
40     // might be used in applications using schemaless mountpoints
41     public static final YangInstanceIdentifier.NodeIdentifier SCHEMALESS_NOTIFICATION_PAYLOAD =
42             new YangInstanceIdentifier.NodeIdentifier(QName.create("schemaless-notification-payload"));
43
44     private final MessageCounter counter;
45
46     public SchemalessMessageTransformer(final MessageCounter counter) {
47         this.counter = counter;
48     }
49
50     @Override
51     public DOMNotification toNotification(final NetconfMessage message) {
52         final Map.Entry<Date, XmlElement> stripped = NetconfMessageTransformUtil.stripNotification(message);
53         final QName notificationNoRev;
54         try {
55             notificationNoRev =
56                     QName.create(stripped.getValue().getNamespace(), stripped.getValue().getName()).withoutRevision();
57         } catch (final MissingNameSpaceException e) {
58             throw new IllegalArgumentException("Unable to parse notification " + message + ", cannot find namespace", e);
59         }
60
61         final AnyXmlNode notificationPayload = Builders.anyXmlBuilder()
62                 .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(notificationNoRev))
63                 .withValue(new DOMSource(stripped.getValue().getDomElement()))
64                 .build();
65
66         final ContainerNode notificationBody = Builders.containerBuilder()
67                 .withNodeIdentifier(SCHEMALESS_NOTIFICATION_PAYLOAD)
68                 .withChild(notificationPayload)
69                 .build();
70
71         return new NetconfMessageTransformer.NetconfDeviceNotification(notificationBody, stripped.getKey());
72     }
73
74     @Override
75     public NetconfMessage toRpcRequest(final SchemaPath rpc, final NormalizedNode<?, ?> input) {
76         final DOMSource payload = (DOMSource) input.getValue();
77         wrapPayload((Document) payload.getNode());
78         return new NetconfMessage(((Document) ((AnyXmlNode) input).getValue().getNode()));
79     }
80
81     /**
82      * Transforms reply message to anyXml node. In case, that rpc-reply doesn't contain data and contains only &lt;ok/&gt;
83      * element, returns null.
84      * @param rpcReply reply message
85      * @return anyxml
86      */
87     @Override
88     public DOMRpcResult toRpcResult(final NetconfMessage rpcReply, final SchemaPath rpc) {
89         final Document document = rpcReply.getDocument();
90         final AnyXmlNode result;
91         if(BaseRpcSchemalessTransformer.isOkPresent(document)) {
92             result =  null;
93         } else {
94             result = Builders.anyXmlBuilder()
95                     .withNodeIdentifier(REPLY_ID)
96                     .withValue(new DOMSource(rpcReply.getDocument()))
97                     .build();
98         }
99         return new DefaultDOMRpcResult(result);
100     }
101
102     private void wrapPayload(final Document doc) {
103         final Element payload = doc.getDocumentElement();
104         doc.removeChild(payload);
105         final Element rpcNS = doc.createElementNS(NetconfMessageTransformUtil.NETCONF_RPC_QNAME.getNamespace().toString(),
106                 NetconfMessageTransformUtil.NETCONF_RPC_QNAME.getLocalName());
107         // set msg id
108         rpcNS.setAttribute(NetconfMessageTransformUtil.MESSAGE_ID_ATTR, counter.getNewMessageId(NetconfMessageTransformUtil.MESSAGE_ID_PREFIX));
109         rpcNS.appendChild(payload);
110         doc.appendChild(rpcNS);
111     }
112 }