aboutsummaryrefslogtreecommitdiffstats
path: root/ajsc-aai/src/main/java/org/openecomp/aai/ajsc_aai/filemonitor/ServicePropertiesMap.java
blob: 9bfcad0b754b14a9a7dbef3045be8bdc086110a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*-
 * ============LICENSE_START=======================================================
 * org.openecomp.aai
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.aai.ajsc_aai.filemonitor;

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.File;
import java.io.FileInputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ServicePropertiesMap {

    private static HashMap<String, HashMap<String, String>> mapOfMaps = new HashMap<>();
    private static final Logger logger = LoggerFactory.getLogger(ServicePropertiesMap.class);

    /**
     * Refresh.
     *
     * @param file the file
     * @throws Exception the exception
     */
    public static void refresh(File file) throws Exception {
        try {
            logger.info(String.format("Loading properties - %s", file != null ? file.getName() : ""));

            //Store .json & .properties files into map of maps
            if (file != null) {
                String filePath = file.getPath();

                if (filePath.lastIndexOf(".json") > 0) {

                    ObjectMapper om = new ObjectMapper();
                    TypeReference<HashMap<String, String>> typeRef = new TypeReference<HashMap<String, String>>() {
                    };
                    HashMap<String, String> propMap = om.readValue(file, typeRef);
                    HashMap<String, String> lcasePropMap = new HashMap<>();
                    for (HashMap.Entry<String, String> entry : propMap.entrySet()) {
                        String lcaseKey = ifNullThenEmpty(entry.getKey());
                        lcasePropMap.put(lcaseKey, entry.getValue());
                    }

                    mapOfMaps.put(file.getName(), lcasePropMap);
                } else if (filePath.lastIndexOf(".properties") > 0) {
                    Properties prop = new Properties();
                    FileInputStream fis = new FileInputStream(file);
                    prop.load(fis);

                    @SuppressWarnings("unchecked")
                    HashMap<String, String> propMap = new HashMap<String, String>((Map) prop);

                    mapOfMaps.put(file.getName(), propMap);
                }

                logger.info("File - " + file.getName()
                    + " is loaded into the map and the corresponding system properties have been refreshed");
            } else {
                logger.error("File  cannot be loaded into the map ");
            }
        } catch (Exception e) {
            logger.error("File " + (file != null ? file.getName() : "") + " cannot be loaded into the map ", e);
            throw new Exception("Error reading map file " + (file != null ? file.getName() : ""), e);
        }
    }

    /**
     * Gets the property.
     *
     * @param fileName the file name
     * @param propertyKey the property key
     * @return the property
     */
    public static String getProperty(String fileName, String propertyKey) {
        HashMap<String, String> propMap = mapOfMaps.get(fileName);
        return propMap != null ? propMap.get(ifNullThenEmpty(propertyKey)) : "";
    }

    /**
     * Gets the properties.
     *
     * @param fileName the file name
     * @return the properties
     */
    public static HashMap<String, String> getProperties(String fileName) {
        return mapOfMaps.get(fileName);
    }

    /**
     * If null then empty.
     *
     * @param key the key
     * @return the string
     */
    private static String ifNullThenEmpty(String key) {
        return key == null ? "" : key;
    }
}