mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
Restart command.
This commit is contained in:
parent
8d34ae76fc
commit
9a27f863eb
14 changed files with 94 additions and 30 deletions
|
@ -2,7 +2,9 @@
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.BufferedWriter;
|
import java.io.BufferedWriter;
|
||||||
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.lang.ProcessBuilder.Redirect;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
|
@ -18,6 +20,7 @@
|
||||||
import java.security.spec.InvalidKeySpecException;
|
import java.security.spec.InvalidKeySpecException;
|
||||||
import java.time.Duration;
|
import java.time.Duration;
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
@ -88,7 +91,7 @@ public static final class Config {
|
||||||
public String projectName;
|
public String projectName;
|
||||||
|
|
||||||
public String[] mirrors;
|
public String[] mirrors;
|
||||||
|
|
||||||
public String binaryName;
|
public String binaryName;
|
||||||
|
|
||||||
public LauncherConfig.LauncherEnvironment env;
|
public LauncherConfig.LauncherEnvironment env;
|
||||||
|
@ -133,6 +136,8 @@ public static final class Config {
|
||||||
|
|
||||||
public boolean isWarningMissArchJava;
|
public boolean isWarningMissArchJava;
|
||||||
|
|
||||||
|
public String startScript;
|
||||||
|
|
||||||
|
|
||||||
public String getAddress() {
|
public String getAddress() {
|
||||||
return address;
|
return address;
|
||||||
|
@ -236,7 +241,7 @@ public static void main(String... args) throws Throwable {
|
||||||
// Start LaunchServer
|
// Start LaunchServer
|
||||||
Instant start = Instant.now();
|
Instant start = Instant.now();
|
||||||
try {
|
try {
|
||||||
new LaunchServer(IOHelper.WORKING_DIR).run();
|
new LaunchServer(IOHelper.WORKING_DIR, args).run();
|
||||||
} catch (Throwable exc) {
|
} catch (Throwable exc) {
|
||||||
LogHelper.error(exc);
|
LogHelper.error(exc);
|
||||||
return;
|
return;
|
||||||
|
@ -249,7 +254,8 @@ public static void main(String... args) throws Throwable {
|
||||||
|
|
||||||
public final Path dir;
|
public final Path dir;
|
||||||
|
|
||||||
|
public final List<String> args;
|
||||||
|
|
||||||
public final Path configFile;
|
public final Path configFile;
|
||||||
|
|
||||||
public final Path publicKeyFile;
|
public final Path publicKeyFile;
|
||||||
|
@ -300,7 +306,6 @@ public static void main(String... args) throws Throwable {
|
||||||
|
|
||||||
public final CommandHandler commandHandler;
|
public final CommandHandler commandHandler;
|
||||||
|
|
||||||
|
|
||||||
public final ServerSocketHandler serverSocketHandler;
|
public final ServerSocketHandler serverSocketHandler;
|
||||||
|
|
||||||
private final AtomicBoolean started = new AtomicBoolean(false);
|
private final AtomicBoolean started = new AtomicBoolean(false);
|
||||||
|
@ -313,9 +318,9 @@ public static void main(String... args) throws Throwable {
|
||||||
public static Gson gson;
|
public static Gson gson;
|
||||||
public static GsonBuilder gsonBuilder;
|
public static GsonBuilder gsonBuilder;
|
||||||
|
|
||||||
public LaunchServer(Path dir) throws IOException, InvalidKeySpecException {
|
public LaunchServer(Path dir, String[] args) throws IOException, InvalidKeySpecException {
|
||||||
// Setup config locations
|
|
||||||
this.dir = dir;
|
this.dir = dir;
|
||||||
|
this.args = Arrays.asList(args);
|
||||||
configFile = dir.resolve("LaunchServer.conf");
|
configFile = dir.resolve("LaunchServer.conf");
|
||||||
publicKeyFile = dir.resolve("public.key");
|
publicKeyFile = dir.resolve("public.key");
|
||||||
privateKeyFile = dir.resolve("private.key");
|
privateKeyFile = dir.resolve("private.key");
|
||||||
|
@ -374,7 +379,6 @@ public LaunchServer(Path dir) throws IOException, InvalidKeySpecException {
|
||||||
modulesManager.autoload(dir.resolve("modules"));
|
modulesManager.autoload(dir.resolve("modules"));
|
||||||
modulesManager.preInitModules();
|
modulesManager.preInitModules();
|
||||||
initGson();
|
initGson();
|
||||||
LogHelper.setStacktraceEnabled(true);
|
|
||||||
|
|
||||||
// Read LaunchServer config
|
// Read LaunchServer config
|
||||||
generateConfigIfNotExists();
|
generateConfigIfNotExists();
|
||||||
|
@ -399,7 +403,6 @@ public LaunchServer(Path dir) throws IOException, InvalidKeySpecException {
|
||||||
reconfigurableManager = new ReconfigurableManager();
|
reconfigurableManager = new ReconfigurableManager();
|
||||||
socketHookManager = new SocketHookManager();
|
socketHookManager = new SocketHookManager();
|
||||||
authHookManager = new AuthHookManager();
|
authHookManager = new AuthHookManager();
|
||||||
|
|
||||||
GarbageManager.registerNeedGC(sessionManager);
|
GarbageManager.registerNeedGC(sessionManager);
|
||||||
GarbageManager.registerNeedGC(limiter);
|
GarbageManager.registerNeedGC(limiter);
|
||||||
if(config.permissionsHandler instanceof Reloadable)
|
if(config.permissionsHandler instanceof Reloadable)
|
||||||
|
@ -553,6 +556,7 @@ private void generateConfigIfNotExists() throws IOException {
|
||||||
newConfig.launch4j.productVer = newConfig.launch4j.fileVer;
|
newConfig.launch4j.productVer = newConfig.launch4j.fileVer;
|
||||||
newConfig.buildPostTransform = new PostBuildTransformConf();
|
newConfig.buildPostTransform = new PostBuildTransformConf();
|
||||||
newConfig.env = LauncherConfig.LauncherEnvironment.STD;
|
newConfig.env = LauncherConfig.LauncherEnvironment.STD;
|
||||||
|
newConfig.startScript = "." + File.separator + "start.sh";
|
||||||
newConfig.authHandler = new MemoryAuthHandler();
|
newConfig.authHandler = new MemoryAuthHandler();
|
||||||
newConfig.hwidHandler = new AcceptHWIDHandler();
|
newConfig.hwidHandler = new AcceptHWIDHandler();
|
||||||
|
|
||||||
|
@ -673,4 +677,25 @@ public void syncUpdatesDir(Collection<String> dirs) throws IOException {
|
||||||
}
|
}
|
||||||
updatesDirMap = Collections.unmodifiableMap(newUpdatesDirMap);
|
updatesDirMap = Collections.unmodifiableMap(newUpdatesDirMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void restart() {
|
||||||
|
ProcessBuilder builder = new ProcessBuilder();
|
||||||
|
List<String> args = new ArrayList<>();
|
||||||
|
if (config.startScript != null) args.add(config.startScript);
|
||||||
|
else throw new IllegalArgumentException ("Please create start script and link it as startScript in config.");
|
||||||
|
builder.directory(this.dir.toFile());
|
||||||
|
builder.inheritIO();
|
||||||
|
builder.redirectErrorStream(true);
|
||||||
|
builder.redirectOutput(Redirect.PIPE);
|
||||||
|
try {
|
||||||
|
builder.start();
|
||||||
|
} catch (IOException e) {
|
||||||
|
LogHelper.error(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void fullyRestart() {
|
||||||
|
restart();
|
||||||
|
JVMHelper.RUNTIME.exit(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ private class CheckSuperClassVisitor extends ClassVisitor {
|
||||||
String superClassName;
|
String superClassName;
|
||||||
|
|
||||||
public CheckSuperClassVisitor() {
|
public CheckSuperClassVisitor() {
|
||||||
super(Opcodes.ASM5);
|
super(Opcodes.ASM7);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -57,10 +57,13 @@ public void acceptVisitor(String className, ClassVisitor visitor) throws IOExcep
|
||||||
|
|
||||||
public byte[] getClassData(String className) throws IOException {
|
public byte[] getClassData(String className) throws IOException {
|
||||||
for (JarFile f : cp) {
|
for (JarFile f : cp) {
|
||||||
if (f.getEntry(className + ".class") != null)
|
if (f.getEntry(className + ".class") != null) {
|
||||||
|
byte[] bytes = null;
|
||||||
try (InputStream in = f.getInputStream(f.getEntry(className + ".class"))) {
|
try (InputStream in = f.getInputStream(f.getEntry(className + ".class"))) {
|
||||||
return IOHelper.read(in);
|
bytes = IOHelper.read(in);
|
||||||
}
|
}
|
||||||
|
return bytes;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return IOHelper.read(IOHelper.getResourceURL(className + ".class"));
|
return IOHelper.read(IOHelper.getResourceURL(className + ".class"));
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
import ru.gravit.launchserver.LaunchServer;
|
|
||||||
import ru.gravit.launchserver.auth.AuthException;
|
import ru.gravit.launchserver.auth.AuthException;
|
||||||
import ru.gravit.launchserver.auth.provider.AuthProviderResult;
|
import ru.gravit.launchserver.auth.provider.AuthProviderResult;
|
||||||
import ru.gravit.utils.helper.VerifyHelper;
|
import ru.gravit.utils.helper.VerifyHelper;
|
||||||
|
@ -14,7 +13,6 @@
|
||||||
public abstract class AuthHandler implements AutoCloseable {
|
public abstract class AuthHandler implements AutoCloseable {
|
||||||
private static final Map<String, Class<? extends AuthHandler>> AUTH_HANDLERS = new ConcurrentHashMap<>(4);
|
private static final Map<String, Class<? extends AuthHandler>> AUTH_HANDLERS = new ConcurrentHashMap<>(4);
|
||||||
private static boolean registredHandl = false;
|
private static boolean registredHandl = false;
|
||||||
private transient LaunchServer server = LaunchServer.server;
|
|
||||||
|
|
||||||
|
|
||||||
public static UUID authError(String message) throws AuthException {
|
public static UUID authError(String message) throws AuthException {
|
||||||
|
|
|
@ -11,22 +11,29 @@ public DebugCommand(LaunchServer server) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getArgsDescription() {
|
public String getArgsDescription() {
|
||||||
return "[true/false]";
|
return "[true/false] (true/false)";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getUsageDescription() {
|
public String getUsageDescription() {
|
||||||
return "Enable or disable debug logging at runtime";
|
return "Enable or disable debug and stacktrace logging at runtime";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void invoke(String... args) {
|
public void invoke(String... args) {
|
||||||
boolean newValue;
|
boolean newValue, newTraceValue;
|
||||||
if (args.length >= 1) {
|
if (args.length >= 1) {
|
||||||
newValue = Boolean.parseBoolean(args[0]);
|
newValue = Boolean.parseBoolean(args[0]);
|
||||||
|
if(args.length >= 2) newTraceValue = Boolean.parseBoolean(args[1]);
|
||||||
|
else newTraceValue = newValue;
|
||||||
LogHelper.setDebugEnabled(newValue);
|
LogHelper.setDebugEnabled(newValue);
|
||||||
|
LogHelper.setStacktraceEnabled(newTraceValue);
|
||||||
} else
|
} else
|
||||||
|
{
|
||||||
newValue = LogHelper.isDebugEnabled();
|
newValue = LogHelper.isDebugEnabled();
|
||||||
|
newTraceValue = LogHelper.isStacktraceEnabled();
|
||||||
|
}
|
||||||
LogHelper.subInfo("Debug enabled: " + newValue);
|
LogHelper.subInfo("Debug enabled: " + newValue);
|
||||||
|
LogHelper.subInfo("Stacktrace enabled: " + newTraceValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
package ru.gravit.launchserver.command.basic;
|
||||||
|
|
||||||
|
import ru.gravit.launchserver.LaunchServer;
|
||||||
|
import ru.gravit.launchserver.command.Command;
|
||||||
|
|
||||||
|
public final class RestartCommand extends Command {
|
||||||
|
public RestartCommand(LaunchServer server) {
|
||||||
|
super(server);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getArgsDescription() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getUsageDescription() {
|
||||||
|
return "Restart LaunchServer";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("CallToSystemExit")
|
||||||
|
public void invoke(String... args) {
|
||||||
|
server.fullyRestart();
|
||||||
|
}
|
||||||
|
}
|
|
@ -29,6 +29,7 @@
|
||||||
import ru.gravit.launchserver.command.basic.RebindCommand;
|
import ru.gravit.launchserver.command.basic.RebindCommand;
|
||||||
import ru.gravit.launchserver.command.basic.RegenProguardDictCommand;
|
import ru.gravit.launchserver.command.basic.RegenProguardDictCommand;
|
||||||
import ru.gravit.launchserver.command.basic.RemoveMappingsProguardCommand;
|
import ru.gravit.launchserver.command.basic.RemoveMappingsProguardCommand;
|
||||||
|
import ru.gravit.launchserver.command.basic.RestartCommand;
|
||||||
import ru.gravit.launchserver.command.basic.StopCommand;
|
import ru.gravit.launchserver.command.basic.StopCommand;
|
||||||
import ru.gravit.launchserver.command.basic.TestCommand;
|
import ru.gravit.launchserver.command.basic.TestCommand;
|
||||||
import ru.gravit.launchserver.command.basic.VersionCommand;
|
import ru.gravit.launchserver.command.basic.VersionCommand;
|
||||||
|
@ -105,6 +106,7 @@ protected CommandHandler(LaunchServer server) {
|
||||||
registerCommand("version", new VersionCommand(server));
|
registerCommand("version", new VersionCommand(server));
|
||||||
registerCommand("build", new BuildCommand(server));
|
registerCommand("build", new BuildCommand(server));
|
||||||
registerCommand("stop", new StopCommand(server));
|
registerCommand("stop", new StopCommand(server));
|
||||||
|
registerCommand("restart", new RestartCommand(server));
|
||||||
registerCommand("rebind", new RebindCommand(server));
|
registerCommand("rebind", new RebindCommand(server));
|
||||||
registerCommand("debug", new DebugCommand(server));
|
registerCommand("debug", new DebugCommand(server));
|
||||||
registerCommand("clear", new ClearCommand(server));
|
registerCommand("clear", new ClearCommand(server));
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
import org.objectweb.asm.ClassWriter;
|
import org.objectweb.asm.ClassWriter;
|
||||||
import org.objectweb.asm.tree.ClassNode;
|
import org.objectweb.asm.tree.ClassNode;
|
||||||
|
|
||||||
|
import ru.gravit.launcher.LauncherConfig;
|
||||||
import ru.gravit.launchserver.asm.SafeClassWriter;
|
import ru.gravit.launchserver.asm.SafeClassWriter;
|
||||||
import ru.gravit.launchserver.binary.JARLauncherBinary;
|
import ru.gravit.launchserver.binary.JARLauncherBinary;
|
||||||
import ru.gravit.launchserver.manangers.hook.BuildHookManager.Transformer;
|
import ru.gravit.launchserver.manangers.hook.BuildHookManager.Transformer;
|
||||||
|
@ -31,9 +32,9 @@ public NodeTransformer() {
|
||||||
public byte[] transform(byte[] input, String classname, JARLauncherBinary data) {
|
public byte[] transform(byte[] input, String classname, JARLauncherBinary data) {
|
||||||
ClassReader cr = new ClassReader(input);
|
ClassReader cr = new ClassReader(input);
|
||||||
ClassNode cn = new ClassNode();
|
ClassNode cn = new ClassNode();
|
||||||
cr.accept(cn, ClassReader.SKIP_DEBUG);
|
cr.accept(cn, data.server.config.env.equals(LauncherConfig.LauncherEnvironment.PROD) || data.server.config.env.equals(LauncherConfig.LauncherEnvironment.STD) ? ClassReader.SKIP_DEBUG : 0);
|
||||||
for (ClassNodeTransformer tr : transLst) tr.transform(cn, classname, data);
|
for (ClassNodeTransformer tr : transLst) tr.transform(cn, classname, data);
|
||||||
ClassWriter cw = new SafeClassWriter(data.reader, ClassWriter.COMPUTE_FRAMES);
|
ClassWriter cw = new SafeClassWriter(data.reader, ClassWriter.COMPUTE_MAXS);
|
||||||
cn.accept(cw);
|
cn.accept(cw);
|
||||||
return cw.toByteArray();
|
return cw.toByteArray();
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ public interface Listener {
|
||||||
void onDisconnect(Exception e);
|
void onDisconnect(Exception e);
|
||||||
|
|
||||||
|
|
||||||
boolean onHandshake(long session, Integer type);
|
boolean onHandshake(long session, int type);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final ThreadFactory THREAD_FACTORY = r -> CommonHelper.newThread("Network Thread", true, r);
|
private static final ThreadFactory THREAD_FACTORY = r -> CommonHelper.newThread("Network Thread", true, r);
|
||||||
|
@ -76,7 +76,7 @@ public void close() {
|
||||||
listener.onDisconnect(e);
|
listener.onDisconnect(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*package*/ boolean onHandshake(long session, Integer type) {
|
/*package*/ boolean onHandshake(long session, int type) {
|
||||||
return listener == null || listener.onHandshake(session, type);
|
return listener == null || listener.onHandshake(session, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"port": 7420,
|
"port": 7240,
|
||||||
"authHandler": {
|
"authHandler": {
|
||||||
"type": "memory"
|
"type": "memory"
|
||||||
},
|
},
|
||||||
|
|
|
@ -30,6 +30,7 @@ public static void main(String[] arguments) throws IOException, InterruptedExcep
|
||||||
args.add(javaBin.toString());
|
args.add(javaBin.toString());
|
||||||
String pathLauncher = IOHelper.getCodeSource(ClientLauncher.class).toString();
|
String pathLauncher = IOHelper.getCodeSource(ClientLauncher.class).toString();
|
||||||
args.add(JVMHelper.jvmProperty(LogHelper.DEBUG_PROPERTY, Boolean.toString(LogHelper.isDebugEnabled())));
|
args.add(JVMHelper.jvmProperty(LogHelper.DEBUG_PROPERTY, Boolean.toString(LogHelper.isDebugEnabled())));
|
||||||
|
args.add(JVMHelper.jvmProperty(LogHelper.STACKTRACE_PROPERTY, Boolean.toString(LogHelper.isStacktraceEnabled())));
|
||||||
Collections.addAll(args, "-javaagent:".concat(pathLauncher));
|
Collections.addAll(args, "-javaagent:".concat(pathLauncher));
|
||||||
Collections.addAll(args, "-cp");
|
Collections.addAll(args, "-cp");
|
||||||
Collections.addAll(args, pathLauncher);
|
Collections.addAll(args, pathLauncher);
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.GsonBuilder;
|
import com.google.gson.GsonBuilder;
|
||||||
import com.google.gson.JsonArray;
|
|
||||||
import com.google.gson.JsonObject;
|
|
||||||
import ru.gravit.launcher.*;
|
import ru.gravit.launcher.*;
|
||||||
import ru.gravit.launcher.hasher.DirWatcher;
|
import ru.gravit.launcher.hasher.DirWatcher;
|
||||||
import ru.gravit.launcher.hasher.FileNameMatcher;
|
import ru.gravit.launcher.hasher.FileNameMatcher;
|
||||||
|
@ -358,6 +356,7 @@ public static Process launch(
|
||||||
args.add("-Xmx" + params.ram + 'M');
|
args.add("-Xmx" + params.ram + 'M');
|
||||||
}
|
}
|
||||||
args.add(JVMHelper.jvmProperty(LogHelper.DEBUG_PROPERTY, Boolean.toString(LogHelper.isDebugEnabled())));
|
args.add(JVMHelper.jvmProperty(LogHelper.DEBUG_PROPERTY, Boolean.toString(LogHelper.isDebugEnabled())));
|
||||||
|
args.add(JVMHelper.jvmProperty(LogHelper.STACKTRACE_PROPERTY, Boolean.toString(LogHelper.isStacktraceEnabled())));
|
||||||
if (LauncherConfig.ADDRESS_OVERRIDE != null)
|
if (LauncherConfig.ADDRESS_OVERRIDE != null)
|
||||||
args.add(JVMHelper.jvmProperty(LauncherConfig.ADDRESS_OVERRIDE_PROPERTY, LauncherConfig.ADDRESS_OVERRIDE));
|
args.add(JVMHelper.jvmProperty(LauncherConfig.ADDRESS_OVERRIDE_PROPERTY, LauncherConfig.ADDRESS_OVERRIDE));
|
||||||
if (JVMHelper.OS_TYPE == OS.MUSTDIE) {
|
if (JVMHelper.OS_TYPE == OS.MUSTDIE) {
|
||||||
|
|
|
@ -87,6 +87,7 @@ public static void main(String[] args) throws Throwable {
|
||||||
modulesManager.preInitModules();
|
modulesManager.preInitModules();
|
||||||
LogHelper.debug("Read ServerWrapperConfig.json");
|
LogHelper.debug("Read ServerWrapperConfig.json");
|
||||||
gsonBuiler = new GsonBuilder();
|
gsonBuiler = new GsonBuilder();
|
||||||
|
gsonBuiler.setPrettyPrinting();
|
||||||
gson = gsonBuiler.create();
|
gson = gsonBuiler.create();
|
||||||
generateConfigIfNotExists();
|
generateConfigIfNotExists();
|
||||||
try(Reader reader = IOHelper.newReader(configFile))
|
try(Reader reader = IOHelper.newReader(configFile))
|
||||||
|
@ -99,7 +100,7 @@ public static void main(String[] args) throws Throwable {
|
||||||
else
|
else
|
||||||
CommonHelper.newThread("Server Auth Thread", true, () -> ServerWrapper.loopAuth(wrapper, config.reconnectCount, config.reconnectSleep));
|
CommonHelper.newThread("Server Auth Thread", true, () -> ServerWrapper.loopAuth(wrapper, config.reconnectCount, config.reconnectSleep));
|
||||||
modulesManager.initModules();
|
modulesManager.initModules();
|
||||||
String classname = config.mainclass.isEmpty() ? args[0] : config.mainclass;
|
String classname = (config.mainclass == null || config.mainclass.isEmpty()) ? args[0] : config.mainclass;
|
||||||
if (classname.length() == 0) {
|
if (classname.length() == 0) {
|
||||||
LogHelper.error("MainClass not found. Please set MainClass for ServerWrapper.cfg or first commandline argument");
|
LogHelper.error("MainClass not found. Please set MainClass for ServerWrapper.cfg or first commandline argument");
|
||||||
}
|
}
|
||||||
|
@ -152,6 +153,7 @@ private static void generateConfigIfNotExists() throws IOException {
|
||||||
newConfig.port = 7240;
|
newConfig.port = 7240;
|
||||||
newConfig.login = "login";
|
newConfig.login = "login";
|
||||||
newConfig.password = "password";
|
newConfig.password = "password";
|
||||||
|
newConfig.mainclass = "";
|
||||||
//try(Reader reader = IOHelper.newReader(IOHelper.getResourceURL("ru/gravit/launcher/server/ServerWrapper.cfg")))
|
//try(Reader reader = IOHelper.newReader(IOHelper.getResourceURL("ru/gravit/launcher/server/ServerWrapper.cfg")))
|
||||||
//{
|
//{
|
||||||
// newConfig = gson.fromJson(reader,Config.class);
|
// newConfig = gson.fromJson(reader,Config.class);
|
||||||
|
|
|
@ -58,11 +58,11 @@ public final class Launcher {
|
||||||
public static final String CONFIG_SCRIPT_FILE = "config.js";
|
public static final String CONFIG_SCRIPT_FILE = "config.js";
|
||||||
|
|
||||||
private static final Pattern UUID_PATTERN = Pattern.compile("-", Pattern.LITERAL);
|
private static final Pattern UUID_PATTERN = Pattern.compile("-", Pattern.LITERAL);
|
||||||
public static int MAJOR = 4;
|
public static final int MAJOR = 4;
|
||||||
public static int MINOR = 1;
|
public static final int MINOR = 1;
|
||||||
public static int PATCH = 0;
|
public static final int PATCH = 0;
|
||||||
public static int BUILD = 7;
|
public static final int BUILD = 7;
|
||||||
public static Version.Type RELEASE = Version.Type.BETA;
|
public static final Version.Type RELEASE = Version.Type.BETA;
|
||||||
public static GsonBuilder gsonBuilder;
|
public static GsonBuilder gsonBuilder;
|
||||||
public static Gson gson;
|
public static Gson gson;
|
||||||
|
|
||||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
||||||
Subproject commit eec958f2c5edbc7c053686ab7cebaab8dbca2778
|
Subproject commit ec1431605c4951ace5cbd2ab392b67cea25bddd5
|
Loading…
Reference in a new issue