Launcher/LaunchServer/src/main/java/ru/gravit/launchserver/binary/LauncherBinary.java

53 lines
1.4 KiB
Java
Raw Normal View History

2018-09-17 10:07:32 +03:00
package ru.gravit.launchserver.binary;
import ru.gravit.launcher.serialize.signed.DigestBytesHolder;
2018-09-17 10:07:32 +03:00
import ru.gravit.launchserver.LaunchServer;
import ru.gravit.utils.helper.IOHelper;
import ru.gravit.utils.helper.SecurityHelper;
2018-09-17 10:07:32 +03:00
2019-01-15 06:35:39 +03:00
import java.io.IOException;
import java.nio.file.Path;
2018-09-17 10:07:32 +03:00
public abstract class LauncherBinary {
public final LaunchServer server;
public Path syncBinaryFile;
private volatile DigestBytesHolder binary;
private volatile byte[] sign;
2018-09-17 10:07:32 +03:00
protected LauncherBinary(LaunchServer server, Path binaryFile) {
this.server = server;
syncBinaryFile = binaryFile;
}
2018-09-22 17:33:00 +03:00
protected LauncherBinary(LaunchServer server) {
2018-09-17 10:07:32 +03:00
this.server = server;
}
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 syncBinaryFile != null && IOHelper.isFile(syncBinaryFile);
2018-09-17 10:07:32 +03:00
}
2018-10-13 11:01:10 +03:00
public final DigestBytesHolder getBytes() {
2018-09-17 10:07:32 +03:00
return binary;
}
2018-11-08 15:30:16 +03:00
public final byte[] getSign() {
return sign;
}
2018-09-17 10:07:32 +03:00
2019-01-08 16:57:01 +03:00
public void init() {
}
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 DigestBytesHolder(IOHelper.read(syncBinaryFile), SecurityHelper.DigestAlgorithm.SHA512) : null;
2018-11-08 15:30:16 +03:00
sign = exists ? SecurityHelper.sign(IOHelper.read(syncBinaryFile), server.privateKey) : null;
2018-09-17 10:07:32 +03:00
return exists;
}
}