2015-01-15 21:35:35 +00:00
|
|
|
package org.thoughtcrime.securesms.util;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.DeserializationFeature;
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.InputStreamReader;
|
2016-10-17 02:05:07 +00:00
|
|
|
import java.io.Reader;
|
2015-01-15 21:35:35 +00:00
|
|
|
|
|
|
|
public class JsonUtils {
|
|
|
|
|
|
|
|
private static final ObjectMapper objectMapper = new ObjectMapper();
|
|
|
|
|
|
|
|
static {
|
|
|
|
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
|
|
|
|
}
|
|
|
|
|
2015-10-02 18:42:24 +00:00
|
|
|
public static <T> T fromJson(byte[] serialized, Class<T> clazz) throws IOException {
|
|
|
|
return fromJson(new String(serialized), clazz);
|
|
|
|
}
|
|
|
|
|
2015-01-15 21:35:35 +00:00
|
|
|
public static <T> T fromJson(String serialized, Class<T> clazz) throws IOException {
|
|
|
|
return objectMapper.readValue(serialized, clazz);
|
|
|
|
}
|
|
|
|
|
2016-10-17 02:05:07 +00:00
|
|
|
public static <T> T fromJson(InputStream serialized, Class<T> clazz) throws IOException {
|
|
|
|
return objectMapper.readValue(serialized, clazz);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static <T> T fromJson(Reader serialized, Class<T> clazz) throws IOException {
|
2015-01-15 21:35:35 +00:00
|
|
|
return objectMapper.readValue(serialized, clazz);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String toJson(Object object) throws IOException {
|
|
|
|
return objectMapper.writeValueAsString(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ObjectMapper getMapper() {
|
|
|
|
return objectMapper;
|
|
|
|
}
|
|
|
|
}
|