Update license header in appc-dg-common files
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / main / java / org / onap / appc / dg / common / utils / JSONUtil.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.appc.dg.common.utils;
25
26 import com.fasterxml.jackson.databind.JsonNode;
27 import com.fasterxml.jackson.databind.ObjectMapper;
28
29 import java.io.IOException;
30 import java.io.Reader;
31 import java.io.UncheckedIOException;
32 import java.util.*;
33
34
35 public class JSONUtil {
36
37     private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
38
39     private JSONUtil() {}
40
41     public static <T> T fromJson(String json, Class<T> clazz) {
42
43         try {
44             return OBJECT_MAPPER.readValue(json, clazz);
45         } catch (IOException e) {
46             throw new UncheckedIOException(e);
47         }
48     }
49
50     public static <T> T fromJson(Reader reader, Class<T> clazz) {
51
52         try {
53             return OBJECT_MAPPER.readValue(reader, clazz);
54         } catch (IOException e) {
55             throw new UncheckedIOException(e);
56         }
57     }
58
59     public static String toJson(Object object) {
60
61         try {
62             return OBJECT_MAPPER.writeValueAsString(object);
63         } catch (IOException e) {
64             throw new UncheckedIOException(e);
65         }
66     }
67
68     public static Map<String, String> extractPlainValues(String json, String... names) {
69         if (null == names) {
70             return Collections.emptyMap();
71         }
72         Map<String, String> values = new HashMap<>();
73         try {
74             final JsonNode jsonNode = OBJECT_MAPPER.readTree(json);
75             for (String name : names) {
76                 values.put(name, jsonNode.path(name).asText());
77             }
78         } catch (IOException e) {
79             throw new UncheckedIOException(e);
80         }
81         return values;
82     }
83 }