Merge "Bug 6396: Integrate ios-xe-renderer with clustering singleton service"
[groupbasedpolicy.git] / renderers / ios-xe / src / main / java / org / opendaylight / groupbasedpolicy / renderer / ios_xe_provider / impl / config / IosXeProviderInstance.java
1 /*
2  * Copyright (c) 2016 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.groupbasedpolicy.renderer.ios_xe_provider.impl.config;
10
11 import com.google.common.base.Preconditions;
12 import com.google.common.util.concurrent.Futures;
13 import com.google.common.util.concurrent.ListenableFuture;
14 import org.opendaylight.controller.config.yang.config.groupbasedpolicy.GroupbasedpolicyInstance;
15 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
16 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
17 import org.opendaylight.groupbasedpolicy.renderer.ios_xe_provider.impl.IosXeRendererProviderImpl;
18 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonService;
19 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider;
20 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceRegistration;
21 import org.opendaylight.mdsal.singleton.common.api.ServiceGroupIdentifier;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 public class IosXeProviderInstance implements ClusterSingletonService, AutoCloseable {
26
27     private static final Logger LOG = LoggerFactory.getLogger(IosXeProviderInstance.class);
28
29     private static final ServiceGroupIdentifier IDENTIFIER =
30             ServiceGroupIdentifier.create(GroupbasedpolicyInstance.GBP_SERVICE_GROUP_IDENTIFIER);
31     private final DataBroker dataBroker;
32     private final BindingAwareBroker bindingAwareBroker;
33     private final ClusterSingletonServiceProvider clusterSingletonService;
34     private ClusterSingletonServiceRegistration singletonServiceRegistration;
35     private IosXeRendererProviderImpl renderer;
36
37     public IosXeProviderInstance(final DataBroker dataBroker,
38                                  final BindingAwareBroker broker,
39                                  final ClusterSingletonServiceProvider clusterSingletonService) {
40         this.dataBroker = Preconditions.checkNotNull(dataBroker);
41         this.bindingAwareBroker = Preconditions.checkNotNull(broker);
42         this.clusterSingletonService = Preconditions.checkNotNull(clusterSingletonService);
43     }
44
45     public void initialize() {
46         LOG.info("Clustering session initiated for {}", this.getClass().getSimpleName());
47         singletonServiceRegistration = clusterSingletonService.registerClusterSingletonService(this);
48     }
49
50     @Override
51     public void instantiateServiceInstance() {
52         LOG.info("Instantiating {}", this.getClass().getSimpleName());
53         renderer = new IosXeRendererProviderImpl(dataBroker, bindingAwareBroker);
54     }
55
56     @Override
57     public ListenableFuture<Void> closeServiceInstance() {
58         LOG.info("Instance {} closed", this.getClass().getSimpleName());
59         renderer.close();
60         return Futures.immediateFuture(null);
61     }
62
63     @Override
64     public void close() throws Exception {
65         LOG.info("Clustering provider closed for {}", this.getClass().getSimpleName());
66         if (singletonServiceRegistration != null) {
67             try {
68                 singletonServiceRegistration.close();
69             } catch (Exception e) {
70                 LOG.warn("{} closed unexpectedly. Cause: {}", e.getMessage());
71             }
72             singletonServiceRegistration = null;
73         }
74     }
75
76     @Override
77     public ServiceGroupIdentifier getIdentifier() {
78         return IDENTIFIER;
79     }
80 }