ReflectionUtils.java 28.6 KB
Newer Older
1
/*
2
 * Copyright 2002-2015 the original author or authors.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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.springframework.util;

import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
24
import java.lang.reflect.UndeclaredThrowableException;
25 26 27
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
28
import java.util.LinkedList;
29
import java.util.List;
30
import java.util.Map;
31 32 33 34

/**
 * Simple utility class for working with the reflection API and handling
 * reflection exceptions.
J
Juergen Hoeller 已提交
35 36 37
 *
 * <p>Only intended for internal use.
 *
38 39 40 41 42
 * @author Juergen Hoeller
 * @author Rob Harrop
 * @author Rod Johnson
 * @author Costin Leau
 * @author Sam Brannen
43
 * @author Chris Beams
44 45 46 47
 * @since 1.2.2
 */
public abstract class ReflectionUtils {

48 49 50 51 52 53
	/**
	 * Naming prefix for CGLIB-renamed methods.
	 * @see #isCglibRenamedMethod
	 */
	private static final String CGLIB_RENAMED_METHOD_PREFIX = "CGLIB$";

54 55 56 57
	private static final Method[] NO_METHODS = {};

	private static final Field[] NO_FIELDS = {};

J
Juergen Hoeller 已提交
58

59
	/**
60 61
	 * Cache for {@link Class#getDeclaredMethods()} plus equivalent default methods
	 * from Java 8 based interfaces, allowing for fast iteration.
62 63 64 65
	 */
	private static final Map<Class<?>, Method[]> declaredMethodsCache =
			new ConcurrentReferenceHashMap<Class<?>, Method[]>(256);

66 67 68 69 70 71
	/**
	 * Cache for {@link Class#getDeclaredFields()}, allowing for fast iteration.
	 */
	private static final Map<Class<?>, Field[]> declaredFieldsCache =
			new ConcurrentReferenceHashMap<Class<?>, Field[]>(256);

J
Juergen Hoeller 已提交
72

73
	/**
74
	 * Attempt to find a {@link Field field} on the supplied {@link Class} with the
75
	 * supplied {@code name}. Searches all superclasses up to {@link Object}.
76 77
	 * @param clazz the class to introspect
	 * @param name the name of the field
78
	 * @return the corresponding Field object, or {@code null} if not found
79
	 */
80
	public static Field findField(Class<?> clazz, String name) {
81 82 83 84
		return findField(clazz, name, null);
	}

	/**
85
	 * Attempt to find a {@link Field field} on the supplied {@link Class} with the
86
	 * supplied {@code name} and/or {@link Class type}. Searches all superclasses
87
	 * up to {@link Object}.
88
	 * @param clazz the class to introspect
89 90 91
	 * @param name the name of the field (may be {@code null} if type is specified)
	 * @param type the type of the field (may be {@code null} if name is specified)
	 * @return the corresponding Field object, or {@code null} if not found
92
	 */
93
	public static Field findField(Class<?> clazz, String name, Class<?> type) {
94 95
		Assert.notNull(clazz, "Class must not be null");
		Assert.isTrue(name != null || type != null, "Either name or type of the field must be specified");
96
		Class<?> searchType = clazz;
97
		while (Object.class != searchType && searchType != null) {
98
			Field[] fields = getDeclaredFields(searchType);
J
Juergen Hoeller 已提交
99
			for (Field field : fields) {
J
Juergen Hoeller 已提交
100 101
				if ((name == null || name.equals(field.getName())) &&
						(type == null || type.equals(field.getType()))) {
102 103 104 105 106 107 108 109 110
					return field;
				}
			}
			searchType = searchType.getSuperclass();
		}
		return null;
	}

	/**
111
	 * Set the field represented by the supplied {@link Field field object} on the
112
	 * specified {@link Object target object} to the specified {@code value}.
113 114 115
	 * In accordance with {@link Field#set(Object, Object)} semantics, the new value
	 * is automatically unwrapped if the underlying field has a primitive type.
	 * <p>Thrown exceptions are handled via a call to {@link #handleReflectionException(Exception)}.
116 117
	 * @param field the field to set
	 * @param target the target object on which to set the field
J
Juergen Hoeller 已提交
118
	 * @param value the value to set (may be {@code null})
119 120 121 122 123 124 125
	 */
	public static void setField(Field field, Object target, Object value) {
		try {
			field.set(target, value);
		}
		catch (IllegalAccessException ex) {
			handleReflectionException(ex);
J
Juergen Hoeller 已提交
126 127
			throw new IllegalStateException(
					"Unexpected reflection exception - " + ex.getClass().getName() + ": " + ex.getMessage());
128 129 130 131
		}
	}

	/**
132 133 134 135 136
	 * Get the field represented by the supplied {@link Field field object} on the
	 * specified {@link Object target object}. In accordance with {@link Field#get(Object)}
	 * semantics, the returned value is automatically wrapped if the underlying field
	 * has a primitive type.
	 * <p>Thrown exceptions are handled via a call to {@link #handleReflectionException(Exception)}.
137 138 139 140 141 142 143 144 145 146
	 * @param field the field to get
	 * @param target the target object from which to get the field
	 * @return the field's current value
	 */
	public static Object getField(Field field, Object target) {
		try {
			return field.get(target);
		}
		catch (IllegalAccessException ex) {
			handleReflectionException(ex);
147 148
			throw new IllegalStateException(
					"Unexpected reflection exception - " + ex.getClass().getName() + ": " + ex.getMessage());
149 150 151 152
		}
	}

	/**
153
	 * Attempt to find a {@link Method} on the supplied class with the supplied name
154 155
	 * and no parameters. Searches all superclasses up to {@code Object}.
	 * <p>Returns {@code null} if no {@link Method} can be found.
156 157
	 * @param clazz the class to introspect
	 * @param name the name of the method
158
	 * @return the Method object, or {@code null} if none found
159
	 */
160
	public static Method findMethod(Class<?> clazz, String name) {
P
Phillip Webb 已提交
161
		return findMethod(clazz, name, new Class<?>[0]);
162 163 164
	}

	/**
165
	 * Attempt to find a {@link Method} on the supplied class with the supplied name
166 167
	 * and parameter types. Searches all superclasses up to {@code Object}.
	 * <p>Returns {@code null} if no {@link Method} can be found.
168 169
	 * @param clazz the class to introspect
	 * @param name the name of the method
170
	 * @param paramTypes the parameter types of the method
171 172
	 * (may be {@code null} to indicate any signature)
	 * @return the Method object, or {@code null} if none found
173
	 */
174
	public static Method findMethod(Class<?> clazz, String name, Class<?>... paramTypes) {
175 176
		Assert.notNull(clazz, "Class must not be null");
		Assert.notNull(name, "Method name must not be null");
177
		Class<?> searchType = clazz;
178
		while (searchType != null) {
179
			Method[] methods = (searchType.isInterface() ? searchType.getMethods() : getDeclaredMethods(searchType));
J
Juergen Hoeller 已提交
180
			for (Method method : methods) {
J
Juergen Hoeller 已提交
181 182
				if (name.equals(method.getName()) &&
						(paramTypes == null || Arrays.equals(paramTypes, method.getParameterTypes()))) {
183 184 185 186 187 188 189 190 191
					return method;
				}
			}
			searchType = searchType.getSuperclass();
		}
		return null;
	}

	/**
192
	 * Invoke the specified {@link Method} against the supplied target object with no arguments.
193
	 * The target object can be {@code null} when invoking a static {@link Method}.
194
	 * <p>Thrown exceptions are handled via a call to {@link #handleReflectionException}.
195 196 197 198 199 200
	 * @param method the method to invoke
	 * @param target the target object to invoke the method on
	 * @return the invocation result, if any
	 * @see #invokeMethod(java.lang.reflect.Method, Object, Object[])
	 */
	public static Object invokeMethod(Method method, Object target) {
201
		return invokeMethod(method, target, new Object[0]);
202 203 204
	}

	/**
205
	 * Invoke the specified {@link Method} against the supplied target object with the
206
	 * supplied arguments. The target object can be {@code null} when invoking a
207 208
	 * static {@link Method}.
	 * <p>Thrown exceptions are handled via a call to {@link #handleReflectionException}.
209 210
	 * @param method the method to invoke
	 * @param target the target object to invoke the method on
211
	 * @param args the invocation arguments (may be {@code null})
212 213
	 * @return the invocation result, if any
	 */
214
	public static Object invokeMethod(Method method, Object target, Object... args) {
215 216 217 218 219 220 221 222 223 224
		try {
			return method.invoke(target, args);
		}
		catch (Exception ex) {
			handleReflectionException(ex);
		}
		throw new IllegalStateException("Should never get here");
	}

	/**
225 226
	 * Invoke the specified JDBC API {@link Method} against the supplied target
	 * object with no arguments.
227 228 229 230 231 232 233
	 * @param method the method to invoke
	 * @param target the target object to invoke the method on
	 * @return the invocation result, if any
	 * @throws SQLException the JDBC API SQLException to rethrow (if any)
	 * @see #invokeJdbcMethod(java.lang.reflect.Method, Object, Object[])
	 */
	public static Object invokeJdbcMethod(Method method, Object target) throws SQLException {
234
		return invokeJdbcMethod(method, target, new Object[0]);
235 236 237
	}

	/**
238 239
	 * Invoke the specified JDBC API {@link Method} against the supplied target
	 * object with the supplied arguments.
240 241
	 * @param method the method to invoke
	 * @param target the target object to invoke the method on
242
	 * @param args the invocation arguments (may be {@code null})
243 244 245 246
	 * @return the invocation result, if any
	 * @throws SQLException the JDBC API SQLException to rethrow (if any)
	 * @see #invokeMethod(java.lang.reflect.Method, Object, Object[])
	 */
247
	public static Object invokeJdbcMethod(Method method, Object target, Object... args) throws SQLException {
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
		try {
			return method.invoke(target, args);
		}
		catch (IllegalAccessException ex) {
			handleReflectionException(ex);
		}
		catch (InvocationTargetException ex) {
			if (ex.getTargetException() instanceof SQLException) {
				throw (SQLException) ex.getTargetException();
			}
			handleInvocationTargetException(ex);
		}
		throw new IllegalStateException("Should never get here");
	}

	/**
264 265
	 * Handle the given reflection exception. Should only be called if no
	 * checked exception is expected to be thrown by the target method.
J
Juergen Hoeller 已提交
266
	 * <p>Throws the underlying RuntimeException or Error in case of an
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
	 * InvocationTargetException with such a root cause. Throws an
	 * IllegalStateException with an appropriate message else.
	 * @param ex the reflection exception to handle
	 */
	public static void handleReflectionException(Exception ex) {
		if (ex instanceof NoSuchMethodException) {
			throw new IllegalStateException("Method not found: " + ex.getMessage());
		}
		if (ex instanceof IllegalAccessException) {
			throw new IllegalStateException("Could not access method: " + ex.getMessage());
		}
		if (ex instanceof InvocationTargetException) {
			handleInvocationTargetException((InvocationTargetException) ex);
		}
		if (ex instanceof RuntimeException) {
			throw (RuntimeException) ex;
		}
284
		throw new UndeclaredThrowableException(ex);
285 286 287
	}

	/**
288 289
	 * Handle the given invocation target exception. Should only be called if no
	 * checked exception is expected to be thrown by the target method.
J
Juergen Hoeller 已提交
290
	 * <p>Throws the underlying RuntimeException or Error in case of such a root
291
	 * cause. Throws an IllegalStateException else.
292 293 294 295 296 297 298 299
	 * @param ex the invocation target exception to handle
	 */
	public static void handleInvocationTargetException(InvocationTargetException ex) {
		rethrowRuntimeException(ex.getTargetException());
	}

	/**
	 * Rethrow the given {@link Throwable exception}, which is presumably the
J
Juergen Hoeller 已提交
300 301 302
	 * <em>target exception</em> of an {@link InvocationTargetException}.
	 * Should only be called if no checked exception is expected to be thrown
	 * by the target method.
J
Juergen Hoeller 已提交
303
	 * <p>Rethrows the underlying exception cast to an {@link RuntimeException} or
J
Juergen Hoeller 已提交
304
	 * {@link Error} if appropriate; otherwise, throws an {@link IllegalStateException}.
305 306 307 308 309 310 311 312 313 314
	 * @param ex the exception to rethrow
	 * @throws RuntimeException the rethrown exception
	 */
	public static void rethrowRuntimeException(Throwable ex) {
		if (ex instanceof RuntimeException) {
			throw (RuntimeException) ex;
		}
		if (ex instanceof Error) {
			throw (Error) ex;
		}
315
		throw new UndeclaredThrowableException(ex);
316 317 318 319
	}

	/**
	 * Rethrow the given {@link Throwable exception}, which is presumably the
J
Juergen Hoeller 已提交
320 321 322
	 * <em>target exception</em> of an {@link InvocationTargetException}.
	 * Should only be called if no checked exception is expected to be thrown
	 * by the target method.
J
Juergen Hoeller 已提交
323
	 * <p>Rethrows the underlying exception cast to an {@link Exception} or
J
Juergen Hoeller 已提交
324
	 * {@link Error} if appropriate; otherwise, throws an {@link IllegalStateException}.
325 326 327 328 329 330 331 332 333 334
	 * @param ex the exception to rethrow
	 * @throws Exception the rethrown exception (in case of a checked exception)
	 */
	public static void rethrowException(Throwable ex) throws Exception {
		if (ex instanceof Exception) {
			throw (Exception) ex;
		}
		if (ex instanceof Error) {
			throw (Error) ex;
		}
335
		throw new UndeclaredThrowableException(ex);
336 337 338
	}

	/**
339
	 * Determine whether the given method explicitly declares the given
J
Juergen Hoeller 已提交
340 341
	 * exception or one of its superclasses, which means that an exception
	 * of that type can be propagated as-is within a reflective invocation.
342 343
	 * @param method the declaring method
	 * @param exceptionType the exception to throw
344 345
	 * @return {@code true} if the exception can be thrown as-is;
	 * {@code false} if it needs to be wrapped
346
	 */
347
	public static boolean declaresException(Method method, Class<?> exceptionType) {
348
		Assert.notNull(method, "Method must not be null");
349 350
		Class<?>[] declaredExceptions = method.getExceptionTypes();
		for (Class<?> declaredException : declaredExceptions) {
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
			if (declaredException.isAssignableFrom(exceptionType)) {
				return true;
			}
		}
		return false;
	}

	/**
	 * Determine whether the given field is a "public static final" constant.
	 * @param field the field to check
	 */
	public static boolean isPublicStaticFinal(Field field) {
		int modifiers = field.getModifiers();
		return (Modifier.isPublic(modifiers) && Modifier.isStatic(modifiers) && Modifier.isFinal(modifiers));
	}

	/**
	 * Determine whether the given method is an "equals" method.
J
Juergen Hoeller 已提交
369
	 * @see java.lang.Object#equals(Object)
370 371 372 373 374
	 */
	public static boolean isEqualsMethod(Method method) {
		if (method == null || !method.getName().equals("equals")) {
			return false;
		}
375
		Class<?>[] paramTypes = method.getParameterTypes();
376 377 378 379 380
		return (paramTypes.length == 1 && paramTypes[0] == Object.class);
	}

	/**
	 * Determine whether the given method is a "hashCode" method.
J
Juergen Hoeller 已提交
381
	 * @see java.lang.Object#hashCode()
382 383
	 */
	public static boolean isHashCodeMethod(Method method) {
384
		return (method != null && method.getName().equals("hashCode") && method.getParameterTypes().length == 0);
385 386 387 388 389 390 391
	}

	/**
	 * Determine whether the given method is a "toString" method.
	 * @see java.lang.Object#toString()
	 */
	public static boolean isToStringMethod(Method method) {
392
		return (method != null && method.getName().equals("toString") && method.getParameterTypes().length == 0);
393 394
	}

395 396 397 398
	/**
	 * Determine whether the given method is originally declared by {@link java.lang.Object}.
	 */
	public static boolean isObjectMethod(Method method) {
J
Juergen Hoeller 已提交
399 400 401
		if (method == null) {
			return false;
		}
402 403 404
		try {
			Object.class.getDeclaredMethod(method.getName(), method.getParameterTypes());
			return true;
J
Juergen Hoeller 已提交
405 406
		}
		catch (Exception ex) {
407 408 409 410
			return false;
		}
	}

411
	/**
J
Juergen Hoeller 已提交
412 413
	 * Determine whether the given method is a CGLIB 'renamed' method,
	 * following the pattern "CGLIB$methodName$0".
414
	 * @param renamedMethod the method to check
415
	 * @see org.springframework.cglib.proxy.Enhancer#rename
416 417
	 */
	public static boolean isCglibRenamedMethod(Method renamedMethod) {
418
		String name = renamedMethod.getName();
419 420 421 422 423 424
		if (name.startsWith(CGLIB_RENAMED_METHOD_PREFIX)) {
			int i = name.length() - 1;
			while (i >= 0 && Character.isDigit(name.charAt(i))) {
				i--;
			}
			return ((i > CGLIB_RENAMED_METHOD_PREFIX.length()) &&
J
Juergen Hoeller 已提交
425
						(i < name.length() - 1) && name.charAt(i) == '$');
426 427
		}
		return false;
428 429
	}

430
	/**
431
	 * Make the given field accessible, explicitly setting it accessible if
432
	 * necessary. The {@code setAccessible(true)} method is only called
433 434
	 * when actually necessary, to avoid unnecessary conflicts with a JVM
	 * SecurityManager (if active).
435 436 437 438
	 * @param field the field to make accessible
	 * @see java.lang.reflect.Field#setAccessible
	 */
	public static void makeAccessible(Field field) {
J
Juergen Hoeller 已提交
439 440
		if ((!Modifier.isPublic(field.getModifiers()) ||
				!Modifier.isPublic(field.getDeclaringClass().getModifiers()) ||
441
				Modifier.isFinal(field.getModifiers())) && !field.isAccessible()) {
442 443 444 445 446
			field.setAccessible(true);
		}
	}

	/**
447
	 * Make the given method accessible, explicitly setting it accessible if
448
	 * necessary. The {@code setAccessible(true)} method is only called
449 450
	 * when actually necessary, to avoid unnecessary conflicts with a JVM
	 * SecurityManager (if active).
451 452 453 454
	 * @param method the method to make accessible
	 * @see java.lang.reflect.Method#setAccessible
	 */
	public static void makeAccessible(Method method) {
455 456
		if ((!Modifier.isPublic(method.getModifiers()) ||
				!Modifier.isPublic(method.getDeclaringClass().getModifiers())) && !method.isAccessible()) {
457 458 459 460 461
			method.setAccessible(true);
		}
	}

	/**
462
	 * Make the given constructor accessible, explicitly setting it accessible
463
	 * if necessary. The {@code setAccessible(true)} method is only called
464 465
	 * when actually necessary, to avoid unnecessary conflicts with a JVM
	 * SecurityManager (if active).
466 467 468
	 * @param ctor the constructor to make accessible
	 * @see java.lang.reflect.Constructor#setAccessible
	 */
469
	public static void makeAccessible(Constructor<?> ctor) {
470 471
		if ((!Modifier.isPublic(ctor.getModifiers()) ||
				!Modifier.isPublic(ctor.getDeclaringClass().getModifiers())) && !ctor.isAccessible()) {
472 473 474 475
			ctor.setAccessible(true);
		}
	}

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
	/**
	 * Perform the given callback operation on all matching methods of the given
	 * class, as locally declared or equivalent thereof (such as default methods
	 * on Java 8 based interfaces that the given class implements).
	 * @param clazz the class to introspect
	 * @param mc the callback to invoke for each method
	 * @since 4.2
	 * @see #doWithMethods
	 */
	public static void doWithLocalMethods(Class<?> clazz, MethodCallback mc) {
		Method[] methods = getDeclaredMethods(clazz);
		for (Method method : methods) {
			try {
				mc.doWith(method);
			}
			catch (IllegalAccessException ex) {
				throw new IllegalStateException("Not allowed to access method '" + method.getName() + "': " + ex);
			}
		}
	}

497
	/**
498 499
	 * Perform the given callback operation on all matching methods of the given
	 * class and superclasses.
J
Juergen Hoeller 已提交
500
	 * <p>The same named method occurring on subclass and superclass will appear
501
	 * twice, unless excluded by a {@link MethodFilter}.
502
	 * @param clazz the class to introspect
503 504 505
	 * @param mc the callback to invoke for each method
	 * @see #doWithMethods(Class, MethodCallback, MethodFilter)
	 */
506
	public static void doWithMethods(Class<?> clazz, MethodCallback mc) {
507
		doWithMethods(clazz, mc, null);
508 509 510
	}

	/**
511
	 * Perform the given callback operation on all matching methods of the given
512
	 * class and superclasses (or given interface and super-interfaces).
J
Juergen Hoeller 已提交
513
	 * <p>The same named method occurring on subclass and superclass will appear
514
	 * twice, unless excluded by the specified {@link MethodFilter}.
515
	 * @param clazz the class to introspect
516 517 518
	 * @param mc the callback to invoke for each method
	 * @param mf the filter that determines the methods to apply the callback to
	 */
519
	public static void doWithMethods(Class<?> clazz, MethodCallback mc, MethodFilter mf) {
520
		// Keep backing up the inheritance hierarchy.
521
		Method[] methods = getDeclaredMethods(clazz);
522 523 524 525 526 527 528 529
		for (Method method : methods) {
			if (mf != null && !mf.matches(method)) {
				continue;
			}
			try {
				mc.doWith(method);
			}
			catch (IllegalAccessException ex) {
530
				throw new IllegalStateException("Not allowed to access method '" + method.getName() + "': " + ex);
531 532 533 534 535 536 537 538
			}
		}
		if (clazz.getSuperclass() != null) {
			doWithMethods(clazz.getSuperclass(), mc, mf);
		}
		else if (clazz.isInterface()) {
			for (Class<?> superIfc : clazz.getInterfaces()) {
				doWithMethods(superIfc, mc, mf);
539
			}
540
		}
541 542 543
	}

	/**
544 545 546
	 * Get all declared methods on the leaf class and all superclasses.
	 * Leaf class methods are included first.
	 * @param leafClass the class to introspect
547
	 */
548
	public static Method[] getAllDeclaredMethods(Class<?> leafClass) {
J
Juergen Hoeller 已提交
549
		final List<Method> methods = new ArrayList<Method>(32);
550
		doWithMethods(leafClass, new MethodCallback() {
551
			@Override
552
			public void doWith(Method method) {
J
Juergen Hoeller 已提交
553
				methods.add(method);
554 555
			}
		});
J
Juergen Hoeller 已提交
556
		return methods.toArray(new Method[methods.size()]);
557 558
	}

559
	/**
560 561 562 563
	 * Get the unique set of declared methods on the leaf class and all superclasses.
	 * Leaf class methods are included first and while traversing the superclass hierarchy
	 * any methods found with signatures matching a method already included are filtered out.
	 * @param leafClass the class to introspect
564
	 */
565
	public static Method[] getUniqueDeclaredMethods(Class<?> leafClass) {
566 567
		final List<Method> methods = new ArrayList<Method>(32);
		doWithMethods(leafClass, new MethodCallback() {
568
			@Override
569 570 571 572 573 574
			public void doWith(Method method) {
				boolean knownSignature = false;
				Method methodBeingOverriddenWithCovariantReturnType = null;
				for (Method existingMethod : methods) {
					if (method.getName().equals(existingMethod.getName()) &&
							Arrays.equals(method.getParameterTypes(), existingMethod.getParameterTypes())) {
J
Juergen Hoeller 已提交
575
						// Is this a covariant return type situation?
576 577 578
						if (existingMethod.getReturnType() != method.getReturnType() &&
								existingMethod.getReturnType().isAssignableFrom(method.getReturnType())) {
							methodBeingOverriddenWithCovariantReturnType = existingMethod;
J
Juergen Hoeller 已提交
579 580
						}
						else {
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
							knownSignature = true;
						}
						break;
					}
				}
				if (methodBeingOverriddenWithCovariantReturnType != null) {
					methods.remove(methodBeingOverriddenWithCovariantReturnType);
				}
				if (!knownSignature && !isCglibRenamedMethod(method)) {
					methods.add(method);
				}
			}
		});
		return methods.toArray(new Method[methods.size()]);
	}

597
	/**
598
	 * This variant retrieves {@link Class#getDeclaredMethods()} from a local cache
599
	 * in order to avoid the JVM's SecurityManager check and defensive array copying.
600 601 602 603 604
	 * In addition, it also includes Java 8 default methods from locally implemented
	 * interfaces, since those are effectively to be treated just like declared methods.
	 * @param clazz the class to introspect
	 * @return the cached array of methods
	 * @see Class#getDeclaredMethods()
605 606 607 608
	 */
	private static Method[] getDeclaredMethods(Class<?> clazz) {
		Method[] result = declaredMethodsCache.get(clazz);
		if (result == null) {
609 610 611 612 613 614 615 616 617 618 619 620 621 622
			Method[] declaredMethods = clazz.getDeclaredMethods();
			List<Method> defaultMethods = findConcreteMethodsOnInterfaces(clazz);
			if (defaultMethods != null) {
				result = new Method[declaredMethods.length + defaultMethods.size()];
				System.arraycopy(declaredMethods, 0, result, 0, declaredMethods.length);
				int index = declaredMethods.length;
				for (Method defaultMethod : defaultMethods) {
					result[index] = defaultMethod;
					index++;
				}
			}
			else {
				result = declaredMethods;
			}
623
			declaredMethodsCache.put(clazz, (result.length == 0 ? NO_METHODS : result));
624 625 626 627
		}
		return result;
	}

628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
	private static List<Method> findConcreteMethodsOnInterfaces(Class<?> clazz) {
		List<Method> result = null;
		for (Class<?> ifc : clazz.getInterfaces()) {
			for (Method ifcMethod : ifc.getMethods()) {
				if (!Modifier.isAbstract(ifcMethod.getModifiers())) {
					if (result == null) {
						result = new LinkedList<Method>();
					}
					result.add(ifcMethod);
				}
			}
		}
		return result;
	}

643
	/**
644 645
	 * Invoke the given callback on all fields in the target class, going up the
	 * class hierarchy to get all declared fields.
646
	 * @param clazz the target class to analyze
647
	 * @param fc the callback to invoke for each field
648 649
	 * @since 4.2
	 * @see #doWithFields
650
	 */
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
	public static void doWithLocalFields(Class<?> clazz, FieldCallback fc) {
		for (Field field : getDeclaredFields(clazz)) {
			try {
				fc.doWith(field);
			}
			catch (IllegalAccessException ex) {
				throw new IllegalStateException("Not allowed to access field '" + field.getName() + "': " + ex);
			}
		}
	}

	/**
	 * Invoke the given callback on all fields in the target class, going up the
	 * class hierarchy to get all declared fields.
	 * @param clazz the target class to analyze
	 * @param fc the callback to invoke for each field
	 */
	public static void doWithFields(Class<?> clazz, FieldCallback fc) {
669
		doWithFields(clazz, fc, null);
670 671 672
	}

	/**
673 674
	 * Invoke the given callback on all fields in the target class, going up the
	 * class hierarchy to get all declared fields.
675
	 * @param clazz the target class to analyze
676 677 678
	 * @param fc the callback to invoke for each field
	 * @param ff the filter that determines the fields to apply the callback to
	 */
679
	public static void doWithFields(Class<?> clazz, FieldCallback fc, FieldFilter ff) {
680
		// Keep backing up the inheritance hierarchy.
681
		Class<?> targetClass = clazz;
682
		do {
683
			Field[] fields = getDeclaredFields(targetClass);
J
Juergen Hoeller 已提交
684 685
			for (Field field : fields) {
				if (ff != null && !ff.matches(field)) {
686 687 688
					continue;
				}
				try {
J
Juergen Hoeller 已提交
689
					fc.doWith(field);
690 691
				}
				catch (IllegalAccessException ex) {
692
					throw new IllegalStateException("Not allowed to access field '" + field.getName() + "': " + ex);
693 694 695
				}
			}
			targetClass = targetClass.getSuperclass();
696 697
		}
		while (targetClass != null && targetClass != Object.class);
698 699
	}

700 701 702 703 704 705 706 707 708 709 710
	/**
	 * This variant retrieves {@link Class#getDeclaredFields()} from a local cache
	 * in order to avoid the JVM's SecurityManager check and defensive array copying.
	 * @param clazz the class to introspect
	 * @return the cached array of fields
	 * @see Class#getDeclaredFields()
	 */
	private static Field[] getDeclaredFields(Class<?> clazz) {
		Field[] result = declaredFieldsCache.get(clazz);
		if (result == null) {
			result = clazz.getDeclaredFields();
711
			declaredFieldsCache.put(clazz, (result.length == 0 ? NO_FIELDS : result));
712 713 714 715
		}
		return result;
	}

716 717 718 719 720
	/**
	 * Given the source object and the destination, which must be the same class
	 * or a subclass, copy all fields, including inherited fields. Designed to
	 * work on objects with public no-arg constructors.
	 */
721
	public static void shallowCopyFieldState(final Object src, final Object dest) {
722 723 724 725 726 727 728
		if (src == null) {
			throw new IllegalArgumentException("Source for field copy cannot be null");
		}
		if (dest == null) {
			throw new IllegalArgumentException("Destination for field copy cannot be null");
		}
		if (!src.getClass().isAssignableFrom(dest.getClass())) {
J
Juergen Hoeller 已提交
729 730
			throw new IllegalArgumentException("Destination class [" + dest.getClass().getName() +
					"] must be same or subclass as source class [" + src.getClass().getName() + "]");
731 732
		}
		doWithFields(src.getClass(), new FieldCallback() {
733
			@Override
734 735 736 737 738 739 740 741
			public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
				makeAccessible(field);
				Object srcValue = field.get(src);
				field.set(dest, srcValue);
			}
		}, COPYABLE_FIELDS);
	}

742 743 744 745 746 747 748 749 750
	/**
	 * Clear the internal method/field cache.
	 * @since 4.2.4
	 */
	public static void clearCache() {
		declaredMethodsCache.clear();
		declaredFieldsCache.clear();
	}

751 752 753 754

	/**
	 * Action to take on each method.
	 */
755
	public interface MethodCallback {
756 757 758 759 760 761 762 763

		/**
		 * Perform an operation using the given method.
		 * @param method the method to operate on
		 */
		void doWith(Method method) throws IllegalArgumentException, IllegalAccessException;
	}

J
Juergen Hoeller 已提交
764

765
	/**
S
Sam Brannen 已提交
766
	 * Callback optionally used to filter methods to be operated on by a method callback.
767
	 */
768
	public interface MethodFilter {
769 770 771 772 773 774 775 776

		/**
		 * Determine whether the given method matches.
		 * @param method the method to check
		 */
		boolean matches(Method method);
	}

777

778 779 780
	/**
	 * Callback interface invoked on each field in the hierarchy.
	 */
781
	public interface FieldCallback {
782 783 784 785 786 787 788 789

		/**
		 * Perform an operation using the given field.
		 * @param field the field to operate on
		 */
		void doWith(Field field) throws IllegalArgumentException, IllegalAccessException;
	}

J
Juergen Hoeller 已提交
790

791
	/**
J
Juergen Hoeller 已提交
792
	 * Callback optionally used to filter fields to be operated on by a field callback.
793
	 */
794
	public interface FieldFilter {
795 796 797 798 799 800 801 802 803 804 805 806 807

		/**
		 * Determine whether the given field matches.
		 * @param field the field to check
		 */
		boolean matches(Field field);
	}


	/**
	 * Pre-built FieldFilter that matches all non-static, non-final fields.
	 */
	public static FieldFilter COPYABLE_FIELDS = new FieldFilter() {
808

809
		@Override
810
		public boolean matches(Field field) {
811
			return !(Modifier.isStatic(field.getModifiers()) || Modifier.isFinal(field.getModifiers()));
812 813 814
		}
	};

815

816 817 818 819 820
	/**
	 * Pre-built MethodFilter that matches all non-bridge methods.
	 */
	public static MethodFilter NON_BRIDGED_METHODS = new MethodFilter() {

821
		@Override
822 823 824 825 826
		public boolean matches(Method method) {
			return !method.isBridge();
		}
	};

827 828 829

	/**
	 * Pre-built MethodFilter that matches all non-bridge methods
830
	 * which are not declared on {@code java.lang.Object}.
831 832 833
	 */
	public static MethodFilter USER_DECLARED_METHODS = new MethodFilter() {

834
		@Override
835 836 837 838 839
		public boolean matches(Method method) {
			return (!method.isBridge() && method.getDeclaringClass() != Object.class);
		}
	};

840
}