Major fix

- Merged SafeReflection
This commit is contained in:
Gabriel Tofvesson 2016-11-13 15:35:30 +01:00
parent fec11f3a47
commit cf32cf3ae3

View File

@ -3,9 +3,7 @@ package com.tofvesson.reflection;
import java.lang.reflect.Constructor;
import sun.misc.Unsafe;
import sun.reflect.ConstructorAccessor;
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.HashMap;
@ -16,6 +14,19 @@ import java.util.HashMap;
@SuppressWarnings("unused")
public class SafeReflection {
private static final Unsafe unsafe;
static{
Unsafe u = null;
try{
Field f = Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
u = (Unsafe) f.get(null);
}catch(Exception ignored){} // Exception is never thrown
unsafe = u;
}
/**
* Gets the constructor from the defined class with the specified parameters.
* @param c Class to get constructor from.
@ -40,6 +51,7 @@ public class SafeReflection {
*/
public static <T> Constructor<T> getFirstConstructor(Class<T> c){
try {
@SuppressWarnings("unchecked")
Constructor<T> c1 = (Constructor<T>) c.getDeclaredConstructors()[0];
c1.setAccessible(true);
return c1;
@ -47,19 +59,6 @@ public class SafeReflection {
return null;
}
private static final Unsafe unsafe;
static{
Unsafe u = null;
try{
Field f = Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
u = (Unsafe) f.get(null);
}catch(Exception ignored){} // Exception is never thrown
unsafe = u;
}
/**
* Gets the method from the defined class by name and parameters.
* Method is accessible.