Update service reference persistance according to new ServiceRegistry API in config...
[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 com.google.common.collect.HashMultimap;
12 import com.google.common.collect.Multimap;
13 import org.opendaylight.controller.config.api.jmx.ObjectNameUtil;
14 import org.opendaylight.controller.config.util.ConfigTransactionClient;
15 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml.AttributeConfigElement;
16 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.config.ServiceRegistryWrapper;
17 import org.slf4j.Logger;
18 import org.slf4j.LoggerFactory;
19
20 import javax.management.Attribute;
21 import javax.management.InstanceNotFoundException;
22 import javax.management.ObjectName;
23 import java.util.Map;
24 import java.util.Map.Entry;
25
26 public class MergeEditConfigStrategy extends AbstractEditConfigStrategy {
27
28     private static final Logger logger = LoggerFactory.getLogger(MergeEditConfigStrategy.class);
29     private final Multimap<String, String> providedServices;
30
31     public MergeEditConfigStrategy() {
32         this.providedServices = HashMultimap.create();
33     }
34
35     public MergeEditConfigStrategy(Multimap<String, String> providedServices) {
36         this.providedServices = providedServices;
37     }
38
39     @Override
40     void handleMissingInstance(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta,
41             String module, String instance, ServiceRegistryWrapper services) {
42         throw new IllegalStateException(
43                 "Unable to handle missing instance, no missing instances should appear at this point, missing: "
44                         + module + ":" + instance);
45     }
46
47     private void addRefNames(ServiceRegistryWrapper services, Multimap<String, String> providedServices, ConfigTransactionClient ta, ObjectName on) throws InstanceNotFoundException {
48         for (Entry<String, String> namespaceToService : providedServices.entries()) {
49
50             if(services.hasRefName(namespaceToService.getKey(),
51                     namespaceToService.getValue(), on))
52                 continue;
53
54             String refName = services.getNewDefaultRefName(namespaceToService.getKey(), namespaceToService.getValue(),
55                     ObjectNameUtil.getFactoryName(on), ObjectNameUtil.getInstanceName(on));
56             ta.saveServiceReference(
57                     ta.getServiceInterfaceName(namespaceToService.getKey(), namespaceToService.getValue()), refName, on);
58         }
59     }
60
61     @Override
62     void executeStrategy(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta, ObjectName on, ServiceRegistryWrapper services) {
63         try {
64             addRefNames(services, providedServices, ta, on);
65         } catch (InstanceNotFoundException e) {
66             throw new IllegalStateException("Unable to save default ref name for instance " + on, e);
67         }
68
69         for (Entry<String, AttributeConfigElement> configAttributeEntry : configuration.entrySet()) {
70             try {
71                 AttributeConfigElement ace = configAttributeEntry.getValue();
72
73                 if (!ace.getResolvedValue().isPresent()) {
74                     logger.debug("Skipping attribute {} for {}", configAttributeEntry.getKey(), on);
75                     continue;
76                 }
77
78                 Object value = ace.getResolvedValue().get();
79                 ta.setAttribute(on, ace.getJmxName(), new Attribute(ace.getJmxName(), value));
80                 logger.debug("Attribute {} set to {} for {}", configAttributeEntry.getKey(), value, on);
81             } catch (Exception e) {
82                 throw new IllegalStateException("Unable to set attributes for " + on + ", Error with attribute "
83                         + configAttributeEntry.getKey() + ":" + configAttributeEntry.getValue(), e);
84             }
85         }
86     }
87 }