Merge the matrix-java-sdk due to it no longer maintained. Remove thirdparty repositories.
This commit is contained in:
193
src/main/java/io/kamax/matrix/json/GsonUtil.java
Normal file
193
src/main/java/io/kamax/matrix/json/GsonUtil.java
Normal file
@@ -0,0 +1,193 @@
|
||||
/*
|
||||
* matrix-java-sdk - Matrix Client SDK for Java
|
||||
* Copyright (C) 2018 Kamax Sarl
|
||||
*
|
||||
* https://www.kamax.io/
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package io.kamax.matrix.json;
|
||||
|
||||
import com.google.gson.*;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.function.Consumer;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public class GsonUtil {
|
||||
|
||||
private static Gson instance = build();
|
||||
private static Gson instancePretty = buildPretty();
|
||||
|
||||
private static GsonBuilder buildImpl() {
|
||||
return new GsonBuilder().setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES)
|
||||
.disableHtmlEscaping();
|
||||
}
|
||||
|
||||
public static Gson buildPretty() {
|
||||
return buildImpl().setPrettyPrinting().create();
|
||||
}
|
||||
|
||||
public static Gson build() {
|
||||
return buildImpl().create();
|
||||
}
|
||||
|
||||
public static JsonArray asArray(List<JsonElement> elements) {
|
||||
JsonArray a = new JsonArray();
|
||||
elements.forEach(a::add);
|
||||
return a;
|
||||
}
|
||||
|
||||
public static JsonArray asArrayObj(List<? extends Object> elements) {
|
||||
return asArray(elements.stream().map(e -> get().toJsonTree(e)).collect(Collectors.toList()));
|
||||
}
|
||||
|
||||
public static JsonArray asArray(String... elements) {
|
||||
return asArray(
|
||||
Arrays.stream(elements).map(JsonPrimitive::new).collect(Collectors.toList()));
|
||||
}
|
||||
|
||||
public static JsonArray asArray(Collection<String> elements) {
|
||||
JsonArray a = new JsonArray();
|
||||
elements.forEach(a::add);
|
||||
return a;
|
||||
}
|
||||
|
||||
public static <T> List<T> asList(JsonArray a, Class<T> c) {
|
||||
List<T> l = new ArrayList<>();
|
||||
for (JsonElement v : a) {
|
||||
l.add(GsonUtil.get().fromJson(v, c));
|
||||
}
|
||||
return l;
|
||||
}
|
||||
|
||||
public static <T> List<T> asList(JsonObject obj, String member, Class<T> c) {
|
||||
return asList(getArray(obj, member), c);
|
||||
}
|
||||
|
||||
public static JsonObject makeObj(Object o) {
|
||||
return instance.toJsonTree(o).getAsJsonObject();
|
||||
}
|
||||
|
||||
public static JsonObject makeObj(String key, Object value) {
|
||||
return makeObj(key, instance.toJsonTree(value));
|
||||
}
|
||||
|
||||
public static JsonObject makeObj(String key, JsonElement el) {
|
||||
JsonObject obj = new JsonObject();
|
||||
obj.add(key, el);
|
||||
return obj;
|
||||
}
|
||||
|
||||
public static JsonObject makeObj(Consumer<JsonObject> consumer) {
|
||||
JsonObject obj = new JsonObject();
|
||||
consumer.accept(obj);
|
||||
return obj;
|
||||
}
|
||||
|
||||
public static Gson get() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
public static Gson getPretty() {
|
||||
return instancePretty;
|
||||
}
|
||||
|
||||
public static String getPrettyForLog(Object o) {
|
||||
return System.lineSeparator() + getPretty().toJson(o);
|
||||
}
|
||||
|
||||
public static JsonElement parse(String s) {
|
||||
try {
|
||||
return new JsonParser().parse(s);
|
||||
} catch (JsonParseException e) {
|
||||
throw new InvalidJsonException(e);
|
||||
}
|
||||
}
|
||||
|
||||
public static JsonObject parseObj(String s) {
|
||||
try {
|
||||
return parse(s).getAsJsonObject();
|
||||
} catch (IllegalStateException e) {
|
||||
throw new InvalidJsonException("Not an object");
|
||||
}
|
||||
}
|
||||
|
||||
public static JsonArray getArray(JsonObject obj, String member) {
|
||||
return findArray(obj, member).orElseThrow(() -> new InvalidJsonException("Not an array"));
|
||||
}
|
||||
|
||||
public static JsonObject getObj(JsonObject obj, String member) {
|
||||
return findObj(obj, member).orElseThrow(() -> new InvalidJsonException("No object for member " + member));
|
||||
}
|
||||
|
||||
public static Optional<String> findString(JsonObject o, String key) {
|
||||
return findPrimitive(o, key).map(JsonPrimitive::getAsString);
|
||||
}
|
||||
|
||||
public static String getStringOrNull(JsonObject o, String key) {
|
||||
JsonElement el = o.get(key);
|
||||
if (el != null && el.isJsonPrimitive()) {
|
||||
return el.getAsString();
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public static String getStringOrThrow(JsonObject obj, String member) {
|
||||
if (!obj.has(member)) {
|
||||
throw new InvalidJsonException(member + " key is missing");
|
||||
}
|
||||
|
||||
return obj.get(member).getAsString();
|
||||
}
|
||||
|
||||
public static Optional<JsonElement> findElement(JsonObject o, String key) {
|
||||
return Optional.ofNullable(o.get(key));
|
||||
}
|
||||
|
||||
public static Optional<JsonPrimitive> findPrimitive(JsonObject o, String key) {
|
||||
return findElement(o, key).map(el -> el.isJsonPrimitive() ? el.getAsJsonPrimitive() : null);
|
||||
}
|
||||
|
||||
public static JsonPrimitive getPrimitive(JsonObject o, String key) {
|
||||
return findPrimitive(o, key).orElseThrow(() -> new InvalidJsonException("No primitive value for key " + key));
|
||||
}
|
||||
|
||||
public static Optional<Long> findLong(JsonObject o, String key) {
|
||||
return findPrimitive(o, key).map(JsonPrimitive::getAsLong);
|
||||
}
|
||||
|
||||
public static long getLong(JsonObject o, String key) {
|
||||
return findLong(o, key).orElseThrow(() -> new InvalidJsonException("No numeric value for key " + key));
|
||||
}
|
||||
|
||||
public static Optional<JsonObject> findObj(JsonObject o, String key) {
|
||||
if (!o.has(key)) {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
return Optional.ofNullable(o.getAsJsonObject(key));
|
||||
}
|
||||
|
||||
public static Optional<JsonArray> findArray(JsonObject o, String key) {
|
||||
return findElement(o, key).filter(JsonElement::isJsonArray).map(JsonElement::getAsJsonArray);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user