mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 06:51:56 +03:00
Rewrite bad methods.
This commit is contained in:
parent
2cff0e5a22
commit
99d5d22eac
1 changed files with 8 additions and 55 deletions
|
@ -5,29 +5,16 @@
|
||||||
import ru.gravit.utils.helper.IOHelper;
|
import ru.gravit.utils.helper.IOHelper;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.lang.reflect.Method;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Позволяет при помощи велосипеда из костылей искать методы внутри незагруженных классов
|
* Позволяет искать методы внутри незагруженных классов
|
||||||
* и общие суперклассы для чего угодно. Работает через поиск class-файлов в classpath, и, в случае провала -
|
* и общие суперклассы для чего угодно. Работает через поиск class-файлов в classpath.
|
||||||
* ищет через рефлексию.
|
|
||||||
*/
|
*/
|
||||||
public class ClassMetadataReader {
|
public class ClassMetadataReader {
|
||||||
private static final Method m;
|
|
||||||
|
|
||||||
static {
|
|
||||||
try {
|
|
||||||
m = ClassLoader.class.getDeclaredMethod("findLoadedClass", String.class);
|
|
||||||
m.setAccessible(true);
|
|
||||||
} catch (NoSuchMethodException e) {
|
|
||||||
throw new InternalError(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private final List<JarFile> list;
|
private final List<JarFile> list;
|
||||||
|
|
||||||
public ClassMetadataReader() {
|
public ClassMetadataReader() {
|
||||||
|
@ -75,7 +62,7 @@ private MethodReference getMethodReference(String type, String methodName, Strin
|
||||||
try {
|
try {
|
||||||
return getMethodReferenceASM(type, methodName, desc);
|
return getMethodReferenceASM(type, methodName, desc);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return getMethodReferenceReflect(type, methodName, desc);
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,18 +75,6 @@ protected MethodReference getMethodReferenceASM(String type, String methodName,
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MethodReference getMethodReferenceReflect(String type, String methodName, String desc) {
|
|
||||||
Class<?> loadedClass = getLoadedClass(type);
|
|
||||||
if (loadedClass != null) {
|
|
||||||
for (Method m : loadedClass.getDeclaredMethods()) {
|
|
||||||
if (checkSameMethod(methodName, desc, m.getName(), Type.getMethodDescriptor(m))) {
|
|
||||||
return new MethodReference(type, m.getName(), Type.getMethodDescriptor(m));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected boolean checkSameMethod(String sourceName, String sourceDesc, String targetName, String targetDesc) {
|
protected boolean checkSameMethod(String sourceName, String sourceDesc, String targetName, String targetDesc) {
|
||||||
return sourceName.equals(targetName) && sourceDesc.equals(targetDesc);
|
return sourceName.equals(targetName) && sourceDesc.equals(targetDesc);
|
||||||
}
|
}
|
||||||
|
@ -117,42 +92,20 @@ public ArrayList<String> getSuperClasses(String type) {
|
||||||
Collections.reverse(superclasses);
|
Collections.reverse(superclasses);
|
||||||
return superclasses;
|
return superclasses;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Class<?> getLoadedClass(String type) {
|
|
||||||
if (m != null) {
|
|
||||||
try {
|
|
||||||
ClassLoader classLoader = ClassMetadataReader.class.getClassLoader();
|
|
||||||
return (Class<?>) m.invoke(classLoader, type.replace('/', '.'));
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSuperClass(String type) {
|
public String getSuperClass(String type) {
|
||||||
try {
|
try {
|
||||||
return getSuperClassASM(type);
|
return getSuperClassASM(type);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return getSuperClassReflect(type);
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String getSuperClassASM(String type) throws IOException {
|
protected String getSuperClassASM(String type) throws IOException {
|
||||||
CheckSuperClassVisitor cv = new CheckSuperClassVisitor();
|
CheckSuperClassVisitor cv = new CheckSuperClassVisitor();
|
||||||
acceptVisitor(type, cv);
|
acceptVisitor(type, cv);
|
||||||
return cv.superClassName;
|
return cv.superClassName;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String getSuperClassReflect(String type) {
|
|
||||||
Class<?> loadedClass = getLoadedClass(type);
|
|
||||||
if (loadedClass != null) {
|
|
||||||
if (loadedClass.getSuperclass() == null) return null;
|
|
||||||
return loadedClass.getSuperclass().getName().replace('.', '/');
|
|
||||||
}
|
|
||||||
return "java/lang/Object";
|
|
||||||
}
|
|
||||||
|
|
||||||
private class CheckSuperClassVisitor extends ClassVisitor {
|
private class CheckSuperClassVisitor extends ClassVisitor {
|
||||||
|
|
||||||
String superClassName;
|
String superClassName;
|
||||||
|
|
Loading…
Reference in a new issue