org.jboss.marshalling.reflect.SerMethods Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
package org.jboss.marshalling.reflect;
import static java.security.AccessController.doPrivileged;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectStreamException;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodType;
import java.lang.reflect.Constructor;
import java.lang.reflect.UndeclaredThrowableException;
import java.security.PrivilegedAction;
import sun.reflect.ReflectionFactory;
/**
*
*/
final class SerMethods {
private static final ReflectionFactory reflectionFactory = doPrivileged((PrivilegedAction) ReflectionFactory::getReflectionFactory);
private final MethodHandle readObject;
private final MethodHandle readObjectNoData;
private final MethodHandle writeObject;
private final MethodHandle readResolve;
private final MethodHandle writeReplace;
private final Constructor> noArgConstructor;
private final Constructor> objectInputConstructor;
SerMethods(Class> clazz) {
readObject = changeType(reflectionFactory.readObjectForSerialization(clazz), MethodType.methodType(void.class, Object.class, ObjectInputStream.class));
readObjectNoData = changeType(reflectionFactory.readObjectNoDataForSerialization(clazz), MethodType.methodType(void.class, Object.class));
writeObject = changeType(reflectionFactory.writeObjectForSerialization(clazz), MethodType.methodType(void.class, Object.class, ObjectOutputStream.class));
readResolve = changeType(reflectionFactory.readResolveForSerialization(clazz), MethodType.methodType(Object.class, Object.class));
writeReplace = changeType(reflectionFactory.writeReplaceForSerialization(clazz), MethodType.methodType(Object.class, Object.class));
Constructor> ctor;
Constructor> noArgConstructor = null;
try {
ctor = clazz.getDeclaredConstructor();
noArgConstructor = reflectionFactory.newConstructorForSerialization(clazz, ctor);
} catch (NoSuchMethodException ignored) {
}
this.noArgConstructor = noArgConstructor;
Constructor> objectInputConstructor = null;
try {
ctor = clazz.getDeclaredConstructor(ObjectInput.class);
objectInputConstructor = reflectionFactory.newConstructorForSerialization(clazz, ctor);
} catch (NoSuchMethodException ignored) {
}
this.objectInputConstructor = objectInputConstructor;
}
private static MethodHandle changeType(MethodHandle original, MethodType newType) {
return original == null ? null : original.asType(newType);
}
static Constructor> newConstructorForSerialization(Class> classToInstantiate, Constructor> constructorToCall) {
return reflectionFactory.newConstructorForSerialization(classToInstantiate, constructorToCall);
}
boolean hasWriteObject() {
return writeObject != null;
}
void callWriteObject(Object object, ObjectOutputStream outputStream) throws IOException {
try {
writeObject.invokeExact(object, outputStream);
} catch (IOException | RuntimeException | Error e) {
throw e;
} catch (Throwable e) {
throw new UndeclaredThrowableException(e);
}
}
boolean hasReadObject() {
return readObject != null;
}
void callReadObject(Object object, ObjectInputStream inputStream) throws IOException, ClassNotFoundException {
try {
readObject.invokeExact(object, inputStream);
} catch (IOException | ClassNotFoundException | RuntimeException | Error e) {
throw e;
} catch (Throwable e) {
throw new UndeclaredThrowableException(e);
}
}
boolean hasReadObjectNoData() {
return readObjectNoData != null;
}
void callReadObjectNoData(Object object) throws ObjectStreamException {
try {
readObjectNoData.invokeExact(object);
} catch (ObjectStreamException | RuntimeException | Error e) {
throw e;
} catch (Throwable e) {
throw new UndeclaredThrowableException(e);
}
}
boolean hasWriteReplace() {
return writeReplace != null;
}
Object callWriteReplace(Object object) throws ObjectStreamException {
try {
return writeReplace.invokeExact(object);
} catch (ObjectStreamException | RuntimeException | Error e) {
throw e;
} catch (Throwable e) {
throw new UndeclaredThrowableException(e);
}
}
boolean hasReadResolve() {
return readResolve != null;
}
Object callReadResolve(Object object) throws ObjectStreamException {
try {
return readResolve.invokeExact(object);
} catch (ObjectStreamException | RuntimeException | Error e) {
throw e;
} catch (Throwable e) {
throw new UndeclaredThrowableException(e);
}
}
Constructor> getNoArgConstructor() {
return noArgConstructor;
}
Constructor> getObjectInputConstructor() {
return objectInputConstructor;
}
}