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