com.pholser.junit.quickcheck.internal.Reflection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-quickcheck-core Show documentation
Show all versions of junit-quickcheck-core Show documentation
Property-based testing, JUnit-style: core functionality
/*
The MIT License
Copyright (c) 2010-2017 Paul R. Holser, Jr.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.pholser.junit.quickcheck.internal;
import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedArrayType;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.AnnotatedParameterizedType;
import java.lang.reflect.AnnotatedType;
import java.lang.reflect.AnnotatedWildcardType;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.security.PrivilegedAction;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.javaruntype.type.Type;
import static java.lang.reflect.Modifier.*;
import static java.security.AccessController.*;
import static java.util.Arrays.*;
import static java.util.Collections.*;
import static java.util.stream.Collectors.*;
public final class Reflection {
private static final Map, Class>> PRIMITIVES = new HashMap<>(16);
static {
PRIMITIVES.put(Boolean.TYPE, Boolean.class);
PRIMITIVES.put(Byte.TYPE, Byte.class);
PRIMITIVES.put(Character.TYPE, Character.class);
PRIMITIVES.put(Double.TYPE, Double.class);
PRIMITIVES.put(Float.TYPE, Float.class);
PRIMITIVES.put(Integer.TYPE, Integer.class);
PRIMITIVES.put(Long.TYPE, Long.class);
PRIMITIVES.put(Short.TYPE, Short.class);
}
private Reflection() {
throw new UnsupportedOperationException();
}
public static Class> maybeWrap(Class> clazz) {
Class> wrapped = PRIMITIVES.get(clazz);
return wrapped == null ? clazz : wrapped;
}
public static Constructor findConstructor(Class type, Class>... parameterTypes) {
try {
return type.getConstructor(parameterTypes);
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static Constructor findDeclaredConstructor(Class type, Class>... parameterTypes) {
try {
Constructor ctor = type.getDeclaredConstructor(parameterTypes);
ctor.setAccessible(true);
return ctor;
} catch (Exception ex) {
throw reflectionException(ex);
}
}
@SuppressWarnings("unchecked")
public static Constructor singleAccessibleConstructor(Class type) {
Constructor>[] constructors = type.getConstructors();
if (constructors.length != 1)
throw new ReflectionException(type + " needs a single accessible constructor");
return (Constructor) constructors[0];
}
public static T instantiate(Class clazz) {
try {
return clazz.newInstance();
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static T instantiate(Constructor ctor, Object... args) {
try {
return ctor.newInstance(args);
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static Set> supertypes(Type> bottom) {
Set> supertypes = new HashSet<>();
supertypes.add(bottom);
supertypes.addAll(bottom.getAllTypesAssignableFromThis());
return supertypes;
}
public static Object defaultValueOf(Class extends Annotation> annotationType, String attribute) {
try {
return annotationType.getMethod(attribute).getDefaultValue();
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static List allAnnotations(AnnotatedElement e) {
List thisAnnotations = nonSystemAnnotations(e);
List annotations = new ArrayList<>();
for (Annotation each : thisAnnotations) {
annotations.add(each);
annotations.addAll(allAnnotations(each.annotationType()));
}
return annotations;
}
public static List allAnnotationsByType(AnnotatedElement e, Class type) {
List annotations = new ArrayList<>();
Collections.addAll(annotations, e.getAnnotationsByType(type));
List thisAnnotations = nonSystemAnnotations(e);
for (Annotation each : thisAnnotations)
annotations.addAll(allAnnotationsByType(each.annotationType(), type));
return annotations;
}
public static Method findMethod(Class> target, String methodName, Class>... argTypes) {
try {
return target.getMethod(methodName, argTypes);
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static Object invoke(Method method, Object target, Object... args) {
try {
return method.invoke(target, args);
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static Field findField(Class> type, String fieldName) {
try {
return type.getDeclaredField(fieldName);
} catch (NoSuchFieldException ex) {
throw reflectionException(ex);
}
}
public static List allDeclaredFieldsOf(Class> type) {
List allFields = new ArrayList<>();
for (Class> c = type; c != null; c = c.getSuperclass())
Collections.addAll(allFields, c.getDeclaredFields());
List results =
allFields.stream()
.filter(f -> !f.isSynthetic())
.collect(toList());
results.forEach(f -> f.setAccessible(true));
return results;
}
public static void setField(
Field field,
Object target,
Object value,
boolean suppressProtection) {
doPrivileged((PrivilegedAction) () -> {
field.setAccessible(suppressProtection);
return null;
});
try {
field.set(target, value);
} catch (Exception ex) {
throw reflectionException(ex);
}
}
public static Method singleAbstractMethodOf(Class> rawClass) {
if (!rawClass.isInterface())
return null;
int abstractCount = 0;
Method singleAbstractMethod = null;
for (Method each : rawClass.getMethods()) {
if (isAbstract(each.getModifiers()) && !overridesJavaLangObjectMethod(each)) {
singleAbstractMethod = each;
++abstractCount;
}
}
return abstractCount == 1 ? singleAbstractMethod : null;
}
private static boolean overridesJavaLangObjectMethod(Method method) {
return isEquals(method) || isHashCode(method) || isToString(method);
}
private static boolean isEquals(Method method) {
return "equals".equals(method.getName())
&& method.getParameterTypes().length == 1
&& Object.class.equals(method.getParameterTypes()[0]);
}
private static boolean isHashCode(Method method) {
return "hashCode".equals(method.getName())
&& method.getParameterTypes().length == 0;
}
private static boolean isToString(Method method) {
return "toString".equals(method.getName())
&& method.getParameterTypes().length == 0;
}
public static RuntimeException reflectionException(Exception ex) {
if (ex instanceof InvocationTargetException)
return new ReflectionException(((InvocationTargetException) ex).getTargetException());
if (ex instanceof RuntimeException)
return (RuntimeException) ex;
return new ReflectionException(ex);
}
private static List nonSystemAnnotations(AnnotatedElement e) {
return stream(e.getAnnotations())
.filter(a -> !a.annotationType().getName().startsWith("java.lang.annotation."))
.filter(a -> !a.annotationType().getName().startsWith("kotlin."))
.collect(toList());
}
public static List annotatedComponentTypes(AnnotatedType annotatedType) {
if (annotatedType instanceof AnnotatedParameterizedType)
return asList(((AnnotatedParameterizedType) annotatedType).getAnnotatedActualTypeArguments());
if (annotatedType instanceof AnnotatedArrayType)
return singletonList(((AnnotatedArrayType) annotatedType).getAnnotatedGenericComponentType());
if (annotatedType instanceof AnnotatedWildcardType) {
AnnotatedWildcardType wildcard = (AnnotatedWildcardType) annotatedType;
if (wildcard.getAnnotatedLowerBounds().length > 0)
return singletonList(wildcard.getAnnotatedLowerBounds()[0]);
return asList(wildcard.getAnnotatedUpperBounds());
}
return emptyList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy