1a405e02c80798fb80abbefeb271fc5c9c0db857
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / compat / CompositeRoutedRpcRegistration.java
1 /*
2  * Copyright (c) 2015 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 package org.opendaylight.controller.md.sal.binding.compat;
9
10 import com.google.common.collect.ImmutableSet;
11 import java.util.HashMap;
12 import java.util.Map;
13 import org.opendaylight.controller.md.sal.binding.impl.BindingDOMRpcProviderServiceAdapter;
14 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RoutedRpcRegistration;
15 import org.opendaylight.yangtools.concepts.ObjectRegistration;
16 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
17 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
18 import org.opendaylight.yangtools.yang.binding.RpcService;
19
20 final class CompositeRoutedRpcRegistration<T extends RpcService> implements RoutedRpcRegistration<T> {
21
22     private final Class<T> type;
23     private final T instance;
24     private final BindingDOMRpcProviderServiceAdapter adapter;
25     private final Map<InstanceIdentifier<?>, ObjectRegistration<T>> registrations = new HashMap<>(2);
26
27     CompositeRoutedRpcRegistration(final Class<T> type, final T impl,
28             final BindingDOMRpcProviderServiceAdapter providerAdapter) {
29         this.type = type;
30         this.instance = impl;
31         this.adapter = providerAdapter;
32     }
33
34     @Override
35     public Class<T> getServiceType() {
36         return type;
37     }
38
39     @Override
40     public T getInstance() {
41         return instance;
42     }
43
44     @Deprecated
45     @Override
46     public void registerInstance(final Class<? extends BaseIdentity> context, final InstanceIdentifier<?> path) {
47         registerPath(context, path);
48     }
49
50     @Override
51     public synchronized void registerPath(final Class<? extends BaseIdentity> context,
52             final InstanceIdentifier<?> path) {
53         if (!registrations.containsKey(path)) {
54             registrations.put(path,
55                     adapter.registerRpcImplementation(type, instance, ImmutableSet.<InstanceIdentifier<?>>of(path)));
56         }
57     }
58
59
60     @Override
61     @Deprecated
62     public void unregisterInstance(final Class<? extends BaseIdentity> context, final InstanceIdentifier<?> path) {
63         unregisterPath(context, path);
64     }
65
66     @Override
67     public synchronized  void unregisterPath(final Class<? extends BaseIdentity> context,
68             final InstanceIdentifier<?> path) {
69         final ObjectRegistration<T> reg = registrations.remove(path);
70         if (reg != null) {
71             reg.close();
72         }
73     }
74
75     @Override
76     public synchronized void close() {
77         for (final ObjectRegistration<T> reg : registrations.values()) {
78             reg.close();
79         }
80     }
81 }