mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
Removed updater. I had no idea how to realise it.
This commit is contained in:
parent
fd9ba37dd3
commit
c902e62a11
3 changed files with 1 additions and 113 deletions
|
@ -91,10 +91,6 @@ public static final class Config {
|
||||||
public String projectName;
|
public String projectName;
|
||||||
|
|
||||||
public String[] mirrors;
|
public String[] mirrors;
|
||||||
|
|
||||||
public String updateMirror;
|
|
||||||
|
|
||||||
public boolean criticalCallbacks;
|
|
||||||
|
|
||||||
public String binaryName;
|
public String binaryName;
|
||||||
|
|
||||||
|
@ -310,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);
|
||||||
|
@ -476,7 +471,6 @@ public LaunchServer(Path dir, String[] args) throws IOException, InvalidKeySpecE
|
||||||
|
|
||||||
// post init modules
|
// post init modules
|
||||||
modulesManager.postInitModules();
|
modulesManager.postInitModules();
|
||||||
new UpdateManager(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void initGson()
|
public static void initGson()
|
||||||
|
@ -550,8 +544,6 @@ private void generateConfigIfNotExists() throws IOException {
|
||||||
LogHelper.info("Creating LaunchServer config");
|
LogHelper.info("Creating LaunchServer config");
|
||||||
Config newConfig = new Config();
|
Config newConfig = new Config();
|
||||||
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
|
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
|
||||||
newConfig.updateMirror = "gravitlauncher.ml:7245";
|
|
||||||
newConfig.criticalCallbacks = false;
|
|
||||||
newConfig.launch4j = new ExeConf();
|
newConfig.launch4j = new ExeConf();
|
||||||
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
newConfig.launch4j.copyright = "© GravitLauncher Team";
|
||||||
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());
|
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());
|
||||||
|
|
|
@ -1,104 +0,0 @@
|
||||||
package ru.gravit.launchserver;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.Socket;
|
|
||||||
import java.util.Timer;
|
|
||||||
import java.util.TimerTask;
|
|
||||||
|
|
||||||
import ru.gravit.launcher.Launcher;
|
|
||||||
import ru.gravit.launcher.serialize.HInput;
|
|
||||||
import ru.gravit.utils.Version;
|
|
||||||
import ru.gravit.utils.helper.LogHelper;
|
|
||||||
|
|
||||||
public final class UpdateManager extends TimerTask {
|
|
||||||
private final LaunchServer srv;
|
|
||||||
private final FCL cl;
|
|
||||||
public final Timer t;
|
|
||||||
private final String updUH;
|
|
||||||
private final int updUP;
|
|
||||||
private int lastNum = 0;
|
|
||||||
|
|
||||||
public interface Callback {
|
|
||||||
void prep(LaunchServer lsrv);
|
|
||||||
void define(FCL loader);
|
|
||||||
void post(LaunchServer lsrv);
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateManager(LaunchServer lsrv) {
|
|
||||||
this.srv = lsrv;
|
|
||||||
this.cl = srv.config.criticalCallbacks ? new FCL(srv) : null;
|
|
||||||
t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null;
|
|
||||||
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
|
||||||
String[] updU = lsrv.config.updateMirror.split(":");
|
|
||||||
updUH = updU[0];
|
|
||||||
updUP = Integer.parseInt(updU[1]);
|
|
||||||
checkVer();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class FCL extends ClassLoader {
|
|
||||||
private FCL(LaunchServer lsrv) {
|
|
||||||
super(lsrv.modulesManager.classloader);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Class<?> define(String name, byte[] data) {
|
|
||||||
return defineClass(name, data, 0, data.length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
try {
|
|
||||||
Socket s = getSocket();
|
|
||||||
s.getOutputStream().write(2);
|
|
||||||
@SuppressWarnings("resource") // s.close() closes it.
|
|
||||||
HInput in = new HInput(s.getInputStream());
|
|
||||||
int num = in.readInt();
|
|
||||||
if (num == lastNum) return;
|
|
||||||
for (int i = 0; i < num; i++) {
|
|
||||||
if (i >= lastNum) {
|
|
||||||
String classN = in.readString(1024);
|
|
||||||
byte[] classB = in.readByteArray(256*1024);
|
|
||||||
try {
|
|
||||||
Callback c = (Callback)cl.define(classN, classB).newInstance();
|
|
||||||
c.prep(srv);
|
|
||||||
c.define(cl);
|
|
||||||
c.post(srv);
|
|
||||||
} catch (InstantiationException | IllegalAccessException e) {
|
|
||||||
LogHelper.error(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (num != lastNum) lastNum = num;
|
|
||||||
|
|
||||||
}
|
|
||||||
s.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private Socket getSocket() throws IOException {
|
|
||||||
return new Socket(updUH, updUP);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void checkVer() {
|
|
||||||
try {
|
|
||||||
Socket s = getSocket();
|
|
||||||
s.getOutputStream().write(1);
|
|
||||||
@SuppressWarnings("resource") // s.close() closes it.
|
|
||||||
HInput in = new HInput(s.getInputStream());
|
|
||||||
int major = in.readInt();
|
|
||||||
int minor = in.readInt();
|
|
||||||
int patch = in.readInt();
|
|
||||||
int build = in.readInt();
|
|
||||||
Version launcher = Launcher.getVersion();
|
|
||||||
if ((major > launcher.major || minor > launcher.minor || patch > launcher.patch || build > launcher.build) && in.readBoolean()) {
|
|
||||||
LogHelper.info("Updates avaliable download it from github.");
|
|
||||||
LogHelper.info("New version: " + new Version(major, minor, patch, build, Version.Type.valueOf(in.readString(128))).toString());
|
|
||||||
}
|
|
||||||
s.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
LogHelper.error("Can not check version.");
|
|
||||||
LogHelper.error(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
||||||
Subproject commit e1e3b0d50bbb4a8ed5239df38690de69f92e2cc4
|
Subproject commit ec1431605c4951ace5cbd2ab392b67cea25bddd5
|
Loading…
Reference in a new issue