aboutsummaryrefslogtreecommitdiffstats
path: root/rest-client/src/main/java/org/openo/baseservice/roa/util/clientsdk/JsonUtil.java
blob: 2234e1911010cbc50b6c967e4390682140d32e61 (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
/*
 * Copyright (c) 2016, Huawei Technologies Co., Ltd.
 *
 * 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.
 */
package org.openo.baseservice.roa.util.clientsdk;

import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.type.TypeReference;

import net.sf.json.JSON;

import java.io.IOException;

/**
 * JSON parse utilities.
 * <br/>
 * <p>
 * </p>
 * 
 * @author
 * @version SDNO 0.5 28-May-2016
 */
public final class JsonUtil {

    private static final ObjectMapper MAPPER = new ObjectMapper();

    static {
        MAPPER.setDeserializationConfig(MAPPER.getDeserializationConfig()
                .without(org.codehaus.jackson.map.DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES));
    }

    private JsonUtil() {
    }

    /**
     * Parse JSON formated string.<br/>
     * 
     * @param jsonstr: JSON formated string.
     * @param type: result type.
     * @return parsed object.
     * @throws IOException incase error.
     * @since SDNO 0.5
     */
    public static <T> T unMarshal(final String jsonstr, final Class<T> type) throws IOException {
        return MAPPER.readValue(jsonstr, type);
    }

    /**
     * Parse JSON formatted string (for a generic target type).
     * <br/>
     * 
     * @param jsonstr request data.
     * @param type target type.
     * @return result object.
     * @throws IOException incase error.
     * @since SDNO 0.5
     */
    public static <T> T unMarshal(final String jsonstr, final TypeReference<T> type) throws IOException {
        return MAPPER.readValue(jsonstr, type);
    }

    /**
     * Convert object to JSON format string.
     * <br/>
     * 
     * @param srcObj source object.
     * @return JSON format string.
     * @throws IOException incase of error.
     * @since SDNO 0.5
     */
    public static String marshal(final Object srcObj) throws IOException {
        if(srcObj instanceof JSON) {
            return srcObj.toString();
        }
        return MAPPER.writeValueAsString(srcObj);
    }

    /**
     * Get parsing mapper
     * <br/>
     * 
     * @return parsing mapper
     * @since SDNO 0.5
     */
    public static ObjectMapper getMapper() {
        return MAPPER;
    }
}