mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-10 17:49:40 +03:00
113 lines
4.2 KiB
Java
113 lines
4.2 KiB
Java
|
package pro.gravit.launchserver.binary;
|
||
|
|
||
|
import pro.gravit.launchserver.binary.tasks.LauncherBuildTask;
|
||
|
import pro.gravit.utils.helper.CommonHelper;
|
||
|
import pro.gravit.utils.helper.IOHelper;
|
||
|
import pro.gravit.utils.helper.LogHelper;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.nio.file.Files;
|
||
|
import java.nio.file.Path;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
import java.util.Optional;
|
||
|
import java.util.concurrent.atomic.AtomicLong;
|
||
|
import java.util.function.Predicate;
|
||
|
import java.util.stream.Collectors;
|
||
|
|
||
|
public class BinaryPipeline {
|
||
|
public final List<LauncherBuildTask> tasks = new ArrayList<>();
|
||
|
public final AtomicLong count = new AtomicLong(0);
|
||
|
public final Path buildDir;
|
||
|
public final String nameFormat;
|
||
|
|
||
|
public BinaryPipeline(Path buildDir, String nameFormat) {
|
||
|
this.buildDir = buildDir;
|
||
|
this.nameFormat = nameFormat;
|
||
|
}
|
||
|
|
||
|
public void addCounted(int count, Predicate<LauncherBuildTask> pred, LauncherBuildTask taskAdd) {
|
||
|
List<LauncherBuildTask> indexes = new ArrayList<>();
|
||
|
tasks.stream().filter(pred).forEach(indexes::add);
|
||
|
indexes.forEach(e -> tasks.add(tasks.indexOf(e) + count, taskAdd));
|
||
|
}
|
||
|
|
||
|
public void replaceCounted(int count, Predicate<LauncherBuildTask> pred, LauncherBuildTask taskRep) {
|
||
|
List<LauncherBuildTask> indexes = new ArrayList<>();
|
||
|
tasks.stream().filter(pred).forEach(indexes::add);
|
||
|
indexes.forEach(e -> tasks.set(tasks.indexOf(e) + count, taskRep));
|
||
|
}
|
||
|
|
||
|
public void addPre(Predicate<LauncherBuildTask> pred, LauncherBuildTask taskAdd) {
|
||
|
addCounted(-1, pred, taskAdd);
|
||
|
}
|
||
|
|
||
|
public void add(Predicate<LauncherBuildTask> pred, LauncherBuildTask taskAdd) {
|
||
|
addCounted(0, pred, taskAdd);
|
||
|
}
|
||
|
|
||
|
public void addAfter(Predicate<LauncherBuildTask> pred, LauncherBuildTask taskAdd) {
|
||
|
addCounted(1, pred, taskAdd);
|
||
|
}
|
||
|
|
||
|
public void replacePre(Predicate<LauncherBuildTask> pred, LauncherBuildTask taskRep) {
|
||
|
replaceCounted(-1, pred, taskRep);
|
||
|
}
|
||
|
|
||
|
public void replace(Predicate<LauncherBuildTask> pred, LauncherBuildTask taskRep) {
|
||
|
replaceCounted( 0, pred, taskRep);
|
||
|
}
|
||
|
|
||
|
public void replaceAfter(Predicate<LauncherBuildTask> pred, LauncherBuildTask taskRep) {
|
||
|
replaceCounted(1, pred, taskRep);
|
||
|
}
|
||
|
|
||
|
public <T extends LauncherBuildTask> List<T> getTasksByClass(Class<T> taskClass) {
|
||
|
return tasks.stream().filter(taskClass::isInstance).map(taskClass::cast).collect(Collectors.toList());
|
||
|
}
|
||
|
|
||
|
public <T extends LauncherBuildTask> Optional<T> getTaskByClass(Class<T> taskClass) {
|
||
|
return tasks.stream().filter(taskClass::isInstance).map(taskClass::cast).findFirst();
|
||
|
}
|
||
|
|
||
|
public void build(Path target, boolean deleteTempFiles) throws IOException {
|
||
|
LogHelper.info("Building launcher binary file");
|
||
|
count.set(0); // set jar number
|
||
|
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 && deleteTempFiles) Files.deleteIfExists(oldPath);
|
||
|
isNeedDelete = task.allowDelete();
|
||
|
LogHelper.subInfo("Task %s processed from %d millis", task.getName(), time_task);
|
||
|
}
|
||
|
long time_end = System.currentTimeMillis();
|
||
|
if (isNeedDelete && deleteTempFiles) IOHelper.move(thisPath, target);
|
||
|
else IOHelper.copy(thisPath, target);
|
||
|
LogHelper.info("Build successful from %d millis", time_end - time_start);
|
||
|
}
|
||
|
|
||
|
public String nextName(String taskName) {
|
||
|
return String.format(nameFormat, 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()));
|
||
|
}
|
||
|
}
|