2018-09-24 14:36:20 +03:00
|
|
|
package ru.gravit.launcher.server;
|
|
|
|
|
2018-12-19 15:38:32 +03:00
|
|
|
import ru.gravit.utils.helper.IOHelper;
|
2018-09-24 14:36:20 +03:00
|
|
|
import ru.gravit.utils.helper.LogHelper;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.lang.instrument.Instrumentation;
|
2018-12-19 15:38:32 +03:00
|
|
|
import java.lang.invoke.MethodHandle;
|
|
|
|
import java.lang.invoke.MethodHandles;
|
|
|
|
import java.lang.invoke.MethodType;
|
2018-09-24 14:36:20 +03:00
|
|
|
import java.nio.file.*;
|
|
|
|
import java.nio.file.attribute.BasicFileAttributes;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.jar.JarFile;
|
|
|
|
|
|
|
|
public class ServerAgent {
|
2018-11-08 15:30:16 +03:00
|
|
|
private static boolean isAgentStarted = false;
|
2018-09-24 14:36:20 +03:00
|
|
|
public static Instrumentation inst;
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-24 14:36:20 +03:00
|
|
|
public static final class StarterVisitor extends SimpleFileVisitor<Path> {
|
|
|
|
@Override
|
|
|
|
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
|
|
|
if (file.toFile().getName().endsWith(".jar")) addJVMClassPath(new JarFile(file.toFile()));
|
|
|
|
return super.visitFile(file, attrs);
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-24 14:36:20 +03:00
|
|
|
public static void addJVMClassPath(String path) throws IOException {
|
2018-11-08 15:30:16 +03:00
|
|
|
LogHelper.debug("Load %s", path);
|
2018-09-24 14:36:20 +03:00
|
|
|
inst.appendToSystemClassLoaderSearch(new JarFile(path));
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-24 14:36:20 +03:00
|
|
|
public static void addJVMClassPath(JarFile file) throws IOException {
|
2018-11-08 15:30:16 +03:00
|
|
|
LogHelper.debug("Load %s", file.getName());
|
2018-09-24 14:36:20 +03:00
|
|
|
inst.appendToSystemClassLoaderSearch(file);
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-12-19 16:02:08 +03:00
|
|
|
public static boolean isAgentStarted() {
|
2018-09-24 14:36:20 +03:00
|
|
|
return isAgentStarted;
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-24 14:36:20 +03:00
|
|
|
public static long getObjSize(Object obj) {
|
|
|
|
return inst.getObjectSize(obj);
|
|
|
|
}
|
2018-12-20 18:45:01 +03:00
|
|
|
|
|
|
|
public static Boolean isAutoloadLibraries = Boolean.getBoolean(System.getProperty("serverwrapper,agentlibrariesload", "false"));
|
|
|
|
public static Boolean isAgentProxy = Boolean.getBoolean(System.getProperty("serverwrapper,agentproxy", "false"));
|
|
|
|
|
2018-12-20 18:52:09 +03:00
|
|
|
@SuppressWarnings("JavaLangInvokeHandleSignature")
|
2018-09-24 14:36:20 +03:00
|
|
|
public static void premain(String agentArgument, Instrumentation instrumentation) {
|
|
|
|
LogHelper.debug("Server Agent");
|
|
|
|
inst = instrumentation;
|
|
|
|
isAgentStarted = true;
|
2018-12-20 18:45:01 +03:00
|
|
|
if (isAutoloadLibraries) {
|
2018-12-19 15:38:32 +03:00
|
|
|
Path libraries = Paths.get("libraries");
|
2018-12-20 18:45:01 +03:00
|
|
|
if (IOHelper.exists(libraries)) loadLibraries(libraries);
|
2018-12-19 15:38:32 +03:00
|
|
|
}
|
2018-12-20 18:45:01 +03:00
|
|
|
if (isAgentProxy) {
|
2018-12-26 15:44:35 +03:00
|
|
|
String proxyClassName = System.getProperty("serverwrapper.agentproxyclass");
|
|
|
|
Class<?> proxyClass;
|
2018-12-19 15:38:32 +03:00
|
|
|
try {
|
|
|
|
proxyClass = Class.forName(proxyClassName);
|
|
|
|
MethodHandle mainMethod = MethodHandles.publicLookup().findStatic(proxyClass, "premain", MethodType.methodType(void.class, String.class, Instrumentation.class));
|
2018-12-20 18:45:01 +03:00
|
|
|
Object[] args = {agentArgument, instrumentation};
|
2018-12-19 15:38:32 +03:00
|
|
|
mainMethod.invoke(args);
|
|
|
|
} catch (Throwable e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-20 18:45:01 +03:00
|
|
|
|
|
|
|
public static void loadLibraries(Path dir) {
|
2018-09-24 14:36:20 +03:00
|
|
|
try {
|
2018-12-19 15:38:32 +03:00
|
|
|
Files.walkFileTree(dir, Collections.singleton(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new StarterVisitor());
|
2018-09-24 14:36:20 +03:00
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace(System.err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|