Update license header in appc-config files
[appc.git] / appc-config / appc-config-generator / provider / src / main / java / org / onap / sdnc / config / generator / tool / JSONTool.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 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  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.sdnc.config.generator.tool;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import java.util.ArrayList;
29 import java.util.HashMap;
30 import java.util.Iterator;
31 import java.util.List;
32 import java.util.Map;
33 import org.codehaus.jettison.json.JSONArray;
34 import org.codehaus.jettison.json.JSONException;
35 import org.codehaus.jettison.json.JSONObject;
36
37
38 public class JSONTool {
39
40     private static final EELFLogger log = EELFManager.getInstance().getLogger(JSONTool.class);
41
42     private JSONTool() {
43     }
44
45     public static Map<String, String> convertToProperties(String s) throws JSONException {
46         return convertToProperties(s, null);
47     }
48
49     public static Map<String, String> convertToProperties(String s, List<String> blockKeys)
50         throws JSONException {
51         JSONObject json = new JSONObject(s);
52         Map<String, String> mm = new HashMap<>();
53         Map<String, Object> wm = new HashMap<>();
54
55         Iterator<String> ii = json.keys();
56         while (ii.hasNext()) {
57             String key1 = ii.next();
58             wm.put(key1, json.get(key1));
59         }
60         while (!wm.isEmpty()) {
61             for (String key : new ArrayList<>(wm.keySet())) {
62                 Object o = wm.get(key);
63                 wm.remove(key);
64                 tryAddBlockKeys(blockKeys, mm, key, o);
65                 if (o instanceof Boolean || o instanceof Number || o instanceof String) {
66                     mm.put(key, o.toString());
67                     log.info("Added property: " + key + ": " + o.toString());
68                 } else if (o instanceof JSONObject) {
69                     fill(wm, key, (JSONObject) o);
70                 } else if (o instanceof JSONArray) {
71                     fill(mm, wm, key, (JSONArray) o);
72                 }
73             }
74         }
75         return mm;
76     }
77
78     private static void tryAddBlockKeys(List<String> blockKeys, Map<String, String> mm, String key, Object o) {
79         if (blockKeys != null && blockKeys.contains(key) && o != null) {
80             mm.put("block_" + key, o.toString());
81             log.info("Adding JSON Block Keys : " + key + "=" + o.toString());
82         }
83     }
84
85     private static void fill(Map<String, String> mm, Map<String, Object> wm, String key, JSONArray array)
86         throws JSONException {
87         mm.put("size_" + key, String.valueOf(array.length()));
88         log.info("Added property: " + key + "_length" + ": " + array.length());
89
90         for (int i = 0; i < array.length(); i++) {
91             wm.put(key + '[' + i + ']', array.get(i));
92         }
93     }
94
95     private static void fill(Map<String, Object> wm, String key, JSONObject object) throws JSONException {
96
97         Iterator<String> i = object.keys();
98         while (i.hasNext()) {
99             String key1 = i.next();
100             wm.put(key + "." + key1, object.get(key1));
101         }
102     }
103 }