Merge "Add service reference binding to config registry."
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / operations / editconfig / MergeEditConfigStrategy.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
14 import javax.management.Attribute;
15 import javax.management.InstanceAlreadyExistsException;
16 import javax.management.ObjectName;
17
18 import org.opendaylight.controller.config.util.ConfigTransactionClient;
19 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml.AttributeConfigElement;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 public class MergeEditConfigStrategy extends AbstractEditConfigStrategy {
24
25     private static final Logger logger = LoggerFactory.getLogger(MergeEditConfigStrategy.class);
26
27     @Override
28     void handleMissingInstance(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta,
29             String module, String instance) {
30         ObjectName on;
31         try {
32             on = ta.createModule(module, instance);
33             logger.info("New instance for {} {} created under name {}", module, instance, on);
34             executeStrategy(configuration, ta, on);
35         } catch (InstanceAlreadyExistsException e1) {
36             throw new IllegalStateException("Unable to create instance for " + module + " : " + instance);
37         }
38     }
39
40     @Override
41     void executeStrategy(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta, ObjectName on) {
42         for (Entry<String, AttributeConfigElement> configAttributeEntry : configuration.entrySet()) {
43             try {
44                 AttributeConfigElement ace = configAttributeEntry.getValue();
45
46                 if (!ace.getResolvedValue().isPresent()) {
47                     logger.debug("Skipping attribute {} for {}", configAttributeEntry.getKey(), on);
48                     continue;
49                 }
50
51                 Object value = ace.getResolvedValue().get();
52                 ta.setAttribute(on, ace.getJmxName(), new Attribute(ace.getJmxName(), value));
53                 logger.debug("Attribute {} set to {} for {}", configAttributeEntry.getKey(), value, on);
54             } catch (Exception e) {
55                 throw new IllegalStateException("Unable to set attributes for " + on + ", Error with attribute "
56                         + configAttributeEntry.getKey() + ":" + configAttributeEntry.getValue(), e);
57             }
58         }
59     }
60 }