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