Merge "BUG-2243 Fixing invalid hello message handling"
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / operations / editconfig / ReplaceEditConfigStrategy.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
9 package org.opendaylight.controller.netconf.confignetconfconnector.operations.editconfig;
10
11 import java.util.Map;
12 import java.util.Map.Entry;
13 import javax.management.Attribute;
14 import javax.management.ObjectName;
15 import org.opendaylight.controller.config.util.ConfigTransactionClient;
16 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
17 import org.opendaylight.controller.netconf.confignetconfconnector.exception.NetconfConfigHandlingException;
18 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml.AttributeConfigElement;
19 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.config.ServiceRegistryWrapper;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 public class ReplaceEditConfigStrategy extends AbstractEditConfigStrategy {
24
25     private static final Logger logger = LoggerFactory.getLogger(ReplaceEditConfigStrategy.class);
26
27     @Override
28     void handleMissingInstance(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta,
29                                String module, String instance, ServiceRegistryWrapper services) throws NetconfConfigHandlingException {
30         throw new NetconfConfigHandlingException(
31                 String.format("Unable to handle missing instance, no missing instances should appear at this point, missing: %s : %s ",
32                         module,
33                         instance),
34                 NetconfDocumentedException.ErrorType.application,
35                 NetconfDocumentedException.ErrorTag.operation_failed,
36                 NetconfDocumentedException.ErrorSeverity.error);
37     }
38
39     @Override
40     void executeStrategy(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta, ObjectName on, ServiceRegistryWrapper services) throws NetconfConfigHandlingException {
41         for (Entry<String, AttributeConfigElement> configAttributeEntry : configuration.entrySet()) {
42             try {
43                 AttributeConfigElement ace = configAttributeEntry.getValue();
44
45                 if (!ace.getResolvedValue().isPresent()) {
46                     Object value = ace.getResolvedDefaultValue();
47                     ta.setAttribute(on, ace.getJmxName(), new Attribute(ace.getJmxName(), value));
48                     logger.debug("Attribute {} set to default value {} for {}", configAttributeEntry.getKey(), value,
49                             on);
50                 } else {
51                     Object value = ace.getResolvedValue().get();
52                     ta.setAttribute(on, ace.getJmxName(), new Attribute(ace.getJmxName(), value));
53                     logger.debug("Attribute {} set to value {} for {}", configAttributeEntry.getKey(), value, on);
54                 }
55
56             } catch (Exception e) {
57                 throw new IllegalStateException("Unable to set attributes for " + on + ", Error with attribute "
58                         + configAttributeEntry.getKey() + ":" + configAttributeEntry.getValue(), e);
59             }
60         }
61     }
62 }