6de185ac1c1da4948fc343a4be19759362af03f0
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / mapping / operations / DefaultStartExi.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 package org.opendaylight.controller.netconf.impl.mapping.operations;
9
10 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
11 import org.opendaylight.controller.netconf.api.NetconfDocumentedException.ErrorSeverity;
12 import org.opendaylight.controller.netconf.api.NetconfDocumentedException.ErrorTag;
13 import org.opendaylight.controller.netconf.api.NetconfDocumentedException.ErrorType;
14 import org.opendaylight.controller.netconf.api.xml.XmlNetconfConstants;
15 import org.opendaylight.controller.netconf.api.NetconfMessage;
16 import org.opendaylight.controller.netconf.impl.NetconfServerSession;
17 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationChainedExecution;
18 import org.opendaylight.controller.netconf.util.mapping.AbstractSingletonNetconfOperation;
19 import org.opendaylight.controller.netconf.util.xml.XmlElement;
20 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23 import org.w3c.dom.Document;
24 import org.w3c.dom.Element;
25 public class DefaultStartExi extends AbstractSingletonNetconfOperation implements DefaultNetconfOperation {
26     public static final String START_EXI = "start-exi";
27
28     private static final Logger logger = LoggerFactory.getLogger(DefaultStartExi.class);
29     private NetconfServerSession netconfSession;
30
31     public DefaultStartExi(String netconfSessionIdForReporting) {
32         super(netconfSessionIdForReporting);
33     }
34
35     @Override
36     public Document handle(Document message,
37                            NetconfOperationChainedExecution subsequentOperation) throws NetconfDocumentedException {
38         logger.debug("Received start-exi message {} ", XmlUtil.toString(message));
39
40         try {
41             netconfSession.startExiCommunication(new NetconfMessage(message));
42         } catch (IllegalArgumentException e) {
43             throw new NetconfDocumentedException("Failed to parse EXI parameters", ErrorType.protocol,
44                     ErrorTag.operation_failed, ErrorSeverity.error);
45         }
46
47         return super.handle(message, subsequentOperation);
48     }
49
50     @Override
51     protected Element handleWithNoSubsequentOperations(Document document, XmlElement operationElement) throws NetconfDocumentedException {
52         Element getSchemaResult = document.createElementNS( XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0, XmlNetconfConstants.OK);
53         logger.trace("{} operation successful", START_EXI);
54         return getSchemaResult;
55     }
56
57     @Override
58     protected String getOperationName() {
59         return START_EXI;
60     }
61
62     @Override
63     protected String getOperationNamespace() {
64         return XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_EXI_1_0;
65     }
66
67     @Override
68     public void setNetconfSession(NetconfServerSession s) {
69         netconfSession = s;
70     }
71 }