2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
9 package org.opendaylight.controller.netconf.confignetconfconnector.operations;
11 import com.google.common.base.Preconditions;
12 import org.opendaylight.controller.config.api.ValidationException;
13 import org.opendaylight.controller.config.util.ConfigRegistryClient;
14 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
15 import org.opendaylight.controller.netconf.api.NetconfDocumentedException.ErrorSeverity;
16 import org.opendaylight.controller.netconf.api.NetconfDocumentedException.ErrorTag;
17 import org.opendaylight.controller.netconf.api.NetconfDocumentedException.ErrorType;
18 import org.opendaylight.controller.netconf.confignetconfconnector.transactions.TransactionProvider;
19 import org.opendaylight.controller.netconf.util.xml.XmlElement;
20 import org.opendaylight.controller.netconf.util.xml.XmlNetconfConstants;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23 import org.w3c.dom.Document;
24 import org.w3c.dom.Element;
26 import java.util.HashMap;
29 public class Validate extends AbstractConfigNetconfOperation {
31 public static final String VALIDATE = "validate";
33 private static final Logger logger = LoggerFactory.getLogger(Validate.class);
35 private final TransactionProvider transactionProvider;
37 public Validate(final TransactionProvider transactionProvider, ConfigRegistryClient configRegistryClient,
38 String netconfSessionIdForReporting) {
39 super(configRegistryClient, netconfSessionIdForReporting);
40 this.transactionProvider = transactionProvider;
43 private void checkXml(XmlElement xml) {
44 xml.checkName(VALIDATE);
45 xml.checkNamespace(XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0);
47 XmlElement sourceElement = xml.getOnlyChildElement(XmlNetconfConstants.SOURCE_KEY,
48 XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0);
49 XmlElement sourceChildNode = sourceElement.getOnlyChildElement();
51 sourceChildNode.checkNamespace(XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0);
52 String datastoreValue = sourceChildNode.getName();
53 Datastore sourceDatastore = Datastore.valueOf(datastoreValue);
55 Preconditions.checkState(sourceDatastore == Datastore.candidate, "Only " + Datastore.candidate
56 + " is supported as source for " + VALIDATE + " but was " + datastoreValue);
60 protected String getOperationName() {
65 protected Element handle(Document document, XmlElement xml) throws NetconfDocumentedException {
68 } catch (IllegalStateException e) {
69 logger.warn("Rpc error: {}", ErrorTag.missing_attribute, e);
70 final Map<String, String> errorInfo = new HashMap<>();
71 errorInfo.put(ErrorTag.missing_attribute.name(), "Missing value of datastore attribute");
72 throw new NetconfDocumentedException(e.getMessage(), e, ErrorType.rpc, ErrorTag.missing_attribute,
73 ErrorSeverity.error, errorInfo);
74 } catch (final IllegalArgumentException e) {
75 logger.warn("Rpc error: {}", ErrorTag.bad_attribute, e);
76 final Map<String, String> errorInfo = new HashMap<>();
77 errorInfo.put(ErrorTag.bad_attribute.name(), e.getMessage());
78 throw new NetconfDocumentedException(e.getMessage(), e, ErrorType.rpc, ErrorTag.bad_attribute,
79 ErrorSeverity.error, errorInfo);
83 transactionProvider.validateTransaction();
84 } catch (ValidationException e) {
85 logger.warn("Validation failed", e);
86 final Map<String, String> errorInfo = new HashMap<>();
87 errorInfo.put(ErrorTag.operation_failed.name(), "Validation failed");
88 throw new NetconfDocumentedException(e.getMessage(), e, ErrorType.application, ErrorTag.operation_failed,
89 ErrorSeverity.error, errorInfo);
90 } catch (IllegalStateException e) {
91 logger.warn("Validation failed", e);
92 final Map<String, String> errorInfo = new HashMap<>();
94 .put(ErrorTag.operation_failed.name(),
95 "Datastore is not present. Use 'get-config' or 'edit-config' before triggering 'operations' operation");
96 throw new NetconfDocumentedException(e.getMessage(), e, ErrorType.application, ErrorTag.operation_failed,
97 ErrorSeverity.error, errorInfo);
101 logger.info("Datastore {} validated successfully", Datastore.candidate);
103 return document.createElement(XmlNetconfConstants.OK);