com.thoughtworks.go.util.json.JsonHelper.java Source code

Java tutorial

Introduction

Here is the source code for com.thoughtworks.go.util.json.JsonHelper.java

Source

/*
 * Copyright 2019 ThoughtWorks, Inc.
 *
 * 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 com.thoughtworks.go.util.json;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import java.util.Map;

public class JsonHelper {
    public static void addDeveloperErrorMessage(Map jsonMap, Exception e) {
        addFriendlyErrorMessage(jsonMap, e.getMessage() + ": " + e.getCause() + " at " + e.getStackTrace()[0]);
    }

    public static void addFriendlyErrorMessage(Map jsonMap, String e) {
        jsonMap.put("error", e);
    }

    public static String toJsonString(Object object) {
        Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
        return gson.toJson(object);
    }

    public static <T> T fromJson(final String jsonString, final Class<T> clazz) {
        return new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create().fromJson(jsonString, clazz);
    }

    public static <T> T safeFromJson(final String jsonString, final Class<T> clazz) {
        GsonBuilder builder = new GsonBuilder();
        Gson gson = builder.excludeFieldsWithoutExposeAnnotation().create();
        try {
            return gson.fromJson(jsonString, clazz);
        } catch (Exception e) {
            return null;
        }
    }
}