All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.validator.internal.util.privilegedactions.GetDeclaredMethodHandle Maven / Gradle / Ivy

There is a newer version: 8.0.1.Final
Show newest version
/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package org.hibernate.validator.internal.util.privilegedactions;

import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodHandles.Lookup;
import java.lang.reflect.Method;
import java.security.PrivilegedAction;

import org.hibernate.validator.internal.util.logging.Log;
import org.hibernate.validator.internal.util.logging.LoggerFactory;

/**
 * Returns the declared method with the specified name and parameter types in the form of a {@link MethodHandle} or
 * {@code null} if it does not exist or cannot be accessed.
 *
 * @author Guillaume Smet
 */
public final class GetDeclaredMethodHandle implements PrivilegedAction {

	private static final Log LOG = LoggerFactory.make( MethodHandles.lookup() );

	private final Lookup lookup;
	private final Class clazz;
	private final String methodName;
	private final Class[] parameterTypes;
	private final boolean makeAccessible;

	public static GetDeclaredMethodHandle action(Lookup lookup, Class clazz, String methodName, Class... parameterTypes) {
		return new GetDeclaredMethodHandle( lookup, clazz, methodName, false, parameterTypes );
	}

	/**
	 * Before using this method on arbitrary classes, you need to check the {@code HibernateValidatorPermission.ACCESS_PRIVATE_MEMBERS}
	 * permission against the security manager, if the calling class exposes the handle to clients.
	 */
	public static GetDeclaredMethodHandle andMakeAccessible(Lookup lookup, Class clazz, String methodName, Class... parameterTypes) {
		return new GetDeclaredMethodHandle( lookup, clazz, methodName, true, parameterTypes );
	}

	private GetDeclaredMethodHandle(Lookup lookup, Class clazz, String methodName, boolean makeAccessible, Class... parameterTypes) {
		this.lookup = lookup;
		this.clazz = clazz;
		this.methodName = methodName;
		this.parameterTypes = parameterTypes;
		this.makeAccessible = makeAccessible;
	}

	@Override
	public MethodHandle run() {
		try {
			Method method = clazz.getDeclaredMethod( methodName, parameterTypes );
			if ( makeAccessible ) {
				method.setAccessible( true );
			}
			return lookup.unreflect( method );
		}
		catch (NoSuchMethodException e) {
			return null;
		}
		catch (IllegalAccessException e) {
			throw LOG.getUnableToAccessMethodException( lookup, clazz, methodName, parameterTypes, e );
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy