Refactor dblib
[ccsdk/sli/core.git] / sli / recording / src / main / java / org / onap / ccsdk / sli / core / sli / recording / RecordingActivator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : CCSDK
4  * ================================================================================
5  * Copyright (C) 2017 ONAP
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.ccsdk.sli.core.sli.recording;
22
23 import java.util.LinkedList;
24
25 import org.osgi.framework.BundleActivator;
26 import org.osgi.framework.BundleContext;
27 import org.osgi.framework.ServiceReference;
28 import org.osgi.framework.ServiceRegistration;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32
33 public class RecordingActivator implements BundleActivator {
34
35         private LinkedList<ServiceRegistration> registrations = new LinkedList<ServiceRegistration>();
36
37         private static final Logger LOG = LoggerFactory
38                         .getLogger(RecordingActivator.class);
39         
40         @Override
41         public void start(BundleContext ctx) throws Exception {
42                 
43                 if (registrations == null)
44                 {
45                         registrations = new LinkedList<ServiceRegistration>();
46                 }
47                 
48
49                 FileRecorder fileRecorder = new FileRecorder();
50                 String regName = fileRecorder.getClass().getName();
51                 LOG.debug("Registering FileRecorder service "+regName);
52                 ServiceRegistration reg =ctx.registerService(regName, fileRecorder, null);
53                 registrations.add(reg);
54                 
55                 Slf4jRecorder slf4jRecorder = new Slf4jRecorder();
56                 regName = slf4jRecorder.getClass().getName();
57                 LOG.debug("Registering Slf4jRecorder service "+regName);
58                 reg =ctx.registerService(regName, slf4jRecorder, null);
59                 registrations.add(reg);
60                 
61         }
62
63         @Override
64         public void stop(BundleContext arg0) throws Exception {
65                 if (registrations != null) {
66                         for (ServiceRegistration reg : registrations) {
67                                 ServiceReference regRef = reg.getReference();
68                                 reg.unregister();
69                         }
70                         registrations = null;
71                 }
72         }
73
74 }