Reformat code according to Java Code Guidelines
[appc.git] / appc-config / appc-config-adaptor / provider / src / main / java / org / onap / appc / ccadaptor / CCAActivator.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.ccadaptor;
26
27 import com.att.eelf.configuration.EELFLogger;
28 import com.att.eelf.configuration.EELFManager;
29 import java.io.File;
30 import java.io.FileInputStream;
31 import java.io.InputStream;
32 import java.util.Properties;
33 import org.onap.ccsdk.sli.core.sli.ConfigurationException;
34 import org.osgi.framework.BundleActivator;
35 import org.osgi.framework.BundleContext;
36 import org.osgi.framework.ServiceRegistration;
37
38 public class CCAActivator implements BundleActivator {
39
40     private static final String CCA_PROP_FILE_VAR = "SDNC_CCA_PROPERTIES";
41     private static final String SDNC_CONFIG_DIR_VAR = "SDNC_CONFIG_DIR";
42     //private static final Logger log = LoggerFactory.getLogger(CCAActivator.class);
43     private static final EELFLogger log = EELFManager.getInstance().getLogger(CCAActivator.class);
44     @SuppressWarnings("rawtypes")
45     private ServiceRegistration registration = null;
46
47     @Override
48     public void start(BundleContext ctx) throws Exception {
49         // Read properties
50         Properties props = new Properties();
51
52         // Read properties from appc-config-adaptor.properties
53         String propFileName = System.getenv(CCA_PROP_FILE_VAR);
54         if (propFileName == null) {
55             String propDir = System.getenv(SDNC_CONFIG_DIR_VAR);
56             if (propDir == null) {
57                 throw new ConfigurationException(
58                     "Cannot find config file - " + CCA_PROP_FILE_VAR + " and " + SDNC_CONFIG_DIR_VAR + " unset");
59             }
60
61             propFileName = propDir + "/appc-config-adaptor.properties";
62             log.warn("Environment variable " + CCA_PROP_FILE_VAR + " unset - defaulting to " + propFileName);
63         }
64
65         File propFile = new File(propFileName);
66         if (!propFile.exists()) {
67             throw new ConfigurationException("Missing configuration properties file: " + propFile);
68         }
69
70         try (InputStream in = new FileInputStream(propFile)) {
71             props.load(in);
72             log.info("Loaded properties: ");
73         } catch (Exception e) {
74             throw new ConfigurationException("Could not load properties file " + propFileName, e);
75         }
76
77         // Advertise adaptor
78         ConfigComponentAdaptor adaptor = new ConfigComponentAdaptor(props);
79         if (registration == null) {
80             log.info("Registering service " + ConfigComponentAdaptor.class.getName());
81             registration = ctx.registerService(ConfigComponentAdaptor.class.getName(), adaptor, null);
82         }
83
84     }
85
86     @Override
87     public void stop(BundleContext ctx) throws Exception {
88         if (registration != null) {
89             registration.unregister();
90             registration = null;
91         }
92     }
93 }