com.dslplatform.json.runtime.Reflection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-json-java8 Show documentation
Show all versions of dsl-json-java8 Show documentation
DSL Platform compatible Java JSON library (https://dsl-platform.com)
package com.dslplatform.json.runtime;
import com.dslplatform.json.Nullable;
import com.dslplatform.json.SerializationException;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
abstract class Reflection {
static final class ReadField implements Settings.Function {
private final Field field;
ReadField(Field field) {
this.field = field;
}
@Override
public Object apply(@Nullable Object instance) {
try {
return field.get(instance);
} catch (IllegalAccessException e) {
throw new SerializationException("Unable to read field " + field.getName() + " of " + field.getDeclaringClass(), e);
}
}
}
static final class ReadMethod implements Settings.Function {
private final Method method;
ReadMethod(Method method) {
this.method = method;
}
@Override
public Object apply(@Nullable Object instance) {
try {
return method.invoke(instance);
} catch (IllegalAccessException | InvocationTargetException e) {
throw new SerializationException("Unable to call method " + method.getName() + " of " + method.getDeclaringClass(), e);
}
}
}
static final class SetField implements Settings.BiConsumer {
private final Field field;
SetField(Field field) {
this.field = field;
}
@Override
public void accept(Object instance, @Nullable Object value) {
try {
field.set(instance, value);
} catch (IllegalAccessException e) {
throw new SerializationException("Unable to set field " + field.getName() + " of " + field.getDeclaringClass(), e);
}
}
}
static final class SetMethod implements Settings.BiConsumer {
private final Method method;
SetMethod(Method method) {
this.method = method;
}
@Override
public void accept(Object instance, @Nullable Object value) {
try {
method.invoke(instance, value);
} catch (IllegalAccessException | InvocationTargetException e) {
throw new SerializationException("Unable to call method " + method.getName() + " of " + method.getDeclaringClass(), e);
}
}
}
}