fixed some Sonar critical issues
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-adapter-bundle / src / main / java / org / onap / 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.onap.appc.adapter.netconf;
26
27 import org.onap.appc.adapter.netconf.internal.NetconfDataAccessServiceImpl;
28 import org.onap.ccsdk.sli.core.dblib.DbLibService;
29 import org.onap.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      * The logger to be used
48      */
49     private static final EELFLogger logger = EELFManager.getInstance().getLogger(AppcNetconfAdapterActivator.class);
50
51     /**
52      * Called when this bundle is started so the Framework can perform the bundle-specific activities necessary to start
53      * this bundle. This method can be used to register services or to allocate any resources that this bundle needs.
54      * <p>
55      * This method must complete and return to its caller in a timely manner.
56      * </p>
57      *
58      * @param context
59      *            The execution context of the bundle being started.
60      * @throws java.lang.Exception
61      *             If this method throws an exception, this bundle is marked as stopped and the Framework will remove
62      *             this bundle's listeners, unregister all services registered by this bundle, and release all services
63      *             used by this bundle.
64      * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
65      */
66     @Override
67     public void start(BundleContext context) throws Exception {
68         if (registration == null) {
69             /*
70             * The reference to the actual implementation object that implements the services
71             */
72             NetconfClientFactory clientFactory = new NetconfClientFactory();                
73             factoryRegistration = context.registerService(NetconfClientFactory.class, clientFactory, null);
74             NetconfDataAccessService DAService = new NetconfDataAccessServiceImpl();
75             //set dblib service
76             DbLibService dblibSvc = null;
77             ServiceReference sref = context.getServiceReference(DbLibService.class.getName());
78             dblibSvc  = (DbLibService)context.getService(sref);
79             DAService.setDbLibService(dblibSvc);
80             ///////////////////////////////////
81             factoryRegistration = context.registerService(NetconfDataAccessService.class, DAService, null);
82         }
83
84         //logger.info(Msg.COMPONENT_INITIALIZED, "NETCONF adapter");
85     }
86
87     /**
88      * Called when this bundle is stopped so the Framework can perform the bundle-specific activities necessary to stop
89      * the bundle. In general, this method should undo the work that the BundleActivator.start method started. There
90      * should be no active threads that were started by this bundle when this bundle returns. A stopped bundle must not
91      * call any Framework objects.
92      * <p>
93      * This method must complete and return to its caller in a timely manner.
94      * </p>
95      *
96      * @param context
97      *            The execution context of the bundle being stopped.
98      * @throws java.lang.Exception
99      *             If this method throws an exception, the bundle is still marked as stopped, and the Framework will
100      *             remove the bundle's listeners, unregister all services registered by the bundle, and release all
101      *             services used by the bundle. *
102      * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
103      */
104     @Override
105     public void stop(BundleContext context) throws Exception {
106         if (registration != null) {
107             registration.unregister();
108             registration = null;
109         }
110         if (reporterRegistration != null) {
111             reporterRegistration.unregister();
112             reporterRegistration = null;
113         }
114
115         if (null != factoryRegistration) {
116             factoryRegistration.unregister();
117             factoryRegistration = null;
118         }
119
120         if (dbRegistration != null) {
121             dbRegistration.unregister();
122             dbRegistration = null;
123         }
124     }
125
126     public String getName() {
127         return "APPC NETCONF adapter";
128     }
129
130 }