org.glassfish.jersey.microprofile.restclient.ReflectionUtil Maven / Gradle / Ivy
/*
* Copyright (c) 2019, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.microprofile.restclient;
import org.glassfish.jersey.internal.util.JdkVersion;
import org.glassfish.jersey.internal.util.collection.LazyUnsafeValue;
import org.glassfish.jersey.internal.util.collection.UnsafeValue;
import org.glassfish.jersey.internal.util.collection.Values;
import java.lang.invoke.MethodHandles;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.security.AccessController;
import java.security.PrivilegedAction;
/**
* @author David Kral
* @author Tomas Langer
*/
final class ReflectionUtil {
private ReflectionUtil() {
}
static T createInstance(Class tClass) {
return AccessController.doPrivileged((PrivilegedAction) () -> {
try {
return tClass.getConstructor().newInstance();
} catch (Throwable t) {
throw new RuntimeException("No default constructor in class " + tClass + " present. Class cannot be created!", t);
}
});
}
@SuppressWarnings("unchecked")
static T createProxyInstance(Class restClientClass) {
return AccessController.doPrivileged((PrivilegedAction) () -> (T) Proxy.newProxyInstance(
Thread.currentThread().getContextClassLoader(),
new Class[] {restClientClass},
(proxy, m, args) -> {
final MethodHandles.Lookup lookup = JdkVersion.getJdkVersion().getMajor() > 1
? privateLookupJDK11(restClientClass) : privateLookupJDK8(restClientClass);
return lookup
.in(restClientClass)
.unreflectSpecial(m, restClientClass)
.bindTo(proxy)
.invokeWithArguments(args);
}));
}
private static LazyUnsafeValue privateLookup = Values.lazy((UnsafeValue)
() -> MethodHandles.class.getMethod("privateLookupIn", Class.class, MethodHandles.Lookup.class)
);
private static MethodHandles.Lookup privateLookupJDK11(Class> restClientClass)
throws Exception {
return (MethodHandles.Lookup) privateLookup.get().invoke(null, restClientClass, MethodHandles.lookup());
}
private static MethodHandles.Lookup privateLookupJDK8(Class> restClientClass)
throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
final Constructor constructor = MethodHandles.Lookup.class
.getDeclaredConstructor(Class.class);
constructor.setAccessible(true); //JEP 396 issue
return constructor.newInstance(restClientClass);
}
}