![JAR search and dependency download from the Maven repository](/logo.png)
com.github.shynixn.blockball.lib.YamlSerializer Maven / Gradle / Ivy
Show all versions of blockball Show documentation
package com.github.shynixn.blockball.lib;
import org.bukkit.configuration.MemorySection;
import java.lang.annotation.*;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.util.*;
/**
* Copyright 2017 Shynixn
*
* Do not remove this header!
*
* Version 1.0
*
* MIT License
*
* Copyright (c) 2017
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
public final class YamlSerializer {
/**
* Initializes a new private instance
*/
private YamlSerializer() {
super();
}
/**
* Annotation for fields to get serialized and deSerialized
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface YamlSerialize {
String value();
int orderNumber() default 0;
}
/**
* Internal handler class
*/
private static class AnnotationWrapper {
final YamlSerialize annotation;
final Field field;
/**
* Initializes a new annotationWrapper
*
* @param annotation annotation
* @param field field
*/
AnnotationWrapper(YamlSerialize annotation, Field field) {
super();
this.annotation = annotation;
this.field = field;
}
}
/**
* Serializes the given object regardless if it's an object, array, collection or map
*
* @param object object
* @return serializedContent
* @throws IllegalAccessException exception
*/
public static Map serialize(Object object) throws IllegalAccessException {
if (object.getClass().isArray()) {
return serializeArray((Object[]) object);
} else if (Collection.class.isAssignableFrom(object.getClass())) {
return serializeCollection((Collection>) object);
} else if (Map.class.isAssignableFrom(object.getClass())) {
return serializeMap((Map, ?>) object);
} else {
return serializeObject(object);
}
}
/**
* Serializes the given map
*
* @param objects objects
* @return serializedContent
* @throws IllegalAccessException exception
*/
public static Map serializeMap(Map, ?> objects) throws IllegalAccessException {
final Map data = new LinkedHashMap<>();
for (final Object key : objects.keySet()) {
if (!isPrimitive(key.getClass()))
throw new IllegalArgumentException("Cannot map non simple Map.");
data.put(String.valueOf(key), serializeObject(objects.get(key)));
}
return data;
}
/**
* Serializes the given array
*
* @param objects objects
* @return serializedContent
* @throws IllegalAccessException exception
*/
public static Map serializeArray(Object[] objects) throws IllegalAccessException {
return serializeCollection(Arrays.asList(objects));
}
/**
* Serializes the given collection
*
* @param objects objects
* @return serializedContent
* @throws IllegalAccessException exception
*/
public static Map serializeCollection(Collection> objects) throws IllegalAccessException {
final Map data = new LinkedHashMap<>();
int i = 1;
for (final Object object : objects) {
data.put(String.valueOf(i), serializeObject(object));
i++;
}
return data;
}
/**
* Serializes the given object
*
* @param object object
* @return serializedContent
* @throws IllegalAccessException exception
*/
public static Map serializeObject(Object object) throws IllegalAccessException {
final Map data = new LinkedHashMap<>();
for (final AnnotationWrapper annotationWrapper : getOrderedAnnotations(object.getClass())) {
final Field field = annotationWrapper.field;
final YamlSerialize yamlAnnotation = annotationWrapper.annotation;
field.setAccessible(true);
if (isPrimitive(field.getType())) {
data.put(yamlAnnotation.value(), field.get(object));
} else if (field.getType().isArray()) {
data.put(yamlAnnotation.value(), serializeArray((Object[]) field.get(object)));
} else if (Collection.class.isAssignableFrom(field.getType())) {
data.put(yamlAnnotation.value(), serializeCollection((Collection>) field.get(object)));
} else if (Map.class.isAssignableFrom(field.getType())) {
data.put(yamlAnnotation.value(), serializeMap((Map, ?>) field.get(object)));
} else {
data.put(yamlAnnotation.value(), serializeObject(field.get(object)));
}
}
return data;
}
/**
* DeSerializes the given dataSource to a map
*
* @param clazz type of the mapValue
* @param mapClazz type of the map
* @param dataSource dataSource like map or fileConfiguration
* @param type of the map
* @param type of the mapValue
* @return deSerialized map
* @throws InstantiationException exception
* @throws IllegalAccessException exception
*/
public static T deserializeMap(Class clazz, Class mapClazz, Object dataSource) throws InstantiationException, IllegalAccessException {
final Map data = getDataFromSource(dataSource);
Class> instanceClass = mapClazz;
if (instanceClass == Map.class)
instanceClass = HashMap.class;
final T map = (T) instanceClass.newInstance();
for (final String key : data.keySet()) {
map.put(key, deserializeObject(clazz, ((MemorySection) data.get(key)).getValues(false)));
}
return map;
}
/**
* DeSerializes the given dataSource to an array
*
* @param clazz type of the object
* @param dataSource dataSource like map or fileConfiguration
* @param type of the object
* @return deSerialized array
* @throws InstantiationException exception
* @throws IllegalAccessException exception
*/
public static T[] deserializeArray(Class clazz, Object dataSource) throws InstantiationException, IllegalAccessException {
final Map data = getDataFromSource(dataSource);
final T[] objects = (T[]) Array.newInstance(clazz, data.size());
int i = 0;
for (final String key : data.keySet()) {
objects[i] = deserializeObject(clazz, ((MemorySection) data.get(key)).getValues(false));
i++;
}
return objects;
}
/**
* DeSerializes the given dataSource to a collection
*
* @param clazz type of the object
* @param collectionClazz type of the collection
* @param dataSource dataSource like map or fileConfiguration
* @param ype of the object
* @param type of the collection
* @return deSerialized collection
* @throws IllegalAccessException exception
* @throws InstantiationException exception
*/
public static T deserializeCollection(Class clazz, Class collectionClazz, Object dataSource) throws IllegalAccessException, InstantiationException {
final Map data = getDataFromSource(dataSource);
Class> instanceClass = collectionClazz;
if (instanceClass == List.class)
instanceClass = ArrayList.class;
else if (instanceClass == Set.class)
instanceClass = HashSet.class;
final T collection = (T) instanceClass.newInstance();
for (final String key : data.keySet()) {
collection.add(deserializeObject(clazz, ((MemorySection) data.get(key)).getValues(false)));
}
return collection;
}
/**
* DeSerializes the given dataSource to an object
*
* @param clazz type of the object
* @param dataSource dataSource like map or fileConfiguration
* @param type of the object
* @return deSerialized object
* @throws IllegalAccessException exception
* @throws InstantiationException exception
*/
public static T deserializeObject(Class clazz, Object dataSource) throws IllegalAccessException, InstantiationException {
final Map data = getDataFromSource(dataSource);
final T object = clazz.newInstance();
Class> clazzQuery = clazz;
while (clazzQuery != null) {
for (final Field field : clazzQuery.getDeclaredFields()) {
for (final Annotation annotation : field.getAnnotations()) {
if (annotation.annotationType() == YamlSerialize.class) {
final YamlSerialize yamlAnnotation = (YamlSerialize) annotation;
field.setAccessible(true);
if (data.containsKey(yamlAnnotation.value())) {
if (isPrimitive(field.getType())) {
field.set(object, data.get(yamlAnnotation.value()));
} else if (field.getType().isArray()) {
field.set(object, deserializeArray(clazzQuery, ((MemorySection) data.get(yamlAnnotation.value())).getValues(false)));
} else if (Collection.class.isAssignableFrom(field.getType())) {
field.set(object, deserializeCollection(getTypeFromHeavyField(field, 0), (Class) field.getType(), ((MemorySection) data.get(yamlAnnotation.value())).getValues(false)));
} else if (Map.class.isAssignableFrom(field.getType())) {
field.set(object, deserializeMap(getTypeFromHeavyField(field, 1), (Class