Major fix
- Merged SafeReflection
This commit is contained in:
parent
fec11f3a47
commit
cf32cf3ae3
@ -3,9 +3,7 @@ package com.tofvesson.reflection;
|
|||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import sun.misc.Unsafe;
|
import sun.misc.Unsafe;
|
||||||
import sun.reflect.ConstructorAccessor;
|
import sun.reflect.ConstructorAccessor;
|
||||||
|
|
||||||
import java.lang.reflect.Array;
|
import java.lang.reflect.Array;
|
||||||
import java.lang.reflect.Constructor;
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
@ -16,6 +14,19 @@ import java.util.HashMap;
|
|||||||
@SuppressWarnings("unused")
|
@SuppressWarnings("unused")
|
||||||
public class SafeReflection {
|
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.
|
* Gets the constructor from the defined class with the specified parameters.
|
||||||
* @param c Class to get constructor from.
|
* @param c Class to get constructor from.
|
||||||
@ -40,6 +51,7 @@ public class SafeReflection {
|
|||||||
*/
|
*/
|
||||||
public static <T> Constructor<T> getFirstConstructor(Class<T> c){
|
public static <T> Constructor<T> getFirstConstructor(Class<T> c){
|
||||||
try {
|
try {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
Constructor<T> c1 = (Constructor<T>) c.getDeclaredConstructors()[0];
|
Constructor<T> c1 = (Constructor<T>) c.getDeclaredConstructors()[0];
|
||||||
c1.setAccessible(true);
|
c1.setAccessible(true);
|
||||||
return c1;
|
return c1;
|
||||||
@ -47,19 +59,6 @@ public class SafeReflection {
|
|||||||
return null;
|
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.
|
* Gets the method from the defined class by name and parameters.
|
||||||
* Method is accessible.
|
* Method is accessible.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user