JSONUtils.java 9.1 KB
Newer Older
L
ligang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
17

Q
qiaozhanwei 已提交
18
package org.apache.dolphinscheduler.common.utils;
L
ligang 已提交
19

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
import static com.fasterxml.jackson.databind.DeserializationFeature.ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT;
import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES;
import static com.fasterxml.jackson.databind.DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL;
import static com.fasterxml.jackson.databind.MapperFeature.REQUIRE_SETTERS_FOR_GETTERS;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TimeZone;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

L
ligang 已提交
35 36
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
37
import com.fasterxml.jackson.core.type.TypeReference;
38 39 40 41 42 43 44 45
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.databind.SerializerProvider;
46 47
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
48
import com.fasterxml.jackson.databind.node.TextNode;
S
simon824 已提交
49
import com.fasterxml.jackson.databind.type.CollectionType;
L
ligang 已提交
50 51 52 53 54 55

/**
 * json utils
 */
public class JSONUtils {

56 57 58 59 60
    private static final Logger logger = LoggerFactory.getLogger(JSONUtils.class);

    /**
     * can use static singleton, inject: just make sure to reuse!
     */
61 62 63 64
    private static final ObjectMapper objectMapper = new ObjectMapper()
            .configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
            .configure(ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT, true)
            .configure(READ_UNKNOWN_ENUM_VALUES_AS_NULL, true)
Z
zshit 已提交
65
            .configure(REQUIRE_SETTERS_FOR_GETTERS, true)
66
            .setTimeZone(TimeZone.getDefault());
67 68

    private JSONUtils() {
69
        throw new UnsupportedOperationException("Construct JSONUtils");
L
ligang 已提交
70 71
    }

张世鸣 已提交
72 73 74 75 76 77 78 79 80 81 82 83
    public static ArrayNode createArrayNode() {
        return objectMapper.createArrayNode();
    }

    public static ObjectNode createObjectNode() {
        return objectMapper.createObjectNode();
    }

    public static JsonNode toJsonNode(Object obj) {
        return objectMapper.valueToTree(obj);
    }

84 85 86 87
    /**
     * json representation of object
     *
     * @param object object
张世鸣 已提交
88
     * @param feature feature
89 90
     * @return object to json string
     */
张世鸣 已提交
91
    public static String toJsonString(Object object, SerializationFeature feature) {
92
        try {
张世鸣 已提交
93 94
            ObjectWriter writer = objectMapper.writer(feature);
            return writer.writeValueAsString(object);
95 96 97 98 99
        } catch (Exception e) {
            logger.error("object to json exception!", e);
        }

        return null;
L
ligang 已提交
100
    }
101 102 103 104 105 106 107 108 109

    /**
     * This method deserializes the specified Json into an object of the specified class. It is not
     * suitable to use if the specified class is a generic type since it will not have the generic
     * type information because of the Type Erasure feature of Java. Therefore, this method should not
     * be used if the desired type is a generic type. Note that this method works fine if the any of
     * the fields of the specified object are generics, just the object itself should not be a
     * generic type.
     *
110
     * @param json the string from which the object is to be deserialized
111
     * @param clazz the class of T
112
     * @param <T> T
113 114 115 116 117 118 119 120 121 122 123 124 125 126
     * @return an object of type T from the string
     * classOfT
     */
    public static <T> T parseObject(String json, Class<T> clazz) {
        if (StringUtils.isEmpty(json)) {
            return null;
        }

        try {
            return objectMapper.readValue(json, clazz);
        } catch (Exception e) {
            logger.error("parse object exception!", e);
        }
        return null;
L
ligang 已提交
127
    }
128 129 130 131

    /**
     * json to list
     *
132
     * @param json json string
133
     * @param clazz class
134
     * @param <T> T
135 136 137 138
     * @return list
     */
    public static <T> List<T> toList(String json, Class<T> clazz) {
        if (StringUtils.isEmpty(json)) {
139
            return Collections.emptyList();
140
        }
S
simon824 已提交
141

142
        try {
S
simon824 已提交
143 144 145

            CollectionType listType = objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, clazz);
            return objectMapper.readValue(json, listType);
146
        } catch (Exception e) {
S
simon824 已提交
147
            logger.error("parse list exception!", e);
148 149
        }

150
        return Collections.emptyList();
L
ligang 已提交
151 152
    }

153 154 155 156 157 158 159
    /**
     * check json object valid
     *
     * @param json json
     * @return true if valid
     */
    public static boolean checkJsonValid(String json) {
L
ligang 已提交
160

161 162 163
        if (StringUtils.isEmpty(json)) {
            return false;
        }
L
ligang 已提交
164

165 166 167 168 169 170
        try {
            objectMapper.readTree(json);
            return true;
        } catch (IOException e) {
            logger.error("check json object valid exception!", e);
        }
L
ligang 已提交
171

172
        return false;
L
ligang 已提交
173 174
    }

175 176 177 178 179
    /**
     * Method for finding a JSON Object field with specified name in this
     * node or its child nodes, and returning value it has.
     * If no matching field is found in this node or its descendants, returns null.
     *
180
     * @param jsonNode json node
181 182 183 184 185
     * @param fieldName Name of field to look for
     * @return Value of first matching node found, if any; null if none
     */
    public static String findValue(JsonNode jsonNode, String fieldName) {
        JsonNode node = jsonNode.findValue(fieldName);
L
ligang 已提交
186

187 188 189
        if (node == null) {
            return null;
        }
L
ligang 已提交
190

191
        return node.toString();
L
ligang 已提交
192 193
    }

194 195 196 197 198 199 200 201 202 203
    /**
     * json to map
     * <p>
     * {@link #toMap(String, Class, Class)}
     *
     * @param json json
     * @return json to map
     */
    public static Map<String, String> toMap(String json) {
        if (StringUtils.isEmpty(json)) {
S
simon824 已提交
204
            return null;
205 206 207
        }

        try {
208 209
            return objectMapper.readValue(json, new TypeReference<Map<String, String>>() {
            });
210 211 212 213
        } catch (Exception e) {
            logger.error("json to map exception!", e);
        }

S
simon824 已提交
214
        return null;
L
ligang 已提交
215 216
    }

217 218 219
    /**
     * json to map
     *
220
     * @param json json
221 222
     * @param classK classK
     * @param classV classV
223 224
     * @param <K> K
     * @param <V> V
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
     * @return to map
     */
    public static <K, V> Map<K, V> toMap(String json, Class<K> classK, Class<V> classV) {
        if (StringUtils.isEmpty(json)) {
            return null;
        }

        try {
            return objectMapper.readValue(json, new TypeReference<Map<K, V>>() {
            });
        } catch (Exception e) {
            logger.error("json to map exception!", e);
        }

        return null;
L
ligang 已提交
240 241
    }

242 243 244 245 246 247 248 249 250 251 252 253
    /**
     * object to json string
     *
     * @param object object
     * @return json string
     */
    public static String toJsonString(Object object) {
        try {
            return objectMapper.writeValueAsString(object);
        } catch (Exception e) {
            throw new RuntimeException("Object json deserialization exception.", e);
        }
L
ligang 已提交
254 255
    }

256 257 258 259 260 261
    public static ObjectNode parseObject(String text) {
        try {
            return (ObjectNode) objectMapper.readTree(text);
        } catch (Exception e) {
            throw new RuntimeException("String json deserialization exception.", e);
        }
262 263
    }

264 265 266 267 268 269
    public static ArrayNode parseArray(String text) {
        try {
            return (ArrayNode) objectMapper.readTree(text);
        } catch (Exception e) {
            throw new RuntimeException("Json deserialization exception.", e);
        }
270 271
    }

272 273 274 275
    /**
     * json serializer
     */
    public static class JsonDataSerializer extends JsonSerializer<String> {
L
ligang 已提交
276

277 278 279 280
        @Override
        public void serialize(String value, JsonGenerator gen, SerializerProvider provider) throws IOException {
            gen.writeRawValue(value);
        }
L
ligang 已提交
281 282 283

    }

284 285 286 287
    /**
     * json data deserializer
     */
    public static class JsonDataDeserializer extends JsonDeserializer<String> {
L
ligang 已提交
288

289 290 291
        @Override
        public String deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
            JsonNode node = p.getCodec().readTree(p);
292 293 294 295 296
            if (node instanceof TextNode) {
                return node.asText();
            } else {
                return node.toString();
            }
297
        }
L
ligang 已提交
298 299 300

    }
}