You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
189 lines
5.6 KiB
Java
189 lines
5.6 KiB
Java
/*
|
|
* The FML Forge Mod Loader suite. Copyright (C) 2012 cpw
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; either version 2.1 of the License, or any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
package cpw.mods.fml.relauncher;
|
|
|
|
import java.lang.reflect.Field;
|
|
import java.lang.reflect.Method;
|
|
/**
|
|
* Some reflection helper code.
|
|
*
|
|
* @author cpw
|
|
*
|
|
*/
|
|
public class ReflectionHelper
|
|
{
|
|
public static class UnableToFindMethodException extends RuntimeException
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
@SuppressWarnings("unused")
|
|
private String[] methodNames;
|
|
|
|
public UnableToFindMethodException(String[] methodNames, Exception failed)
|
|
{
|
|
super(failed);
|
|
this.methodNames = methodNames;
|
|
}
|
|
|
|
}
|
|
|
|
public static class UnableToFindClassException extends RuntimeException
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
@SuppressWarnings("unused")
|
|
private String[] classNames;
|
|
|
|
public UnableToFindClassException(String[] classNames, Exception err)
|
|
{
|
|
super(err);
|
|
this.classNames = classNames;
|
|
}
|
|
|
|
}
|
|
|
|
public static class UnableToAccessFieldException extends RuntimeException
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
@SuppressWarnings("unused")
|
|
private String[] fieldNameList;
|
|
|
|
public UnableToAccessFieldException(String[] fieldNames, Exception e)
|
|
{
|
|
super(e);
|
|
this.fieldNameList = fieldNames;
|
|
}
|
|
}
|
|
|
|
public static class UnableToFindFieldException extends RuntimeException
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
@SuppressWarnings("unused")
|
|
private String[] fieldNameList;
|
|
public UnableToFindFieldException(String[] fieldNameList, Exception e)
|
|
{
|
|
super(e);
|
|
this.fieldNameList = fieldNameList;
|
|
}
|
|
}
|
|
|
|
public static Field findField(Class<?> clazz, String... fieldNames)
|
|
{
|
|
Exception failed = null;
|
|
for (String fieldName : fieldNames)
|
|
{
|
|
try
|
|
{
|
|
Field f = clazz.getDeclaredField(fieldName);
|
|
f.setAccessible(true);
|
|
return f;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
failed = e;
|
|
}
|
|
}
|
|
throw new UnableToFindFieldException(fieldNames, failed);
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public static <T, E> T getPrivateValue(Class <? super E > classToAccess, E instance, int fieldIndex)
|
|
{
|
|
try
|
|
{
|
|
Field f = classToAccess.getDeclaredFields()[fieldIndex];
|
|
f.setAccessible(true);
|
|
return (T) f.get(instance);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new UnableToAccessFieldException(new String[0], e);
|
|
}
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public static <T, E> T getPrivateValue(Class <? super E > classToAccess, E instance, String... fieldNames)
|
|
{
|
|
try
|
|
{
|
|
return (T) findField(classToAccess, fieldNames).get(instance);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new UnableToAccessFieldException(fieldNames, e);
|
|
}
|
|
}
|
|
|
|
public static <T, E> void setPrivateValue(Class <? super T > classToAccess, T instance, E value, int fieldIndex)
|
|
{
|
|
try
|
|
{
|
|
Field f = classToAccess.getDeclaredFields()[fieldIndex];
|
|
f.setAccessible(true);
|
|
f.set(instance, value);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new UnableToAccessFieldException(new String[0] , e);
|
|
}
|
|
}
|
|
|
|
public static <T, E> void setPrivateValue(Class <? super T > classToAccess, T instance, E value, String... fieldNames)
|
|
{
|
|
try
|
|
{
|
|
findField(classToAccess, fieldNames).set(instance, value);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new UnableToAccessFieldException(fieldNames, e);
|
|
}
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public static Class<? super Object> getClass(ClassLoader loader, String... classNames)
|
|
{
|
|
Exception err = null;
|
|
for (String className : classNames)
|
|
{
|
|
try
|
|
{
|
|
return (Class<? super Object>) Class.forName(className, false, loader);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
err = e;
|
|
}
|
|
}
|
|
|
|
throw new UnableToFindClassException(classNames, err);
|
|
}
|
|
|
|
|
|
public static <E> Method findMethod(Class<? super E> clazz, E instance, String[] methodNames, Class<?>... methodTypes)
|
|
{
|
|
Exception failed = null;
|
|
for (String methodName : methodNames)
|
|
{
|
|
try
|
|
{
|
|
Method m = clazz.getDeclaredMethod(methodName, methodTypes);
|
|
m.setAccessible(true);
|
|
return m;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
failed = e;
|
|
}
|
|
}
|
|
throw new UnableToFindMethodException(methodNames, failed);
|
|
}
|
|
} |