1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
package dev.isxander.yacl.config;
import dev.isxander.yacl.impl.utils.YACLConstants;
import net.minecraft.nbt.*;
import java.awt.*;
import java.io.DataOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;
import java.util.List;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.UnaryOperator;
import java.util.stream.Stream;
/**
* Uses {@link net.minecraft.nbt} to serialize and deserialize to and from an NBT file.
* Data can be written as compressed GZIP or uncompressed NBT.
*
* You can optionally provide custom implementations for handling certain classes if the default
* handling fails with {@link NbtSerializer}
*
* @param <T> config data type
* @deprecated Using NBT for config is not very practical, implementation flawed, does not support upcoming lists.
*/
@Deprecated
@SuppressWarnings("unchecked")
public class NbtConfigInstance<T> extends ConfigInstance<T> {
private final Path path;
private final boolean compressed;
private final NbtSerializerHolder nbtSerializerHolder;
/**
* Constructs an instance with compression on
*
* @param configClass config data type class
* @param path file to write nbt to
*/
public NbtConfigInstance(Class<T> configClass, Path path) {
this(configClass, path, holder -> holder, true);
}
/**
* @param configClass config data type class
* @param path file to write nbt to
* @param serializerHolderBuilder allows you to add custom serializers
* @param compressed whether to compress the NBT
*/
public NbtConfigInstance(Class<T> configClass, Path path, UnaryOperator<NbtSerializerHolder> serializerHolderBuilder, boolean compressed) {
super(configClass);
this.path = path;
this.compressed = compressed;
this.nbtSerializerHolder = serializerHolderBuilder.apply(new NbtSerializerHolder());
}
@Override
public void save() {
YACLConstants.LOGGER.info("Saving {}...", getConfigClass().getSimpleName());
NbtCompound nbt;
try {
nbt = (NbtCompound) serializeObject(getConfig(), nbtSerializerHolder, field -> field.isAnnotationPresent(ConfigEntry.class));
} catch (IllegalAccessException e) {
YACLConstants.LOGGER.error("Failed to convert '{}' -> NBT", getConfigClass().getName(), e);
return;
}
try(FileOutputStream fos = new FileOutputStream(path.toFile())) {
if (Files.notExists(path))
Files.createFile(path);
if (compressed)
NbtIo.writeCompressed(nbt, fos);
else
NbtIo.write(nbt, new DataOutputStream(fos));
} catch (IOException e) {
YACLConstants.LOGGER.error("Failed to write NBT to '{}'", path, e);
}
}
@Override
public void load() {
if (Files.notExists(path)) {
save();
return;
}
YACLConstants.LOGGER.info("Loading {}...", getConfigClass().getSimpleName());
NbtCompound nbt;
try {
nbt = compressed ? NbtIo.readCompressed(path.toFile()) : NbtIo.read(path.toFile());
} catch (IOException e) {
YACLConstants.LOGGER.error("Failed to read NBT file '{}'", path, e);
return;
}
try {
setConfig(deserializeObject(nbt, getConfigClass(), nbtSerializerHolder, field -> field.isAnnotationPresent(ConfigEntry.class)));
} catch (InvocationTargetException | NoSuchMethodException | InstantiationException | IllegalAccessException e) {
YACLConstants.LOGGER.error("Failed to convert NBT -> '{}'", getConfigClass().getName(), e);
}
}
public Path getPath() {
return this.path;
}
public boolean isUsingCompression() {
return this.compressed;
}
private static NbtElement serializeObject(Object object, NbtSerializerHolder serializerHolder, Predicate<Field> topLevelPredicate) throws IllegalAccessException {
if (serializerHolder.hasSerializer(object.getClass())) {
return serializerHolder.serialize(object);
}
else if (object instanceof Object[] ol) {
NbtList nbtList = new NbtList();
for (Object obj : ol)
nbtList.add(serializeObject(obj, serializerHolder, field -> true));
return nbtList;
} else {
NbtCompound compound = new NbtCompound();
Field[] fields = object.getClass().getDeclaredFields();
for (Field field : fields) {
if (Modifier.isStatic(field.getModifiers()) || !topLevelPredicate.test(field))
continue;
System.out.println(field.getName());
field.setAccessible(true);
String key = toCamelCase(field.getName());
NbtElement value = serializeObject(field.get(object), serializerHolder, f -> true);
compound.put(key, value);
}
return compound;
}
}
private static <T> T deserializeObject(NbtElement element, Class<T> type, NbtSerializerHolder serializerHolder, Predicate<Field> topLevelPredicate) throws NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
if (serializerHolder.hasSerializer(type))
return serializerHolder.get(type).deserialize(element, type);
else if (type == Array.class) {
List<Object> list = new ArrayList<>();
Class<?> arrayType = Array.newInstance(type.getComponentType(), 0).getClass();
NbtList nbtList = (NbtList) element;
for (NbtElement nbtElement : nbtList) {
list.add(deserializeObject(nbtElement, arrayType, serializerHolder, field -> true));
}
return (T) list.toArray();
} else {
if (!(element instanceof NbtCompound compound))
throw new IllegalStateException("Cannot deserialize " + type.getName());
T object = type.getConstructor().newInstance();
Field[] fields = type.getDeclaredFields();
for (Field field : fields) {
if (Modifier.isStatic(field.getModifiers()) || !topLevelPredicate.test(field))
continue;
field.setAccessible(true);
String key = toCamelCase(field.getName());
if (!compound.contains(key))
continue;
field.set(object, deserializeObject(compound.get(key), field.getType(), serializerHolder, f -> true));
}
return object;
}
}
/* shamelessly stolen from gson */
private static String toCamelCase(String name) {
StringBuilder translation = new StringBuilder();
for (int i = 0, length = name.length(); i < length; i++) {
char character = name.charAt(i);
if (Character.isUpperCase(character) && translation.length() != 0) {
translation.append('_');
}
translation.append(character);
}
return translation.toString().toLowerCase(Locale.ENGLISH);
}
public static class NbtSerializerHolder {
private final Map<Class<?>, NbtSerializer<?>> serializerMap = new HashMap<>();
private NbtSerializerHolder() {
register(boolean.class, NbtSerializer.<Boolean, NbtByte>simple(b -> b ? NbtByte.ONE : NbtByte.ZERO, nbt -> nbt.byteValue() != 0));
register(Boolean.class, NbtSerializer.<Boolean, NbtByte>simple(b -> b ? NbtByte.ONE : NbtByte.ZERO, nbt -> nbt.byteValue() != 0));
register(int.class, NbtSerializer.simple(NbtInt::of, NbtInt::intValue));
register(Integer.class, NbtSerializer.simple(NbtInt::of, NbtInt::intValue));register(int[].class, NbtSerializer.simple(NbtIntArray::new, NbtIntArray::getIntArray));
register(float.class, NbtSerializer.simple(NbtFloat::of, NbtFloat::floatValue));
register(Float.class, NbtSerializer.simple(NbtFloat::of, NbtFloat::floatValue));
register(double.class, NbtSerializer.simple(NbtDouble::of, NbtDouble::doubleValue));
register(Double.class, NbtSerializer.simple(NbtDouble::of, NbtDouble::doubleValue));
register(short.class, NbtSerializer.simple(NbtShort::of, NbtShort::shortValue));
register(Short.class, NbtSerializer.simple(NbtShort::of, NbtShort::shortValue));
register(byte.class, NbtSerializer.simple(NbtByte::of, NbtByte::byteValue));
register(Byte.class, NbtSerializer.simple(NbtByte::of, NbtByte::byteValue));
register(byte[].class, NbtSerializer.simple(NbtByteArray::new, NbtByteArray::getByteArray));
register(long.class, NbtSerializer.simple(NbtLong::of, NbtLong::longValue));
register(Long.class, NbtSerializer.simple(NbtLong::of, NbtLong::longValue));
register(long[].class, NbtSerializer.simple(NbtLongArray::new, NbtLongArray::getLongArray));
register(String.class, NbtSerializer.simple(NbtString::of, NbtString::asString));
register(Enum.class, NbtSerializer.simple(e -> NbtString.of(e.name()), (nbt, type) -> Arrays.stream(type.getEnumConstants()).filter(e -> e.name().equals(nbt.asString())).findFirst().orElseThrow()));
register(Color.class, new ColorSerializer());
}
public <T> NbtSerializerHolder register(Class<T> clazz, NbtSerializer<T> serializer) {
serializerMap.put(clazz, serializer);
return this;
}
public <T> NbtSerializer<T> get(Class<T> clazz) {
return (NbtSerializer<T>) search(clazz).findFirst().orElseThrow().getValue();
}
public boolean hasSerializer(Class<?> clazz) {
return search(clazz).findAny().isPresent();
}
public NbtElement serialize(Object object) {
return ((NbtSerializer<Object>) get(object.getClass())).serialize(object);
}
private Stream<Map.Entry<Class<?>, NbtSerializer<?>>> search(Class<?> type) {
return serializerMap.entrySet().stream().filter(entry -> entry.getKey().isAssignableFrom(type));
}
}
public interface NbtSerializer<T> {
NbtElement serialize(T object);
T deserialize(NbtElement element, Class<T> type);
static <T, U extends NbtElement> NbtSerializer<T> simple(Function<T, U> serializer, Function<U, T> deserializer) {
return simple(serializer, (nbt, type) -> deserializer.apply(nbt));
}
static <T, U extends NbtElement> NbtSerializer<T> simple(Function<T, U> serializer, BiFunction<U, Class<T>, T> deserializer) {
return new NbtSerializer<>() {
@Override
public NbtElement serialize(T object) {
return serializer.apply(object);
}
@Override
public T deserialize(NbtElement element, Class<T> type) {
return deserializer.apply((U) element, type);
}
};
}
}
public static class ColorSerializer implements NbtSerializer<Color> {
@Override
public NbtElement serialize(Color object) {
return NbtInt.of(object.getRGB());
}
@Override
public Color deserialize(NbtElement element, Class<Color> type) {
return new Color(((NbtInt) element).intValue(), true);
}
}
}
|