cd3aa6104e24ca777e83517b8e6f58075b4ec2e7
[transportpce.git] / tests / honeynode / 2.2.1 / netconf-impl / src / main / java / org / opendaylight / netconf / impl / osgi / AggregatedNetconfOperationServiceFactory.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.netconf.impl.osgi;
10
11 import com.google.common.collect.HashMultimap;
12 import com.google.common.collect.ImmutableSet;
13 import com.google.common.collect.ImmutableSet.Builder;
14 import com.google.common.collect.Maps;
15 import com.google.common.collect.Multimap;
16 import com.google.common.collect.Multimaps;
17 import com.google.common.collect.Sets;
18 import io.netty.util.internal.ConcurrentSet;
19 import java.util.HashSet;
20 import java.util.List;
21 import java.util.Map;
22 import java.util.Set;
23 import org.opendaylight.netconf.api.capability.Capability;
24 import org.opendaylight.netconf.api.monitoring.CapabilityListener;
25 import org.opendaylight.netconf.mapping.api.NetconfOperation;
26 import org.opendaylight.netconf.mapping.api.NetconfOperationService;
27 import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactory;
28 import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactoryListener;
29 import org.opendaylight.netconf.util.CloseableUtil;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 /**
34  * NetconfOperationService aggregator. Makes a collection of operation services accessible as one.
35  */
36 public class AggregatedNetconfOperationServiceFactory
37         implements NetconfOperationServiceFactory, NetconfOperationServiceFactoryListener, AutoCloseable {
38
39     private static final Logger LOG = LoggerFactory.getLogger(AggregatedNetconfOperationServiceFactory.class);
40
41     private final Set<NetconfOperationServiceFactory> factories = new ConcurrentSet<>();
42     private final Multimap<NetconfOperationServiceFactory, AutoCloseable> registrations =
43             Multimaps.synchronizedMultimap(HashMultimap.create());
44     private final Set<CapabilityListener> listeners = new ConcurrentSet<>();
45
46     public AggregatedNetconfOperationServiceFactory() {
47     }
48
49     public AggregatedNetconfOperationServiceFactory(final List<NetconfOperationServiceFactory> mappers) {
50         mappers.forEach(this::onAddNetconfOperationServiceFactory);
51     }
52
53     @Override
54     public synchronized void onAddNetconfOperationServiceFactory(NetconfOperationServiceFactory service) {
55         factories.add(service);
56
57         for (final CapabilityListener listener : listeners) {
58             AutoCloseable reg = service.registerCapabilityListener(listener);
59             registrations.put(service, reg);
60         }
61     }
62
63     @SuppressWarnings("checkstyle:IllegalCatch")
64     @Override
65     public synchronized void onRemoveNetconfOperationServiceFactory(NetconfOperationServiceFactory service) {
66         factories.remove(service);
67
68         for (final AutoCloseable autoCloseable : registrations.get(service)) {
69             try {
70                 autoCloseable.close();
71             } catch (Exception e) {
72                 LOG.warn("Unable to close listener registration", e);
73             }
74         }
75
76         registrations.removeAll(service);
77     }
78
79     @Override
80     public Set<Capability> getCapabilities() {
81         final HashSet<Capability> capabilities = Sets.newHashSet();
82         for (final NetconfOperationServiceFactory factory : factories) {
83             capabilities.addAll(factory.getCapabilities());
84         }
85         return capabilities;
86     }
87
88     @Override
89     public synchronized AutoCloseable registerCapabilityListener(final CapabilityListener listener) {
90         final Map<NetconfOperationServiceFactory, AutoCloseable> regs = Maps.newHashMap();
91
92         for (final NetconfOperationServiceFactory factory : factories) {
93             final AutoCloseable reg = factory.registerCapabilityListener(listener);
94             regs.put(factory, reg);
95         }
96         listeners.add(listener);
97
98         return () -> {
99             synchronized (AggregatedNetconfOperationServiceFactory.this) {
100                 listeners.remove(listener);
101                 CloseableUtil.closeAll(regs.values());
102                 for (final Map.Entry<NetconfOperationServiceFactory, AutoCloseable> reg : regs.entrySet()) {
103                     registrations.remove(reg.getKey(), reg.getValue());
104                 }
105             }
106         };
107     }
108
109     @Override
110     public synchronized NetconfOperationService createService(final String netconfSessionIdForReporting) {
111         return new AggregatedNetconfOperation(factories, netconfSessionIdForReporting);
112     }
113
114     @Override
115     public synchronized void close() throws Exception {
116         factories.clear();
117         for (AutoCloseable reg : registrations.values()) {
118             reg.close();
119         }
120         registrations.clear();
121         listeners.clear();
122     }
123
124     private static final class AggregatedNetconfOperation implements NetconfOperationService {
125
126         private final Set<NetconfOperationService> services;
127
128         AggregatedNetconfOperation(final Set<NetconfOperationServiceFactory> factories,
129                                    final String netconfSessionIdForReporting) {
130             final Builder<NetconfOperationService> b = ImmutableSet.builder();
131             for (final NetconfOperationServiceFactory factory : factories) {
132                 b.add(factory.createService(netconfSessionIdForReporting));
133             }
134             this.services = b.build();
135         }
136
137         @Override
138         public Set<NetconfOperation> getNetconfOperations() {
139             final HashSet<NetconfOperation> operations = Sets.newHashSet();
140             for (final NetconfOperationService service : services) {
141                 operations.addAll(service.getNetconfOperations());
142             }
143             return operations;
144         }
145
146         @SuppressWarnings("checkstyle:IllegalCatch")
147         @Override
148         public void close() {
149             try {
150                 CloseableUtil.closeAll(services);
151             } catch (final Exception e) {
152                 throw new IllegalStateException("Unable to properly close all aggregated services", e);
153             }
154         }
155     }
156 }