JSONUtils.java 6.7 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.
 */
Q
qiaozhanwei 已提交
17
package org.apache.dolphinscheduler.common.utils;
L
ligang 已提交
18

19
import com.alibaba.fastjson.JSON;
L
ligang 已提交
20 21 22 23 24 25 26 27 28 29 30
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.*;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
B
baoliang 已提交
31
import java.util.*;
L
ligang 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

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

  private static final Logger logger = LoggerFactory.getLogger(JSONUtils.class);

  /**
   * can use static singleton, inject: just make sure to reuse!
   */
  private static final ObjectMapper objectMapper = new ObjectMapper();

  private JSONUtils() {
    //Feature that determines whether encountering of unknown properties, false means not analyzer unknown properties
    objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false).setTimeZone(TimeZone.getDefault());
  }

  /**
   * json representation of object
D
dailidong 已提交
52
   * @param object object
L
ligang 已提交
53 54 55 56
   * @return object to json string
   */
  public static String toJson(Object object) {
    try{
57
      return JSON.toJSONString(object,false);
L
ligang 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
    } catch (Exception e) {
      logger.error("object to json exception!",e);
    }

    return null;
  }


  /**
   *
   * 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.
   *
   * @param json the string from which the object is to be deserialized
   * @param clazz the class of T
D
dailidong 已提交
77
   * @param <T> T
L
ligang 已提交
78 79 80 81 82 83 84 85 86
   * @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 {
87
      return JSON.parseObject(json, clazz);
L
ligang 已提交
88 89 90 91 92 93 94 95 96 97
    } catch (Exception e) {
      logger.error("parse object exception!",e);
    }
    return null;
  }


  /**
   * json to list
   *
D
dailidong 已提交
98 99 100 101
   * @param json json string
   * @param clazz class
   * @param <T> T
   * @return list
L
ligang 已提交
102 103 104
   */
  public static <T> List<T> toList(String json, Class<T> clazz) {
    if (StringUtils.isEmpty(json)) {
B
baoliang 已提交
105
      return new ArrayList<>();
L
ligang 已提交
106 107 108 109 110 111 112
    }
    try {
      return JSONArray.parseArray(json, clazz);
    } catch (Exception e) {
      logger.error("JSONArray.parseArray exception!",e);
    }

B
baoliang 已提交
113
    return new ArrayList<>();
L
ligang 已提交
114 115 116 117 118 119 120
  }



  /**
   * check json object valid
   *
D
dailidong 已提交
121 122
   * @param json json
   * @return true if valid
L
ligang 已提交
123
   */
G
gabry.wu 已提交
124
  public static boolean checkJsonValid(String json) {
L
ligang 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

    if (StringUtils.isEmpty(json)) {
      return false;
    }

    try {
      objectMapper.readTree(json);
      return true;
    } catch (IOException e) {
      logger.error("check json object valid exception!",e);
    }

    return false;
  }


  /**
   * 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.
   *
D
dailidong 已提交
146
   * @param jsonNode json node
L
ligang 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
   * @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);

    if (node == null) {
      return null;
    }

    return node.toString();
  }


  /**
   * json to map
   *
   * {@link #toMap(String, Class, Class)}
   *
D
dailidong 已提交
167 168
   * @param json json
   * @return json to map
L
ligang 已提交
169 170 171 172 173 174 175
   */
  public static Map<String, String> toMap(String json) {
    if (StringUtils.isEmpty(json)) {
      return null;
    }

    try {
176
      return JSON.parseObject(json, new TypeReference<HashMap<String, String>>(){});
L
ligang 已提交
177 178 179 180 181 182 183 184 185 186 187
    } catch (Exception e) {
      logger.error("json to map exception!",e);
    }

    return null;
  }

  /**
   *
   * json to map
   *
D
dailidong 已提交
188 189 190 191 192 193
   * @param json json
   * @param classK classK
   * @param classV classV
   * @param <K> K
   * @param <V> V
   * @return to map
L
ligang 已提交
194 195 196 197 198 199 200
   */
  public static <K, V> Map<K, V> toMap(String json, Class<K> classK, Class<V> classV) {
    if (StringUtils.isEmpty(json)) {
      return null;
    }

    try {
201
      return JSON.parseObject(json, new TypeReference<HashMap<K, V>>() {});
L
ligang 已提交
202 203 204 205 206 207 208 209
    } catch (Exception e) {
      logger.error("json to map exception!",e);
    }

    return null;
  }

  /**
Q
qiaozhanwei 已提交
210
   * object to json string
D
dailidong 已提交
211
   * @param object object
L
ligang 已提交
212 213 214 215
   * @return json string
   */
  public static String toJsonString(Object object) {
    try{
216
      return JSON.toJSONString(object,false);
L
ligang 已提交
217
    } catch (Exception e) {
218
      throw new RuntimeException("Object json deserialization exception.", e);
L
ligang 已提交
219 220 221
    }
  }

222 223
  public static JSONObject parseObject(String text) {
    try{
224
      return JSON.parseObject(text);
225
    } catch (Exception e) {
226
      throw new RuntimeException("String json deserialization exception.", e);
227 228 229 230 231
    }
  }

  public static JSONArray parseArray(String text) {
    try{
232
      return JSON.parseArray(text);
233 234 235 236 237
    } catch (Exception e) {
      throw new RuntimeException("Json deserialization exception.", e);
    }
  }

L
ligang 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264


  /**
   * json serializer
   */
  public static class JsonDataSerializer extends JsonSerializer<String> {

    @Override
    public void serialize(String value, JsonGenerator gen, SerializerProvider provider) throws IOException {
      gen.writeRawValue(value);
    }

  }

  /**
   * json data deserializer
   */
  public static class JsonDataDeserializer extends JsonDeserializer<String> {

    @Override
    public String deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
      JsonNode node = p.getCodec().readTree(p);
      return node.toString();
    }

  }
}