Protocol of updater fix.

This commit is contained in:
zaxar163 2019-01-04 11:10:41 +04:00
parent 4ee6b31371
commit fd9ba37dd3
No known key found for this signature in database
GPG key ID: CEE900027AE098E0

View file

@ -1,7 +1,6 @@
package ru.gravit.launchserver;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.Socket;
import java.util.Timer;
import java.util.TimerTask;
@ -53,20 +52,19 @@ public void run() {
s.getOutputStream().write(2);
@SuppressWarnings("resource") // s.close() closes it.
HInput in = new HInput(s.getInputStream());
if (in.readBoolean()) {
int num = in.readInt();
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);
}
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;