Code clean-up in ChefAdapterImpl.java
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-adapter-bundle / src / main / java / org / openecomp / appc / adapter / netconf / AppcNetconfAdapterActivator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.adapter.netconf;
26
27 import org.openecomp.appc.adapter.netconf.internal.NetconfDataAccessServiceImpl;
28 import org.openecomp.sdnc.sli.resource.dblib.DbLibService;
29 import org.openecomp.appc.i18n.Msg;
30 import com.att.eelf.configuration.EELFLogger;
31 import com.att.eelf.configuration.EELFManager;
32 import org.osgi.framework.BundleActivator;
33 import org.osgi.framework.BundleContext;
34 import org.osgi.framework.ServiceReference;
35 import org.osgi.framework.ServiceRegistration;
36
37 public class AppcNetconfAdapterActivator implements BundleActivator {
38
39     /**
40      * The bundle registration
41      */
42     private ServiceRegistration registration = null;
43     private ServiceRegistration reporterRegistration = null;
44     private ServiceRegistration factoryRegistration = null;
45     private ServiceRegistration dbRegistration = null;
46
47     /**
48      * The reference to the actual implementation object that implements the services
49      */
50     private NetconfClientFactory clientFactory;
51     private NetconfDataAccessService DAService;
52
53     /**
54      * The logger to be used
55      */
56     private static final EELFLogger logger = EELFManager.getInstance().getLogger(AppcNetconfAdapterActivator.class);
57
58     /**
59      * Called when this bundle is started so the Framework can perform the bundle-specific activities necessary to start
60      * this bundle. This method can be used to register services or to allocate any resources that this bundle needs.
61      * <p>
62      * This method must complete and return to its caller in a timely manner.
63      * </p>
64      *
65      * @param context
66      *            The execution context of the bundle being started.
67      * @throws java.lang.Exception
68      *             If this method throws an exception, this bundle is marked as stopped and the Framework will remove
69      *             this bundle's listeners, unregister all services registered by this bundle, and release all services
70      *             used by this bundle.
71      * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
72      */
73     @Override
74     public void start(BundleContext context) throws Exception {
75
76         if (registration == null) {
77             clientFactory = new NetconfClientFactory();
78             factoryRegistration = context.registerService(NetconfClientFactory.class, clientFactory, null);
79
80             DAService = new NetconfDataAccessServiceImpl();
81             //set dblib service
82             DbLibService dblibSvc = null;
83             ServiceReference sref = context.getServiceReference(DbLibService.class.getName());
84             dblibSvc  = (DbLibService)context.getService(sref);
85             DAService.setDbLibService(dblibSvc);
86             ///////////////////////////////////
87             factoryRegistration = context.registerService(NetconfDataAccessService.class, DAService, null);
88         }
89
90         logger.info(Msg.COMPONENT_INITIALIZED, "NETCONF adapter");
91     }
92
93     /**
94      * Called when this bundle is stopped so the Framework can perform the bundle-specific activities necessary to stop
95      * the bundle. In general, this method should undo the work that the BundleActivator.start method started. There
96      * should be no active threads that were started by this bundle when this bundle returns. A stopped bundle must not
97      * call any Framework objects.
98      * <p>
99      * This method must complete and return to its caller in a timely manner.
100      * </p>
101      *
102      * @param context
103      *            The execution context of the bundle being stopped.
104      * @throws java.lang.Exception
105      *             If this method throws an exception, the bundle is still marked as stopped, and the Framework will
106      *             remove the bundle's listeners, unregister all services registered by the bundle, and release all
107      *             services used by the bundle. *
108      * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
109      */
110     @Override
111     public void stop(BundleContext context) throws Exception {
112         if (registration != null) {
113             registration.unregister();
114             registration = null;
115         }
116         if (reporterRegistration != null) {
117             reporterRegistration.unregister();
118             reporterRegistration = null;
119         }
120
121         if (null != factoryRegistration) {
122             factoryRegistration.unregister();
123             factoryRegistration = null;
124         }
125
126         if (dbRegistration != null) {
127             dbRegistration.unregister();
128             dbRegistration = null;
129         }
130     }
131
132     public String getName() {
133         return "APPC NETCONF adapter";
134     }
135
136 }