Files
VisualSapfor/src/Visual_DVM_2021/Passes/All/SPF_InsertIncludesPass.java

48 lines
1.9 KiB
Java
Raw Normal View History

package Visual_DVM_2021.Passes.All;
2024-10-07 14:22:52 +03:00
import Common.Utils.CommonUtils;
import Common_old.UI.Selectable;
import Common_old.UI.UI;
2023-09-17 22:13:42 +03:00
import ProjectData.SapforData.Includes.DependencyInfo;
import ProjectData.SapforData.Includes.FileInfo;
import Visual_DVM_2021.Passes.PassCode_2021;
import Visual_DVM_2021.Passes.SapforTransformation;
2023-09-17 22:13:42 +03:00
import java.util.Vector;
import java.util.stream.Collectors;
public class SPF_InsertIncludesPass extends SapforTransformation {
@Override
protected PassCode_2021 necessary() {
return PassCode_2021.SPF_GetIncludeDependencies;
}
@Override
protected boolean canStart(Object... args) throws Exception {
if (super.canStart(args)) {
if (target.numAddicted <= 0) {
Log.Writeln_("Не найдено файлов, имеющих зависимости по включению.");
return false;
}
Vector<String> Result = new Vector<>();
for (FileInfo fileInfo : target.addictedFiles.values()) {
Vector<DependencyInfo> selected_children = fileInfo.dependencies.stream().filter(Selectable::isSelected).collect(Collectors.toCollection(Vector::new));
if (!selected_children.isEmpty()) {
Result.add(fileInfo.file);
Result.add(String.valueOf(selected_children.size()));
for (DependencyInfo di : selected_children)
Result.add(di.file);
}
}
if (Result.isEmpty()) {
Log.Writeln_("Не отмечено ни одного заголовка для подстановки");
return false;
}
2024-10-07 14:22:52 +03:00
Options = CommonUtils.toU(String.join("|", Result));
2023-09-17 22:13:42 +03:00
return true;
}
return false;
}
@Override
protected void FocusBeforeStart() {
UI.getMainWindow().getProjectWindow().FocusDependencies();
}
}