ReflectionUtils.java 28.8 KB
Newer Older
1
/*
2
 * Copyright 2002-2016 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
	 */
	private static final Map<Class<?>, Method[]> declaredMethodsCache =
64
			new ConcurrentReferenceHashMap<>(256);
65

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

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
	 * InvocationTargetException with such a root cause. Throws an
268 269
	 * IllegalStateException with an appropriate message or
	 * UndeclaredThrowableException otherwise.
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
	 * @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;
		}
285
		throw new UndeclaredThrowableException(ex);
286 287 288
	}

	/**
289 290
	 * 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 已提交
291
	 * <p>Throws the underlying RuntimeException or Error in case of such a root
292
	 * cause. Throws an UndeclaredThrowableException otherwise.
293 294 295 296 297 298 299 300
	 * @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 已提交
301 302 303
	 * <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.
304 305 306
	 * <p>Rethrows the underlying exception cast to a {@link RuntimeException} or
	 * {@link Error} if appropriate; otherwise, throws an
	 * {@link UndeclaredThrowableException}.
307 308 309 310 311 312 313 314 315 316
	 * @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;
		}
317
		throw new UndeclaredThrowableException(ex);
318 319 320 321
	}

	/**
	 * Rethrow the given {@link Throwable exception}, which is presumably the
J
Juergen Hoeller 已提交
322 323 324
	 * <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 已提交
325
	 * <p>Rethrows the underlying exception cast to an {@link Exception} or
326 327
	 * {@link Error} if appropriate; otherwise, throws an
	 * {@link UndeclaredThrowableException}.
328 329 330 331 332 333 334 335 336 337
	 * @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;
		}
338
		throw new UndeclaredThrowableException(ex);
339 340 341
	}

	/**
342
	 * Determine whether the given method explicitly declares the given
J
Juergen Hoeller 已提交
343 344
	 * exception or one of its superclasses, which means that an exception
	 * of that type can be propagated as-is within a reflective invocation.
345 346
	 * @param method the declaring method
	 * @param exceptionType the exception to throw
347 348
	 * @return {@code true} if the exception can be thrown as-is;
	 * {@code false} if it needs to be wrapped
349
	 */
350
	public static boolean declaresException(Method method, Class<?> exceptionType) {
351
		Assert.notNull(method, "Method must not be null");
352 353
		Class<?>[] declaredExceptions = method.getExceptionTypes();
		for (Class<?> declaredException : declaredExceptions) {
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
			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 已提交
372
	 * @see java.lang.Object#equals(Object)
373 374 375 376 377
	 */
	public static boolean isEqualsMethod(Method method) {
		if (method == null || !method.getName().equals("equals")) {
			return false;
		}
378
		Class<?>[] paramTypes = method.getParameterTypes();
379 380 381 382 383
		return (paramTypes.length == 1 && paramTypes[0] == Object.class);
	}

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

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

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

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

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

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

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

479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
	/**
	 * 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);
			}
		}
	}

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

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

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

562
	/**
563 564 565 566
	 * 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
567
	 */
568
	public static Method[] getUniqueDeclaredMethods(Class<?> leafClass) {
569
		final List<Method> methods = new ArrayList<>(32);
570
		doWithMethods(leafClass, new MethodCallback() {
571
			@Override
572 573 574 575 576 577
			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 已提交
578
						// Is this a covariant return type situation?
579 580 581
						if (existingMethod.getReturnType() != method.getReturnType() &&
								existingMethod.getReturnType().isAssignableFrom(method.getReturnType())) {
							methodBeingOverriddenWithCovariantReturnType = existingMethod;
J
Juergen Hoeller 已提交
582 583
						}
						else {
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
							knownSignature = true;
						}
						break;
					}
				}
				if (methodBeingOverriddenWithCovariantReturnType != null) {
					methods.remove(methodBeingOverriddenWithCovariantReturnType);
				}
				if (!knownSignature && !isCglibRenamedMethod(method)) {
					methods.add(method);
				}
			}
		});
		return methods.toArray(new Method[methods.size()]);
	}

600
	/**
601
	 * This variant retrieves {@link Class#getDeclaredMethods()} from a local cache
602
	 * in order to avoid the JVM's SecurityManager check and defensive array copying.
603 604 605 606 607
	 * 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()
608 609 610 611
	 */
	private static Method[] getDeclaredMethods(Class<?> clazz) {
		Method[] result = declaredMethodsCache.get(clazz);
		if (result == null) {
612 613 614 615 616 617 618 619 620 621 622 623 624 625
			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;
			}
626
			declaredMethodsCache.put(clazz, (result.length == 0 ? NO_METHODS : result));
627 628 629 630
		}
		return result;
	}

631 632 633 634 635 636
	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) {
637
						result = new LinkedList<>();
638 639 640 641 642 643 644 645
					}
					result.add(ifcMethod);
				}
			}
		}
		return result;
	}

646
	/**
647 648
	 * Invoke the given callback on all fields in the target class, going up the
	 * class hierarchy to get all declared fields.
649
	 * @param clazz the target class to analyze
650
	 * @param fc the callback to invoke for each field
651 652
	 * @since 4.2
	 * @see #doWithFields
653
	 */
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
	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) {
672
		doWithFields(clazz, fc, null);
673 674 675
	}

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

703 704 705 706 707 708 709 710 711 712 713
	/**
	 * 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();
714
			declaredFieldsCache.put(clazz, (result.length == 0 ? NO_FIELDS : result));
715 716 717 718
		}
		return result;
	}

719 720 721 722 723
	/**
	 * 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.
	 */
724
	public static void shallowCopyFieldState(final Object src, final Object dest) {
725 726 727 728 729 730 731
		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 已提交
732 733
			throw new IllegalArgumentException("Destination class [" + dest.getClass().getName() +
					"] must be same or subclass as source class [" + src.getClass().getName() + "]");
734 735
		}
		doWithFields(src.getClass(), new FieldCallback() {
736
			@Override
737 738 739 740 741 742 743 744
			public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
				makeAccessible(field);
				Object srcValue = field.get(src);
				field.set(dest, srcValue);
			}
		}, COPYABLE_FIELDS);
	}

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

754 755 756 757

	/**
	 * Action to take on each method.
	 */
758
	@FunctionalInterface
759
	public interface MethodCallback {
760 761 762 763 764 765 766 767

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

J
Juergen Hoeller 已提交
768

769
	/**
S
Sam Brannen 已提交
770
	 * Callback optionally used to filter methods to be operated on by a method callback.
771
	 */
772
	@FunctionalInterface
773
	public interface MethodFilter {
774 775 776 777 778 779 780 781

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

782

783 784 785
	/**
	 * Callback interface invoked on each field in the hierarchy.
	 */
786
	@FunctionalInterface
787
	public interface FieldCallback {
788 789 790 791 792 793 794 795

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

J
Juergen Hoeller 已提交
796

797
	/**
J
Juergen Hoeller 已提交
798
	 * Callback optionally used to filter fields to be operated on by a field callback.
799
	 */
800
	@FunctionalInterface
801
	public interface FieldFilter {
802 803 804 805 806 807 808 809 810 811 812 813

		/**
		 * 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.
	 */
814
	public static final FieldFilter COPYABLE_FIELDS = new FieldFilter() {
815

816
		@Override
817
		public boolean matches(Field field) {
818
			return !(Modifier.isStatic(field.getModifiers()) || Modifier.isFinal(field.getModifiers()));
819 820 821
		}
	};

822

823 824 825
	/**
	 * Pre-built MethodFilter that matches all non-bridge methods.
	 */
826
	public static final MethodFilter NON_BRIDGED_METHODS = new MethodFilter() {
827

828
		@Override
829 830 831 832 833
		public boolean matches(Method method) {
			return !method.isBridge();
		}
	};

834 835 836

	/**
	 * Pre-built MethodFilter that matches all non-bridge methods
837
	 * which are not declared on {@code java.lang.Object}.
838
	 */
839
	public static final MethodFilter USER_DECLARED_METHODS = new MethodFilter() {
840

841
		@Override
842 843 844 845 846
		public boolean matches(Method method) {
			return (!method.isBridge() && method.getDeclaringClass() != Object.class);
		}
	};

847
}