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

82 lines
3.1 KiB
Java
Raw Normal View History

2018-09-17 10:07:32 +03:00
package ru.gravit.launchserver.binary;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
2018-12-02 15:21:27 +03:00
import java.util.ArrayList;
2019-01-08 16:36:05 +03:00
import java.util.concurrent.atomic.AtomicLong;
import ru.gravit.launcher.Launcher;
2018-12-26 15:33:49 +03:00
import ru.gravit.launchserver.LaunchServer;
import ru.gravit.launchserver.binary.tasks.LauncherBuildTask;
import ru.gravit.launchserver.binary.tasks.MainBuildTask;
import ru.gravit.launchserver.binary.tasks.ProGuardBuildTask;
import ru.gravit.launchserver.binary.tasks.StripLineNumbersTask;
import ru.gravit.launchserver.binary.tasks.UnpackBuildTask;
2019-01-08 16:36:05 +03:00
import ru.gravit.utils.helper.CommonHelper;
2018-12-26 15:33:49 +03:00
import ru.gravit.utils.helper.IOHelper;
import ru.gravit.utils.helper.LogHelper;
2018-09-17 10:07:32 +03:00
public final class JARLauncherBinary extends LauncherBinary {
2019-01-08 16:36:05 +03:00
public final AtomicLong count;
public final Path runtimeDir;
public final Path guardDir;
2019-01-08 16:36:05 +03:00
public final Path buildDir;
2019-01-08 16:41:13 +03:00
public ArrayList<LauncherBuildTask> tasks;
2018-12-20 18:45:01 +03:00
public JARLauncherBinary(LaunchServer server) throws IOException {
super(server);
2019-01-08 16:36:05 +03:00
count = new AtomicLong(0);
syncBinaryFile = server.dir.resolve(server.config.binaryName + ".jar");
runtimeDir = server.dir.resolve(Launcher.RUNTIME_DIR);
guardDir = server.dir.resolve(Launcher.GUARD_DIR);
2019-01-08 16:36:05 +03:00
buildDir = server.dir.resolve("build");
2019-01-08 16:41:13 +03:00
tasks = new ArrayList<>();
tasks.add(new UnpackBuildTask(server));
tasks.add(new MainBuildTask(server));
if(server.config.enabledProGuard) tasks.add(new ProGuardBuildTask(server));
if(server.config.stripLineNumbers) tasks.add(new StripLineNumbersTask(server));
2018-12-20 18:45:01 +03:00
}
2018-12-20 18:45:01 +03:00
@Override
public void build() throws IOException {
LogHelper.info("Building launcher binary file");
2019-01-08 16:36:05 +03:00
count.set(0);
Path thisPath = null;
boolean isNeedDelete = false;
long time_start = System.currentTimeMillis();
long time_this = time_start;
for(LauncherBuildTask task : tasks)
{
LogHelper.subInfo("Task %s",task.getName());
Path oldPath = thisPath;
thisPath = task.process(oldPath);
long time_task_end = System.currentTimeMillis();
long time_task = time_task_end - time_this;
time_this = time_task_end;
if (isNeedDelete) Files.delete(oldPath);
isNeedDelete = task.allowDelete();
LogHelper.subInfo("Task %s processed from %d millis",task.getName(), time_task);
}
long time_end = System.currentTimeMillis();
IOHelper.move(thisPath, syncBinaryFile);
LogHelper.info("Build successful from %d millis",time_end - time_start);
2018-12-20 18:45:01 +03:00
}
2019-01-08 16:36:05 +03:00
public String nextName(String taskName) {
return String.format("%s-%s-%d.jar", server.config.projectName, taskName, count.getAndIncrement());
}
public Path nextPath(String taskName) {
return buildDir.resolve(nextName(taskName));
}
public Path nextPath(LauncherBuildTask task) {
return nextPath(task.getName());
}
public Path nextLowerPath(LauncherBuildTask task) {
return nextPath(CommonHelper.low(task.getName()));
}
2018-09-17 10:07:32 +03:00
}