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

org.easymock.internal.BridgeMethodResolver Maven / Gradle / Ivy

Go to download

EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly

There is a newer version: 5.2.0
Show newest version
/**
 * Copyright 2001-2015 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.easymock.internal;

import java.lang.reflect.*;
import java.util.*;

/**
 * Code taken from the Spring
 * framework.
 *
 * Helper for resolving synthetic {@link Method#isBridge bridge Methods} to the
 * {@link Method} being bridged.
 *
 * 

* Given a synthetic {@link Method#isBridge bridge Method} returns the * {@link Method} being bridged. A bridge method may be created by the compiler * when extending a parameterized type whose methods have parameterized * arguments. During runtime invocation the bridge {@link Method} may be invoked * and/or used via reflection. When attempting to locate annotations on * {@link Method Methods}, it is wise to check for bridge {@link Method Methods} * as appropriate and find the bridged {@link Method}. * *

* See The Java Language Specification for more details on the use of bridge * methods. * * @author Rob Harrop * @author Juergen Hoeller */ public final class BridgeMethodResolver { // Hard to test all cases since bridges varies from JVM implementation // Plus, the code is taken from Spring so we consider it is working // So, don't check coverage over the class // ///CLOVER:OFF private BridgeMethodResolver() { } /** * Find the original method for the supplied {@link Method bridge Method}. *

* It is safe to call this method passing in a non-bridge {@link Method} * instance. In such a case, the supplied {@link Method} instance is * returned directly to the caller. Callers are not * required to check for bridging before calling this method. * * @param bridgeMethod * the bridge method * @return the original method for the bridge * @throws IllegalStateException * if no bridged {@link Method} can be found */ public static Method findBridgedMethod(Method bridgeMethod) { assert bridgeMethod != null : "Method must not be null"; if (!bridgeMethod.isBridge()) { return bridgeMethod; } // Gather all methods with matching name and parameter size. Method[] methods = getAllDeclaredMethods(bridgeMethod.getDeclaringClass()); List candidateMethods = new ArrayList(methods.length); for (Method candidateMethod : methods) { if (isBridgedCandidateFor(candidateMethod, bridgeMethod)) { candidateMethods.add(candidateMethod); } } Method result; // Now perform simple quick checks. if (candidateMethods.size() == 1) { result = candidateMethods.get(0); } else { result = searchCandidates(candidateMethods, bridgeMethod); } if (result == null) { throw new IllegalStateException("Unable to locate bridged method for bridge method '" + bridgeMethod + "'"); } return result; } /** * Search for the bridged method in the given candidates. * * @param candidateMethods * the List of candidate Methods * @param bridgeMethod * the bridge method * @return the bridged method, or {@code null} if none found */ private static Method searchCandidates(List candidateMethods, Method bridgeMethod) { Map, Type> typeParameterMap = createTypeVariableMap(bridgeMethod .getDeclaringClass()); for (int i = 0; i < candidateMethods.size(); i++) { Method candidateMethod = candidateMethods.get(i); if (isBridgeMethodFor(bridgeMethod, candidateMethod, typeParameterMap)) { return candidateMethod; } } return null; } /** * Return {@code true} if the supplied '{@code candidateMethod}' * can be consider a validate candidate for the {@link Method} that is * {@link Method#isBridge() bridged} by the supplied {@link Method bridge * Method}. This method performs inexpensive checks and can be used quickly * filter for a set of possible matches. */ private static boolean isBridgedCandidateFor(Method candidateMethod, Method bridgeMethod) { return (!candidateMethod.isBridge() && !candidateMethod.equals(bridgeMethod) && candidateMethod.getName().equals(bridgeMethod.getName()) && candidateMethod .getParameterTypes().length == bridgeMethod.getParameterTypes().length); } /** * Determine whether or not the bridge {@link Method} is the bridge for the * supplied candidate {@link Method}. */ private static boolean isBridgeMethodFor(Method bridgeMethod, Method candidateMethod, Map, Type> typeVariableMap) { if (isResolvedTypeMatch(candidateMethod, bridgeMethod, typeVariableMap)) { return true; } Method method = findGenericDeclaration(bridgeMethod); return (method != null ? isResolvedTypeMatch(method, candidateMethod, typeVariableMap) : false); } /** * Search for the generic {@link Method} declaration whose erased signature * matches that of the supplied bridge method. * * @throws IllegalStateException * if the generic declaration cannot be found */ private static Method findGenericDeclaration(Method bridgeMethod) { // Search parent types for method that has same signature as bridge. Class superclass = bridgeMethod.getDeclaringClass().getSuperclass(); while (!Object.class.equals(superclass)) { Method method = searchForMatch(superclass, bridgeMethod); if (method != null && !method.isBridge()) { return method; } superclass = superclass.getSuperclass(); } // Search interfaces. Class[] interfaces = getAllInterfacesForClass(bridgeMethod.getDeclaringClass()); for (Class anInterface : interfaces) { Method method = searchForMatch(anInterface, bridgeMethod); if (method != null && !method.isBridge()) { return method; } } return null; } /** * Return {@code true} if the {@link Type} signature of both the * supplied {@link Method#getGenericParameterTypes() generic Method} and * concrete {@link Method} are equal after resolving all * {@link TypeVariable TypeVariables} using the supplied * {@link #createTypeVariableMap TypeVariable Map}, otherwise returns * {@code false}. */ private static boolean isResolvedTypeMatch(Method genericMethod, Method candidateMethod, Map, Type> typeVariableMap) { Type[] genericParameters = genericMethod.getGenericParameterTypes(); Class[] candidateParameters = candidateMethod.getParameterTypes(); if (genericParameters.length != candidateParameters.length) { return false; } for (int i = 0; i < genericParameters.length; i++) { Type genericParameter = genericParameters[i]; Class candidateParameter = candidateParameters[i]; if (candidateParameter.isArray()) { // An array type: compare the component type. Type rawType = getRawType(genericParameter, typeVariableMap); if (rawType instanceof GenericArrayType) { if (!candidateParameter.getComponentType().equals( getRawType(((GenericArrayType) rawType).getGenericComponentType(), typeVariableMap))) { return false; } break; } } // A non-array type: compare the type itself. if (!candidateParameter.equals(getRawType(genericParameter, typeVariableMap))) { return false; } } return true; } /** * Determine the raw type for the given generic parameter type. */ private static Type getRawType(Type genericType, Map, Type> typeVariableMap) { if (genericType instanceof TypeVariable) { TypeVariable tv = (TypeVariable) genericType; Type result = typeVariableMap.get(tv); return (result != null ? result : Object.class); } else if (genericType instanceof ParameterizedType) { return ((ParameterizedType) genericType).getRawType(); } else { return genericType; } } /** * If the supplied {@link Class} has a declared {@link Method} whose * signature matches that of the supplied {@link Method}, then this matching * {@link Method} is returned, otherwise {@code null} is returned. */ private static Method searchForMatch(Class type, Method bridgeMethod) { return findMethod(type, bridgeMethod.getName(), bridgeMethod.getParameterTypes()); } /** * Build a mapping of {@link TypeVariable#getName TypeVariable names} to * concrete {@link Class} for the specified {@link Class}. Searches all * super types, enclosing types and interfaces. */ private static Map, Type> createTypeVariableMap(Class cls) { Map, Type> typeVariableMap = new HashMap, Type>(); // interfaces extractTypeVariablesFromGenericInterfaces(cls.getGenericInterfaces(), typeVariableMap); // super class Type genericType = cls.getGenericSuperclass(); Class type = cls.getSuperclass(); while (!Object.class.equals(type)) { if (genericType instanceof ParameterizedType) { ParameterizedType pt = (ParameterizedType) genericType; populateTypeMapFromParameterizedType(pt, typeVariableMap); } extractTypeVariablesFromGenericInterfaces(type.getGenericInterfaces(), typeVariableMap); genericType = type.getGenericSuperclass(); type = type.getSuperclass(); } // enclosing class type = cls; while (type.isMemberClass()) { genericType = type.getGenericSuperclass(); if (genericType instanceof ParameterizedType) { ParameterizedType pt = (ParameterizedType) genericType; populateTypeMapFromParameterizedType(pt, typeVariableMap); } type = type.getEnclosingClass(); } return typeVariableMap; } private static void extractTypeVariablesFromGenericInterfaces(Type[] genericInterfaces, Map, Type> typeVariableMap) { for (Type genericInterface : genericInterfaces) { if (genericInterface instanceof ParameterizedType) { ParameterizedType pt = (ParameterizedType) genericInterface; populateTypeMapFromParameterizedType(pt, typeVariableMap); if (pt.getRawType() instanceof Class) { extractTypeVariablesFromGenericInterfaces(((Class) pt.getRawType()) .getGenericInterfaces(), typeVariableMap); } } else if (genericInterface instanceof Class) { extractTypeVariablesFromGenericInterfaces(((Class) genericInterface) .getGenericInterfaces(), typeVariableMap); } } } /** * Read the {@link TypeVariable TypeVariables} from the supplied * {@link ParameterizedType} and add mappings corresponding to the * {@link TypeVariable#getName TypeVariable name} -> concrete type to the * supplied {@link Map}. *

* Consider this case: * *





© 2015 - 2024 Weber Informatics LLC | Privacy Policy