Last active
May 18, 2022 03:01
-
-
Save keturn/467f07c434d0e618fc44629620d16d5f to your computer and use it in GitHub Desktop.
Java MethodHandle from SerializedLambda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.common.base.Throwables; | |
import java.lang.invoke.MethodHandle; | |
import java.lang.invoke.MethodHandleInfo; | |
import java.lang.invoke.MethodHandles; | |
import java.lang.invoke.MethodType; | |
import java.lang.invoke.SerializedLambda; | |
import java.security.AccessController; | |
import java.security.PrivilegedActionException; | |
import java.security.PrivilegedExceptionAction; | |
public final class MethodHandleAdapters { | |
private MethodHandleAdapters() { } | |
static MethodHandle ofLambda(SerializedLambda serializedLambda) | |
throws ClassNotFoundException, IllegalAccessException, NoSuchMethodException, NoSuchFieldException { | |
// SerializedLambda's implementation has a reference to the capturing class, | |
// but it only exposes its name, so we'll have to look it up again. | |
String capturingClassName = serializedLambda.getCapturingClass(); | |
MethodHandles.Lookup lookup; | |
try { | |
// I'm guessing about the AccessController-related stuff, but the intention | |
// is that we get a Lookup instance that matches the capturing site of the lambda. | |
lookup = AccessController.doPrivileged((PrivilegedExceptionAction<MethodHandles.Lookup>) () -> { | |
MethodHandles.Lookup ourLookup = MethodHandles.lookup(); | |
Class<?> capturingClass = ourLookup.findClass(capturingClassName); | |
return MethodHandles.privateLookupIn(capturingClass, ourLookup); | |
}); | |
} catch (PrivilegedActionException e) { | |
Throwables.throwIfUnchecked(e.getCause()); | |
Throwables.throwIfInstanceOf(e.getCause(), ClassNotFoundException.class); | |
Throwables.throwIfInstanceOf(e.getCause(), IllegalAccessException.class); | |
throw new RuntimeException(e); | |
} | |
Class<?> implClass = lookup.findClass(serializedLambda.getImplClass()); | |
String name = serializedLambda.getImplMethodName(); | |
// It seems weird to be carefully using the Lookup interface to find classes, | |
// and then have the MethodType back to using a ClassLoader. But I guess we | |
// trust `lookup.find*` to not return anything it shouldn't in the end. | |
MethodType methodType = MethodType.fromMethodDescriptorString( | |
serializedLambda.getImplMethodSignature(), | |
lookup.lookupClass().getClassLoader() | |
); | |
// Surely this code must exist somewhere else already. | |
switch (serializedLambda.getImplMethodKind()) { | |
case MethodHandleInfo.REF_getField: | |
return lookup.findGetter(implClass, name, methodType.returnType()); | |
case MethodHandleInfo.REF_getStatic: | |
return lookup.findStaticGetter(implClass, name, methodType.returnType()); | |
case MethodHandleInfo.REF_putField: | |
return lookup.findSetter(implClass, name, methodType.parameterType(0)); | |
case MethodHandleInfo.REF_putStatic: | |
return lookup.findStaticSetter(implClass, name, methodType.parameterType(0)); | |
case MethodHandleInfo.REF_invokeInterface: | |
case MethodHandleInfo.REF_invokeVirtual: | |
return lookup.findVirtual(implClass, name, methodType); | |
case MethodHandleInfo.REF_invokeStatic: | |
return lookup.findStatic(implClass, name, methodType); | |
case MethodHandleInfo.REF_invokeSpecial: | |
return lookup.findSpecial(implClass, name, methodType, lookup.lookupClass()); | |
case MethodHandleInfo.REF_newInvokeSpecial: | |
return lookup.findConstructor(implClass, methodType); | |
default: | |
throw new RuntimeException("Not implemented for " + | |
MethodHandleInfo.referenceKindToString(serializedLambda.getImplMethodKind())); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment