package org.thoughtcrime.securesms.util; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; import org.json.JSONException; import org.json.JSONObject; import java.io.IOException; import java.io.InputStream; import java.io.Reader; public class JsonUtils { private static final ObjectMapper objectMapper = new ObjectMapper(); static { objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); objectMapper.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING); objectMapper.enable(DeserializationFeature.READ_ENUMS_USING_TO_STRING); } public static T fromJson(byte[] serialized, Class clazz) throws IOException { return fromJson(new String(serialized), clazz); } public static T fromJson(String serialized, Class clazz) throws IOException { return objectMapper.readValue(serialized, clazz); } public static T fromJson(InputStream serialized, Class clazz) throws IOException { return objectMapper.readValue(serialized, clazz); } public static T fromJson(Reader serialized, Class clazz) throws IOException { return objectMapper.readValue(serialized, clazz); } public static String toJson(Object object) throws IOException { return objectMapper.writeValueAsString(object); } public static ObjectMapper getMapper() { return objectMapper; } public static class SaneJSONObject { private final JSONObject delegate; public SaneJSONObject(JSONObject delegate) { this.delegate = delegate; } public String getString(String name) throws JSONException { if (delegate.isNull(name)) return null; else return delegate.getString(name); } public long getLong(String name) throws JSONException { return delegate.getLong(name); } public boolean isNull(String name) { return delegate.isNull(name); } public int getInt(String name) throws JSONException { return delegate.getInt(name); } } }