Minor Update

- Added code to simplify getting classes whose fully qualified names might change
This commit is contained in:
Gabriel Tofvesson 2017-01-18 17:12:14 +04:00
parent 372acd1f7e
commit 93480ae071
2 changed files with 52 additions and 5 deletions

5
.idea/misc.xml generated
View File

@ -1,6 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" default="false" project-jdk-name="1.8 (1)" project-jdk-type="JavaSDK">
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" default="false" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -126,6 +126,26 @@ public final class SafeReflection {
return null;
}
/**
* Finds first available class with name given by array elements. (Useful when dealing with backward-compatibility and cross-version support).
* @param possibleNames Classes to look for (fully qualified class names).
* @return First existing class or null if no class was found.
*/
public static Class<?> forNames(String... possibleNames){
for(String s : possibleNames) try{ return Class.forName(s); }catch(Exception e){}
return null;
}
/**
* Gets the first existing instance of a class with a given fully qualified name.
* @param possibleNames Names to search through.
* @return Position in the array referring to the first existing class.
*/
public static int forNamesPos(String... possibleNames){
for(int i = 0; i<possibleNames.length; ++i) try{ Class.forName(possibleNames[i]); return i; }catch(Exception e){}
return -1;
}
/**
* Finds the first method available with the specified name from the class.
* Meant to be used in cases where a class only has one version of a method.
@ -220,6 +240,7 @@ public final class SafeReflection {
public static <T extends Enum<T>> T customEnum(Class<T> clazz, boolean addToValuesArray, String name, EnumDefinition def){
T u;
try {
if(def==null) def = new EnumDefinition();
// Get a reference to the static method values() and get values
Method v = clazz.getDeclaredMethod("values");
unsafe.putBoolean(v, override, true);
@ -397,9 +418,34 @@ public final class SafeReflection {
}
}
/**
* Gets the class that called the method where this is called from.
* @return Class from which your method was called.
*/
public static Class<?> getCallerClass(){
ArrayList<StackTraceElement> s = getStacktraceWithoutReflection();
try { return Class.forName(s.get(s.size()==2?1:2).getClassName()); } catch (ClassNotFoundException e) { }
assert false:"Unreachable code reached";
return null;
}
public static Method getCallerMethod(){
ArrayList<StackTraceElement> s = getStacktraceWithoutReflection();
try{
Method m = SafeReflection.class.getDeclaredMethod("getCallerMethod");
return null;
}catch(Exception e){}
return null;
}
/**
* Get a stacktrace without listing reflection methods.
* @return Ordered list of stacktrace without method reflections steps.
*/
public static ArrayList<StackTraceElement> getStacktraceWithoutReflection(){
ArrayList<StackTraceElement> s = new ArrayList<StackTraceElement>();
StackTraceElement[] s1 = new Exception().getStackTrace();
StackTraceElement[] s1 = Thread.currentThread().getStackTrace();
Collections.addAll(s, s1);
s.remove(0);
Iterator<StackTraceElement> i = s.iterator();
@ -410,9 +456,7 @@ public final class SafeReflection {
|| s2.contains(version+".DelegatingMethodAccessorImpl.invoke"))
i.remove();
}
try { return Class.forName(s.get(s.size()==1?0:1).getClassName()); } catch (ClassNotFoundException e) { }
assert false:"Unreachable code reached";
return null;
return s;
}
}