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

io.neba.core.util.ReflectionUtil Maven / Gradle / Ivy

/*
  Copyright 2013 the original author or authors.

  Licensed under the Apache License, Version 2.0 the "License";
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
 */

package io.neba.core.util;

import java.lang.reflect.Field;
import java.lang.reflect.Member;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.lang.reflect.WildcardType;
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
import java.util.Set;

import static java.lang.reflect.Modifier.isPublic;
import static java.util.Arrays.asList;
import static java.util.Collections.addAll;

/**
 * @author Olaf Otto
 */
public final class ReflectionUtil {
    private static final int DEFAULT_COLLECTION_SIZE = 32;

    /**
     * Resolves the {@link Type} of the lower bound of a single type argument of a
     * {@link ParameterizedType}.
     * 

*

     *   private List<MyModel> myModel -> MyModel.
     *   private Optional<MyModel> myModel -> MyModel.
     * 
* * @param type must not be null. * @return never null. */ public static Type getLowerBoundOfSingleTypeParameter(Type type) { if (type == null) { throw new IllegalArgumentException("Method parameter type must not be null."); } // The generic type may contain the generic type declarations, e.g. List. if (!(type instanceof ParameterizedType)) { throw new IllegalArgumentException("Cannot obtain the component type of " + type + ", it does not declare generic type parameters."); } // Only the ParametrizedType contains reflection information about the actual type. ParameterizedType parameterizedType = (ParameterizedType) type; Type[] typeArguments = parameterizedType.getActualTypeArguments(); // We expect exactly one argument representing the model type. if (typeArguments.length != 1) { signalUnsupportedNumberOfTypeDeclarations(type); } Type typeArgument = typeArguments[0]; // Wildcard type if (typeArgument instanceof WildcardType) { WildcardType wildcardType = (WildcardType) typeArgument; Type[] lowerBounds = wildcardType.getLowerBounds(); if (lowerBounds.length == 0) { throw new IllegalArgumentException("Cannot obtain the generic type of " + type + ", it has a wildcard declaration with an upper" + " bound () and is thus read-only." + " Only simple type parameters (e.g. )" + " or lower bound wildcards (e.g. )" + " are supported."); } typeArgument = lowerBounds[0]; } return typeArgument; } private static void signalUnsupportedNumberOfTypeDeclarations(Type type) { throw new IllegalArgumentException("Cannot obtain the component type of " + type + ", it must have exactly one parameter type, e.g. ."); } /** * Provides an implementation instance for the desired collection type. * Example: If the collection type is {@link List}, a suitable list implementation is instantiated. * * @param collectionType must not be null. * @return never null. Throws an {@link IllegalStateException} * if the collection type is not supported. */ @SuppressWarnings("unchecked") public static > Collection instantiateCollectionType(Class collectionType, int length) { if (collectionType == null) { throw new IllegalArgumentException("Method parameter collectionType must not be null."); } T collection; // This includes java.util.Collection if (collectionType.isAssignableFrom(List.class)) { collection = (T) new ArrayList(length); } else if (collectionType.isAssignableFrom(Set.class)) { collection = (T) new LinkedHashSet(length); } else { throw new IllegalArgumentException("Unable to instantiate a collection of type " + collectionType + ". Only collections assignable from " + List.class + " or " + Set.class + " are supported."); } return collection; } /** * @param type must not be null. * @return whether the given collection type can be instantiated using {@link #instantiateCollectionType(Class)}. */ public static boolean isInstantiableCollectionType(Class type) { if (type == null) { throw new IllegalArgumentException("Method argument type must not be null."); } for (Class supportedType : getInstantiableCollectionTypes()) { if (type.isAssignableFrom(supportedType)) { return true; } } return false; } /** * @return an array of the types a collection type * must be {@link Class#isAssignableFrom(Class) assignable from} in order to be * {@link #isInstantiableCollectionType(Class) instantiable}. */ public static Class[] getInstantiableCollectionTypes() { return new Class[]{List.class, Set.class}; } /** * Creates an instance with a default capacity. * * @see #instantiateCollectionType(Class, int) */ public static > Collection instantiateCollectionType(Class collectionType) { return instantiateCollectionType(collectionType, DEFAULT_COLLECTION_SIZE); } /** * All methods of the given type, its super types and interfaces, starting with the methods of * the given type. * * @param type must not be null. * @return never null but rather an empty list. */ public static List methodsOf(Class type) { if (type == null) { throw new IllegalArgumentException("Method argument type must not be null"); } List methods = new LinkedList<>(); Queue> classes = new LinkedList<>(); classes.add(type); while (!classes.isEmpty()) { Class c = classes.poll(); methods.addAll(asList(c.getDeclaredMethods())); if (c.getSuperclass() != null) { classes.add(c.getSuperclass()); } addAll(classes, c.getInterfaces()); } return methods; } /** * Rerturns the {@link Class#getDeclaredFields() declared field} with the given name. * * @param type must not be null. * @param name must not be null. * @return the field, or null */ public static Field findField(Class type, String name) { if (type == null) { throw new IllegalArgumentException("Method argument type must not be null"); } if (name == null) { throw new IllegalArgumentException("Method argument name must not be null"); } Class c = type; do { for (Field f : c.getDeclaredFields()) { if (name.equals(f.getName())) { return f; } } c = c.getSuperclass(); } while (c != null); return null; } /** * Makes the {@link Field#setAccessible(boolean) accessible} only if it is not. * @param field must not be null. * @return the given field. */ public static Field makeAccessible(Field field) { if (field == null) { throw new IllegalArgumentException("Method argument field must not be null."); } if (isInaccessible(field) && !field.isAccessible()) { field.setAccessible(true); } return field; } /** * Makes the {@link Method#setAccessible(boolean) accessible} only if it is not. * * @param method must not be null. * @return the given method. */ public static Method makeAccessible(Method method) { if (method == null) { throw new IllegalArgumentException("Method argument method must not be null."); } if (isInaccessible(method) && !method.isAccessible()) { method.setAccessible(true); } return method; } private static boolean isInaccessible(Member member) { return !isPublic(member.getModifiers()) || !isPublic(member.getDeclaringClass().getModifiers()); } private ReflectionUtil() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy