ReflectionUtils.java 25.5 KB
Newer Older
1
/*
J
Juergen Hoeller 已提交
2
 * Copyright 2002-2014 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 28
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
29
import java.util.Map;
30
import java.util.regex.Pattern;
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$";

J
Juergen Hoeller 已提交
54 55 56 57
	/**
	 * Pattern for detecting CGLIB-renamed methods.
	 * @see #isCglibRenamedMethod
	 */
58
	private static final Pattern CGLIB_RENAMED_METHOD_PATTERN = Pattern.compile("(.+)\\$\\d+");
59

60 61 62 63 64 65
	/**
	 * Cache for {@link Class#getDeclaredMethods()}, allowing for fast resolution.
	 */
	private static final Map<Class<?>, Method[]> declaredMethodsCache =
			new ConcurrentReferenceHashMap<Class<?>, Method[]>(256);

J
Juergen Hoeller 已提交
66

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

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

	/**
104
	 * Set the field represented by the supplied {@link Field field object} on the
105
	 * specified {@link Object target object} to the specified {@code value}.
106 107 108
	 * 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)}.
109 110
	 * @param field the field to set
	 * @param target the target object on which to set the field
111
	 * @param value the value to set; may be {@code null}
112 113 114 115 116 117 118
	 */
	public static void setField(Field field, Object target, Object value) {
		try {
			field.set(target, value);
		}
		catch (IllegalAccessException ex) {
			handleReflectionException(ex);
J
Juergen Hoeller 已提交
119 120
			throw new IllegalStateException(
					"Unexpected reflection exception - " + ex.getClass().getName() + ": " + ex.getMessage());
121 122 123 124
		}
	}

	/**
125 126 127 128 129
	 * 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)}.
130 131 132 133 134 135 136 137 138 139
	 * @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);
140 141
			throw new IllegalStateException(
					"Unexpected reflection exception - " + ex.getClass().getName() + ": " + ex.getMessage());
142 143 144 145
		}
	}

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

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

	/**
185
	 * Invoke the specified {@link Method} against the supplied target object with no arguments.
186
	 * The target object can be {@code null} when invoking a static {@link Method}.
187
	 * <p>Thrown exceptions are handled via a call to {@link #handleReflectionException}.
188 189 190 191 192 193
	 * @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) {
194
		return invokeMethod(method, target, new Object[0]);
195 196 197
	}

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

	/**
218 219
	 * Invoke the specified JDBC API {@link Method} against the supplied target
	 * object with no arguments.
220 221 222 223 224 225 226
	 * @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 {
227
		return invokeJdbcMethod(method, target, new Object[0]);
228 229 230
	}

	/**
231 232
	 * Invoke the specified JDBC API {@link Method} against the supplied target
	 * object with the supplied arguments.
233 234
	 * @param method the method to invoke
	 * @param target the target object to invoke the method on
235
	 * @param args the invocation arguments (may be {@code null})
236 237 238 239
	 * @return the invocation result, if any
	 * @throws SQLException the JDBC API SQLException to rethrow (if any)
	 * @see #invokeMethod(java.lang.reflect.Method, Object, Object[])
	 */
240
	public static Object invokeJdbcMethod(Method method, Object target, Object... args) throws SQLException {
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
		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");
	}

	/**
257 258
	 * 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 已提交
259
	 * <p>Throws the underlying RuntimeException or Error in case of an
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
	 * 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;
		}
277
		throw new UndeclaredThrowableException(ex);
278 279 280
	}

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

	/**
	 * Rethrow the given {@link Throwable exception}, which is presumably the
314 315 316
	 * <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 已提交
317
	 * <p>Rethrows the underlying exception cast to an {@link Exception} or
318 319 320 321 322 323 324 325 326 327 328 329
	 * {@link Error} if appropriate; otherwise, throws an
	 * {@link IllegalStateException}.
	 * @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;
		}
330
		throw new UndeclaredThrowableException(ex);
331 332 333
	}

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

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

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

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

406
	/**
J
Juergen Hoeller 已提交
407 408
	 * Determine whether the given method is a CGLIB 'renamed' method,
	 * following the pattern "CGLIB$methodName$0".
409
	 * @param renamedMethod the method to check
410
	 * @see org.springframework.cglib.proxy.Enhancer#rename
411 412
	 */
	public static boolean isCglibRenamedMethod(Method renamedMethod) {
413 414 415
		String name = renamedMethod.getName();
		return (name.startsWith(CGLIB_RENAMED_METHOD_PREFIX) &&
				CGLIB_RENAMED_METHOD_PATTERN.matcher(name.substring(CGLIB_RENAMED_METHOD_PREFIX.length())).matches());
416 417
	}

418
	/**
419
	 * Make the given field accessible, explicitly setting it accessible if
420
	 * necessary. The {@code setAccessible(true)} method is only called
421 422
	 * when actually necessary, to avoid unnecessary conflicts with a JVM
	 * SecurityManager (if active).
423 424 425 426
	 * @param field the field to make accessible
	 * @see java.lang.reflect.Field#setAccessible
	 */
	public static void makeAccessible(Field field) {
427 428
		if ((!Modifier.isPublic(field.getModifiers()) || !Modifier.isPublic(field.getDeclaringClass().getModifiers()) ||
				Modifier.isFinal(field.getModifiers())) && !field.isAccessible()) {
429 430 431 432 433
			field.setAccessible(true);
		}
	}

	/**
434
	 * Make the given method 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 method the method to make accessible
	 * @see java.lang.reflect.Method#setAccessible
	 */
	public static void makeAccessible(Method method) {
442 443
		if ((!Modifier.isPublic(method.getModifiers()) || !Modifier.isPublic(method.getDeclaringClass().getModifiers())) &&
				!method.isAccessible()) {
444 445 446 447 448
			method.setAccessible(true);
		}
	}

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

	/**
464 465
	 * Perform the given callback operation on all matching methods of the given
	 * class and superclasses.
J
Juergen Hoeller 已提交
466
	 * <p>The same named method occurring on subclass and superclass will appear
467
	 * twice, unless excluded by a {@link MethodFilter}.
468
	 * @param clazz class to start looking at
469 470 471
	 * @param mc the callback to invoke for each method
	 * @see #doWithMethods(Class, MethodCallback, MethodFilter)
	 */
472 473
	public static void doWithMethods(Class<?> clazz, MethodCallback mc) throws IllegalArgumentException {
		doWithMethods(clazz, mc, null);
474 475 476
	}

	/**
477
	 * Perform the given callback operation on all matching methods of the given
478
	 * class and superclasses (or given interface and super-interfaces).
J
Juergen Hoeller 已提交
479
	 * <p>The same named method occurring on subclass and superclass will appear
480
	 * twice, unless excluded by the specified {@link MethodFilter}.
481
	 * @param clazz class to start looking at
482 483 484
	 * @param mc the callback to invoke for each method
	 * @param mf the filter that determines the methods to apply the callback to
	 */
485
	public static void doWithMethods(Class<?> clazz, MethodCallback mc, MethodFilter mf)
486 487 488
			throws IllegalArgumentException {

		// Keep backing up the inheritance hierarchy.
489
		Method[] methods = getDeclaredMethods(clazz);
490 491 492 493 494 495 496 497
		for (Method method : methods) {
			if (mf != null && !mf.matches(method)) {
				continue;
			}
			try {
				mc.doWith(method);
			}
			catch (IllegalAccessException ex) {
J
Juergen Hoeller 已提交
498
				throw new IllegalStateException("Shouldn't be illegal to access method '" + method.getName() + "': " + ex);
499 500 501 502 503 504 505 506
			}
		}
		if (clazz.getSuperclass() != null) {
			doWithMethods(clazz.getSuperclass(), mc, mf);
		}
		else if (clazz.isInterface()) {
			for (Class<?> superIfc : clazz.getInterfaces()) {
				doWithMethods(superIfc, mc, mf);
507
			}
508
		}
509 510 511
	}

	/**
512 513
	 * Get all declared methods on the leaf class and all superclasses. Leaf
	 * class methods are included first.
514
	 */
515
	public static Method[] getAllDeclaredMethods(Class<?> leafClass) throws IllegalArgumentException {
J
Juergen Hoeller 已提交
516
		final List<Method> methods = new ArrayList<Method>(32);
517
		doWithMethods(leafClass, new MethodCallback() {
518
			@Override
519
			public void doWith(Method method) {
J
Juergen Hoeller 已提交
520
				methods.add(method);
521 522
			}
		});
J
Juergen Hoeller 已提交
523
		return methods.toArray(new Method[methods.size()]);
524 525
	}

526 527 528 529 530 531 532 533
	/**
	 * 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.
	 */
	public static Method[] getUniqueDeclaredMethods(Class<?> leafClass) throws IllegalArgumentException {
		final List<Method> methods = new ArrayList<Method>(32);
		doWithMethods(leafClass, new MethodCallback() {
534
			@Override
535 536 537 538 539 540
			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 已提交
541
						// Is this a covariant return type situation?
542 543 544
						if (existingMethod.getReturnType() != method.getReturnType() &&
								existingMethod.getReturnType().isAssignableFrom(method.getReturnType())) {
							methodBeingOverriddenWithCovariantReturnType = existingMethod;
J
Juergen Hoeller 已提交
545 546
						}
						else {
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
							knownSignature = true;
						}
						break;
					}
				}
				if (methodBeingOverriddenWithCovariantReturnType != null) {
					methods.remove(methodBeingOverriddenWithCovariantReturnType);
				}
				if (!knownSignature && !isCglibRenamedMethod(method)) {
					methods.add(method);
				}
			}
		});
		return methods.toArray(new Method[methods.size()]);
	}

563 564 565 566 567 568 569 570 571 572 573 574 575
	/**
	 * This method retrieves {@link Class#getDeclaredMethods()} from a local cache
	 * in order to avoid the JVM's SecurityManager check and defensive array copying.
	 */
	private static Method[] getDeclaredMethods(Class<?> clazz) {
		Method[] result = declaredMethodsCache.get(clazz);
		if (result == null) {
			result = clazz.getDeclaredMethods();
			declaredMethodsCache.put(clazz, result);
		}
		return result;
	}

576
	/**
577 578
	 * Invoke the given callback on all fields in the target class, going up the
	 * class hierarchy to get all declared fields.
579
	 * @param clazz the target class to analyze
580 581
	 * @param fc the callback to invoke for each field
	 */
582 583
	public static void doWithFields(Class<?> clazz, FieldCallback fc) throws IllegalArgumentException {
		doWithFields(clazz, fc, null);
584 585 586
	}

	/**
587 588
	 * Invoke the given callback on all fields in the target class, going up the
	 * class hierarchy to get all declared fields.
589
	 * @param clazz the target class to analyze
590 591 592
	 * @param fc the callback to invoke for each field
	 * @param ff the filter that determines the fields to apply the callback to
	 */
593
	public static void doWithFields(Class<?> clazz, FieldCallback fc, FieldFilter ff)
594 595 596
			throws IllegalArgumentException {

		// Keep backing up the inheritance hierarchy.
597
		Class<?> targetClass = clazz;
598 599
		do {
			Field[] fields = targetClass.getDeclaredFields();
J
Juergen Hoeller 已提交
600
			for (Field field : fields) {
601
				// Skip static and final fields.
J
Juergen Hoeller 已提交
602
				if (ff != null && !ff.matches(field)) {
603 604 605
					continue;
				}
				try {
J
Juergen Hoeller 已提交
606
					fc.doWith(field);
607 608
				}
				catch (IllegalAccessException ex) {
J
Juergen Hoeller 已提交
609
					throw new IllegalStateException("Shouldn't be illegal to access field '" + field.getName() + "': " + ex);
610 611 612
				}
			}
			targetClass = targetClass.getSuperclass();
613 614
		}
		while (targetClass != null && targetClass != Object.class);
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
	}

	/**
	 * 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.
	 * @throws IllegalArgumentException if the arguments are incompatible
	 */
	public static void shallowCopyFieldState(final Object src, final Object dest) throws IllegalArgumentException {
		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 已提交
631 632
			throw new IllegalArgumentException("Destination class [" + dest.getClass().getName() +
					"] must be same or subclass as source class [" + src.getClass().getName() + "]");
633 634
		}
		doWithFields(src.getClass(), new FieldCallback() {
635
			@Override
636 637 638 639 640 641 642 643 644 645 646 647
			public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
				makeAccessible(field);
				Object srcValue = field.get(src);
				field.set(dest, srcValue);
			}
		}, COPYABLE_FIELDS);
	}


	/**
	 * Action to take on each method.
	 */
648
	public interface MethodCallback {
649 650 651 652 653 654 655 656

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

J
Juergen Hoeller 已提交
657

658
	/**
S
Sam Brannen 已提交
659
	 * Callback optionally used to filter methods to be operated on by a method callback.
660
	 */
661
	public interface MethodFilter {
662 663 664 665 666 667 668 669

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

670

671 672 673
	/**
	 * Callback interface invoked on each field in the hierarchy.
	 */
674
	public interface FieldCallback {
675 676 677 678 679 680 681 682

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

J
Juergen Hoeller 已提交
683

684
	/**
J
Juergen Hoeller 已提交
685
	 * Callback optionally used to filter fields to be operated on by a field callback.
686
	 */
687
	public interface FieldFilter {
688 689 690 691 692 693 694 695 696 697 698 699 700

		/**
		 * 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() {
701

702
		@Override
703
		public boolean matches(Field field) {
704
			return !(Modifier.isStatic(field.getModifiers()) || Modifier.isFinal(field.getModifiers()));
705 706 707
		}
	};

708

709 710 711 712 713
	/**
	 * Pre-built MethodFilter that matches all non-bridge methods.
	 */
	public static MethodFilter NON_BRIDGED_METHODS = new MethodFilter() {

714
		@Override
715 716 717 718 719
		public boolean matches(Method method) {
			return !method.isBridge();
		}
	};

720 721 722

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

727
		@Override
728 729 730 731 732
		public boolean matches(Method method) {
			return (!method.isBridge() && method.getDeclaringClass() != Object.class);
		}
	};

733
}