2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launchserver.binary;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.nio.file.Path;
|
|
|
|
|
|
|
|
import ru.gravit.launcher.LauncherAPI;
|
2018-09-17 10:20:34 +03:00
|
|
|
import ru.gravit.utils.helper.IOHelper;
|
2018-09-17 10:07:32 +03:00
|
|
|
import ru.gravit.launcher.serialize.signed.SignedBytesHolder;
|
|
|
|
import ru.gravit.launchserver.LaunchServer;
|
2018-10-02 15:19:57 +03:00
|
|
|
import ru.gravit.utils.helper.SecurityHelper;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
public abstract class LauncherBinary {
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
protected final LaunchServer server;
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
protected final Path binaryFile;
|
|
|
|
protected final Path syncBinaryFile;
|
|
|
|
private volatile SignedBytesHolder binary;
|
2018-10-02 15:19:57 +03:00
|
|
|
private volatile byte[] hash;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
protected LauncherBinary(LaunchServer server, Path binaryFile) {
|
|
|
|
this.server = server;
|
|
|
|
this.binaryFile = binaryFile;
|
|
|
|
syncBinaryFile = binaryFile;
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
protected LauncherBinary(LaunchServer server, Path binaryFile, Path syncBinaryFile) {
|
|
|
|
this.server = server;
|
|
|
|
this.binaryFile = binaryFile;
|
|
|
|
this.syncBinaryFile = syncBinaryFile;
|
|
|
|
}
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public abstract void build() throws IOException;
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public final boolean exists() {
|
|
|
|
return IOHelper.isFile(syncBinaryFile);
|
|
|
|
}
|
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public final SignedBytesHolder getBytes() {
|
|
|
|
return binary;
|
|
|
|
}
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-10-02 15:19:57 +03:00
|
|
|
public final byte[] getHash() {
|
|
|
|
return hash;
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
|
2018-10-13 11:01:10 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public final boolean sync() throws IOException {
|
|
|
|
boolean exists = exists();
|
|
|
|
binary = exists ? new SignedBytesHolder(IOHelper.read(syncBinaryFile), server.privateKey) : null;
|
2018-10-02 15:39:54 +03:00
|
|
|
hash = exists ? SecurityHelper.digest(SecurityHelper.DigestAlgorithm.SHA512,IOHelper.newInput(syncBinaryFile)) : null;
|
2018-09-17 10:07:32 +03:00
|
|
|
return exists;
|
|
|
|
}
|
|
|
|
}
|