1dfd4c1d3c53fbabb88c66cec1c97f80affa816a
[appc.git] / appc-config / appc-config-generator / provider / src / main / java / org / onap / sdnc / config / generator / ConfigGeneratorActivator.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.sdnc.config.generator;
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import java.util.LinkedList;
30 import java.util.List;
31 import org.onap.sdnc.config.generator.convert.ConvertNode;
32 import org.onap.sdnc.config.generator.merge.MergeNode;
33 import org.onap.sdnc.config.generator.pattern.PatternNode;
34 import org.onap.sdnc.config.generator.reader.ReaderNode;
35 import org.onap.sdnc.config.generator.writer.FileWriterNode;
36 import org.osgi.framework.BundleActivator;
37 import org.osgi.framework.BundleContext;
38 import org.osgi.framework.ServiceRegistration;
39
40 public class ConfigGeneratorActivator implements BundleActivator {
41
42     private static final String STR_REGISTERING_SERVICE = "Registering service ";
43     private static final String STR_REGISTERING_SERVICE_SUCCESS = "Registering service successful for ";
44     private List<ServiceRegistration> registrations = new LinkedList<>();
45
46     private static final EELFLogger log =
47         EELFManager.getInstance().getLogger(ConfigGeneratorActivator.class);
48
49     @Override
50     public void start(BundleContext ctx) throws Exception {
51
52         ConvertNode convertNode = new ConvertNode();
53         log.info(STR_REGISTERING_SERVICE + convertNode.getClass().getName());
54         registrations.add(ctx.registerService(convertNode.getClass().getName(), convertNode, null));
55         log.info(STR_REGISTERING_SERVICE_SUCCESS + convertNode.getClass().getName());
56
57         MergeNode mergeNode = new MergeNode();
58         log.info(STR_REGISTERING_SERVICE + mergeNode.getClass().getName());
59         registrations.add(ctx.registerService(mergeNode.getClass().getName(), mergeNode, null));
60         log.info(STR_REGISTERING_SERVICE_SUCCESS + mergeNode.getClass().getName());
61
62         PatternNode patternNode = new PatternNode();
63         log.info(STR_REGISTERING_SERVICE + patternNode.getClass().getName());
64         registrations.add(ctx.registerService(patternNode.getClass().getName(), patternNode, null));
65         log.info(STR_REGISTERING_SERVICE_SUCCESS + patternNode.getClass().getName());
66
67         ReaderNode readerNode = new ReaderNode();
68         log.info(STR_REGISTERING_SERVICE + readerNode.getClass().getName());
69         registrations.add(ctx.registerService(readerNode.getClass().getName(), readerNode, null));
70         log.info(STR_REGISTERING_SERVICE_SUCCESS + readerNode.getClass().getName());
71
72         FileWriterNode writerNode = new FileWriterNode();
73         log.info(STR_REGISTERING_SERVICE + writerNode.getClass().getName());
74         registrations.add(ctx.registerService(writerNode.getClass().getName(), writerNode, null));
75         log.info(STR_REGISTERING_SERVICE_SUCCESS + writerNode.getClass().getName());
76
77     }
78
79     @Override
80     public void stop(BundleContext arg0) throws Exception {
81         for (ServiceRegistration registration : registrations) {
82             registration.unregister();
83         }
84     }
85 }