mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-16 08:56:04 +01:00
130 lines
4.8 KiB
Java
130 lines
4.8 KiB
Java
package emu.grasscutter.utils;
|
|
|
|
import com.google.gson.Gson;
|
|
import com.google.gson.GsonBuilder;
|
|
import com.google.gson.JsonElement;
|
|
import com.google.gson.JsonSyntaxException;
|
|
import com.google.gson.reflect.TypeToken;
|
|
import emu.grasscutter.data.common.DynamicFloat;
|
|
import emu.grasscutter.utils.JsonAdapters.DynamicFloatAdapter;
|
|
import emu.grasscutter.utils.JsonAdapters.EnumTypeAdapterFactory;
|
|
import emu.grasscutter.utils.JsonAdapters.IntListAdapter;
|
|
import emu.grasscutter.utils.JsonAdapters.PositionAdapter;
|
|
import it.unimi.dsi.fastutil.ints.IntList;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStreamReader;
|
|
import java.io.Reader;
|
|
import java.lang.reflect.Type;
|
|
import java.nio.charset.StandardCharsets;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.Path;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public final class JsonUtils {
|
|
static final Gson gson =
|
|
new GsonBuilder()
|
|
.setPrettyPrinting()
|
|
.registerTypeAdapter(DynamicFloat.class, new DynamicFloatAdapter())
|
|
.registerTypeAdapter(IntList.class, new IntListAdapter())
|
|
.registerTypeAdapter(Position.class, new PositionAdapter())
|
|
.registerTypeAdapterFactory(new EnumTypeAdapterFactory())
|
|
.create();
|
|
|
|
/*
|
|
* Encode an object to a JSON string
|
|
*/
|
|
public static String encode(Object object) {
|
|
return gson.toJson(object);
|
|
}
|
|
|
|
public static <T> T decode(JsonElement jsonElement, Class<T> classType)
|
|
throws JsonSyntaxException {
|
|
return gson.fromJson(jsonElement, classType);
|
|
}
|
|
|
|
public static <T> T loadToClass(Reader fileReader, Class<T> classType) throws IOException {
|
|
return gson.fromJson(fileReader, classType);
|
|
}
|
|
|
|
@Deprecated(forRemoval = true)
|
|
public static <T> T loadToClass(String filename, Class<T> classType) throws IOException {
|
|
try (InputStreamReader fileReader =
|
|
new InputStreamReader(
|
|
new FileInputStream(Utils.toFilePath(filename)), StandardCharsets.UTF_8)) {
|
|
return loadToClass(fileReader, classType);
|
|
}
|
|
}
|
|
|
|
public static <T> T loadToClass(Path filename, Class<T> classType) throws IOException {
|
|
try (var fileReader = Files.newBufferedReader(filename, StandardCharsets.UTF_8)) {
|
|
return loadToClass(fileReader, classType);
|
|
}
|
|
}
|
|
|
|
public static <T> List<T> loadToList(Reader fileReader, Class<T> classType) throws IOException {
|
|
return gson.fromJson(fileReader, TypeToken.getParameterized(List.class, classType).getType());
|
|
}
|
|
|
|
@Deprecated(forRemoval = true)
|
|
public static <T> List<T> loadToList(String filename, Class<T> classType) throws IOException {
|
|
try (InputStreamReader fileReader =
|
|
new InputStreamReader(
|
|
new FileInputStream(Utils.toFilePath(filename)), StandardCharsets.UTF_8)) {
|
|
return loadToList(fileReader, classType);
|
|
}
|
|
}
|
|
|
|
public static <T> List<T> loadToList(Path filename, Class<T> classType) throws IOException {
|
|
try (var fileReader = Files.newBufferedReader(filename, StandardCharsets.UTF_8)) {
|
|
return loadToList(fileReader, classType);
|
|
}
|
|
}
|
|
|
|
public static <T1, T2> Map<T1, T2> loadToMap(
|
|
Reader fileReader, Class<T1> keyType, Class<T2> valueType) throws IOException {
|
|
return gson.fromJson(
|
|
fileReader, TypeToken.getParameterized(Map.class, keyType, valueType).getType());
|
|
}
|
|
|
|
@Deprecated(forRemoval = true)
|
|
public static <T1, T2> Map<T1, T2> loadToMap(
|
|
String filename, Class<T1> keyType, Class<T2> valueType) throws IOException {
|
|
try (InputStreamReader fileReader =
|
|
new InputStreamReader(
|
|
new FileInputStream(Utils.toFilePath(filename)), StandardCharsets.UTF_8)) {
|
|
return loadToMap(fileReader, keyType, valueType);
|
|
}
|
|
}
|
|
|
|
public static <T1, T2> Map<T1, T2> loadToMap(
|
|
Path filename, Class<T1> keyType, Class<T2> valueType) throws IOException {
|
|
try (var fileReader = Files.newBufferedReader(filename, StandardCharsets.UTF_8)) {
|
|
return loadToMap(fileReader, keyType, valueType);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Safely JSON decodes a given string.
|
|
*
|
|
* @param jsonData The JSON-encoded data.
|
|
* @return JSON decoded data, or null if an exception occurred.
|
|
*/
|
|
public static <T> T decode(String jsonData, Class<T> classType) {
|
|
try {
|
|
return gson.fromJson(jsonData, classType);
|
|
} catch (Exception ignored) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static <T> T decode(String jsonData, Type type) {
|
|
try {
|
|
return gson.fromJson(jsonData, type);
|
|
} catch (Exception ignored) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|