2024-10-09 22:21:57 +03:00
|
|
|
package _VisualDVM.GlobalData.Machine;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Objects.DBObject;
|
|
|
|
|
import Common.Database.Tables.FKBehaviour;
|
|
|
|
|
import Common.Database.Tables.FKCurrentObjectBehaviuor;
|
|
|
|
|
import Common.Database.Tables.FKDataBehaviour;
|
|
|
|
|
import Common.Database.Tables.iDBTable;
|
2024-10-16 21:58:46 +03:00
|
|
|
import Common.Passes.PassCode_;
|
2024-10-14 15:19:13 +03:00
|
|
|
import Common.Visual.DataSetControlForm;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.GlobalData.Compiler.Compiler;
|
|
|
|
|
import _VisualDVM.GlobalData.DVMParameter.DVMParameter;
|
|
|
|
|
import _VisualDVM.GlobalData.EnvironmentValue.EnvironmentValue;
|
2024-10-20 17:27:58 +03:00
|
|
|
import _VisualDVM.GlobalData.Machine.UI.MachinesForm;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.GlobalData.Makefile.Makefile;
|
|
|
|
|
import _VisualDVM.GlobalData.Module.Module;
|
|
|
|
|
import _VisualDVM.GlobalData.RunConfiguration.RunConfiguration;
|
|
|
|
|
import _VisualDVM.GlobalData.Tasks.CompilationTask.CompilationTask;
|
|
|
|
|
import _VisualDVM.GlobalData.Tasks.RunTask.RunTask;
|
|
|
|
|
import _VisualDVM.GlobalData.User.User;
|
2024-10-16 20:45:59 +03:00
|
|
|
import _VisualDVM.Passes.PassCode;
|
2023-09-17 22:13:42 +03:00
|
|
|
|
2024-10-17 20:04:16 +03:00
|
|
|
import javax.swing.*;
|
2023-09-17 22:13:42 +03:00
|
|
|
import java.util.LinkedHashMap;
|
|
|
|
|
public class MachinesDBTable extends iDBTable<Machine> {
|
|
|
|
|
public MachinesDBTable() {
|
|
|
|
|
super(Machine.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public LinkedHashMap<Class<? extends DBObject>, FKBehaviour> getFKDependencies() {
|
|
|
|
|
LinkedHashMap<Class<? extends DBObject>, FKBehaviour> res = new LinkedHashMap<>();
|
|
|
|
|
//-
|
|
|
|
|
res.put(User.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.ACTIVE));
|
|
|
|
|
res.put(Compiler.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.ACTIVE));
|
|
|
|
|
res.put(Makefile.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.ACTIVE));
|
|
|
|
|
res.put(RunConfiguration.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.ACTIVE));
|
|
|
|
|
//-
|
|
|
|
|
res.put(Module.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.PASSIVE));
|
|
|
|
|
res.put(EnvironmentValue.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.PASSIVE));
|
|
|
|
|
res.put(DVMParameter.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.PASSIVE));
|
|
|
|
|
res.put(CompilationTask.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.ACTIVE));
|
|
|
|
|
res.put(RunTask.class, new FKBehaviour(FKDataBehaviour.DELETE, FKCurrentObjectBehaviuor.PASSIVE));
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
@Override
|
2024-10-17 20:04:16 +03:00
|
|
|
protected DataSetControlForm createUI(JPanel mountPanel) {
|
2024-10-20 17:27:58 +03:00
|
|
|
return new MachinesForm(this, mountPanel);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
public boolean LocalMachineExists() {
|
|
|
|
|
return Data.values().stream().anyMatch(machine -> machine.type.equals(MachineType.Local));
|
|
|
|
|
}
|
2024-10-14 20:57:18 +03:00
|
|
|
@Override
|
2024-10-16 21:58:46 +03:00
|
|
|
public PassCode_ getDeletePassCode() {
|
|
|
|
|
return PassCode.DeleteMachine;
|
|
|
|
|
}
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|