update the testcases after the kafka 11 changes
[dmaap/messagerouter/msgrtr.git] / src / main / java / com / att / dmf / mr / utils / PropertyReader.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
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  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package com.att.dmf.mr.utils;
23
24 import java.util.Map;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import com.att.nsa.drumlin.till.nv.impl.nvReadableStack;
29
30 /**
31  * 
32  * @author nilesh.labde
33  *
34  *
35  */
36 public class PropertyReader extends nvReadableStack {
37         /**
38          * 
39          * initializing logger
40          * 
41          */
42         //private static final Logger LOGGER = Logger.getLogger(PropertyReader.class);
43         private static final EELFLogger log = EELFManager.getInstance().getLogger(PropertyReader.class);
44 //      private static final String MSGRTR_PROPERTIES_FILE = "msgRtrApi.properties";
45
46         /**
47          * constructor initialization
48          * 
49          * @throws loadException
50          * 
51          */
52         public PropertyReader() throws loadException {
53         /*      Map<String, String> argMap = new HashMap<String, String>();
54                 final String config = getSetting(argMap, CambriaConstants.kConfig, MSGRTR_PROPERTIES_FILE);
55                 final URL settingStream = findStream(config, ConfigurationReader.class);
56                 push(new nvPropertiesFile(settingStream));
57                 push(new nvReadableTable(argMap));*/
58         }
59
60         /**
61          * 
62          * 
63          * @param argMap
64          * @param key
65          * @param defaultValue
66          * @return
67          * 
68          */
69         @SuppressWarnings("unused")
70         private static String getSetting(Map<String, String> argMap, final String key, final String defaultValue) {
71                 String val = (String) argMap.get(key);
72                 if (null == val) {
73                         return defaultValue;
74                 }
75                 return val;
76         }
77
78         /**
79          * 
80          * @param resourceName
81          * @param clazz
82          * @return
83          * @exception MalformedURLException
84          * 
85          */
86         /*public static URL findStream(final String resourceName, Class<?> clazz) {
87                 try {
88                         File file = new File(resourceName);
89
90                         if (file.isAbsolute()) {
91                                 return file.toURI().toURL();
92                         }
93
94                         String filesRoot = System.getProperty("RRWT_FILES", null);
95
96                         if (null != filesRoot) {
97
98                                 String fullPath = filesRoot + "/" + resourceName;
99
100                                 LOGGER.debug("Looking for [" + fullPath + "].");
101
102                                 file = new File(fullPath);
103                                 if (file.exists()) {
104                                         return file.toURI().toURL();
105                                 }
106                         }
107
108                         URL res = clazz.getClassLoader().getResource(resourceName);
109
110                         if (null != res) {
111                                 return res;
112                         }
113
114                         res = ClassLoader.getSystemResource(resourceName);
115
116                         if (null != res) {
117                                 return res;
118                         }
119                 } catch (MalformedURLException e) {
120                         LOGGER.error("Unexpected failure to convert a local filename into a URL: " + e.getMessage(), e);
121                 }
122                 return null;
123         }
124 */
125 }