Заготовка планировщика.
This commit is contained in:
@@ -4,6 +4,7 @@ import Common.UI.Menus_2023.MenuBarButton;
|
||||
import Common.UI.Menus_2023.VisualiserMenuBar;
|
||||
import Common.UI.UI;
|
||||
import Repository.Component.PerformanceAnalyzer.PerformanceAnalyzer;
|
||||
import SapforTestingSystem.SapforTestingPlaner.SapforTestingPlanner;
|
||||
import Visual_DVM_2021.Passes.PassCode_2021;
|
||||
import Visual_DVM_2021.Passes.Pass_2021;
|
||||
|
||||
@@ -50,17 +51,17 @@ public class MainMenuBar extends VisualiserMenuBar {
|
||||
//-
|
||||
setPreferredSize(new Dimension(0, 30));
|
||||
//---
|
||||
/*
|
||||
|
||||
add(new MenuBarButton() {
|
||||
{
|
||||
setIcon("/icons/Apply.png");
|
||||
setToolTipText("Test");
|
||||
addActionListener(e -> {
|
||||
Current.getProject().hasSubdirectories();
|
||||
SapforTestingPlanner planner =new SapforTestingPlanner();
|
||||
planner.Start();
|
||||
});
|
||||
}
|
||||
});
|
||||
*/
|
||||
//---
|
||||
ShowProject(false);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package SapforTestingSystem.SapforTestingPlaner;
|
||||
import Common.Global;
|
||||
import Common.Utils.Utils;
|
||||
import SapforTestingSystem.ThreadsPlanner.ThreadsPlanner;
|
||||
public class SapforTestingPlanner extends ThreadsPlanner {
|
||||
public SapforTestingPlanner() {
|
||||
super(2000, 4);
|
||||
//--
|
||||
for (int i = 1; i <= 20; ++i) {
|
||||
int thread_number = i;
|
||||
addThread(() -> {
|
||||
for (int j=1; j<=4; ++j) {
|
||||
Global.Log.Print("thread " + thread_number+" j="+j);
|
||||
Utils.sleep(1000);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
10
src/SapforTestingSystem/ThreadTask/ThreadTask.java
Normal file
10
src/SapforTestingSystem/ThreadTask/ThreadTask.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package SapforTestingSystem.ThreadTask;
|
||||
import Common.Utils.Utils;
|
||||
public class ThreadTask {
|
||||
public int id = Utils.Nan;
|
||||
public Thread thread;
|
||||
public ThreadTask(int id_in, Runnable runnable){
|
||||
id = id_in;
|
||||
thread = new Thread(runnable);
|
||||
}
|
||||
}
|
||||
81
src/SapforTestingSystem/ThreadsPlanner/ThreadsPlanner.java
Normal file
81
src/SapforTestingSystem/ThreadsPlanner/ThreadsPlanner.java
Normal file
@@ -0,0 +1,81 @@
|
||||
package SapforTestingSystem.ThreadsPlanner;
|
||||
import Common.Global;
|
||||
import Common.Utils.InterruptThread;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Vector;
|
||||
public abstract class ThreadsPlanner {
|
||||
//-->
|
||||
Thread interruptThread = new InterruptThread(5000, () -> {
|
||||
System.exit(0);
|
||||
return null;
|
||||
});
|
||||
protected int maxKernels;
|
||||
protected int kernels;
|
||||
//---
|
||||
protected int threadMaxId = 0;
|
||||
protected int wait_ms;
|
||||
protected LinkedHashMap<Integer, Thread> threads = new LinkedHashMap<>();
|
||||
protected Vector<Integer> activeThreads = new Vector<>();
|
||||
protected Vector<Integer> waitingThreads = new Vector<>();
|
||||
//--
|
||||
public ThreadsPlanner(int wait_ms_in, int maxKernels_in) {
|
||||
wait_ms = wait_ms_in;
|
||||
maxKernels = maxKernels_in;
|
||||
kernels = maxKernels;
|
||||
}
|
||||
//--
|
||||
public void Start() {
|
||||
Global.Log.Print("Planner started");
|
||||
try {
|
||||
//--
|
||||
while (!waitingThreads.isEmpty() || !activeThreads.isEmpty()) {
|
||||
Global.Log.Print("Waiting: " + waitingThreads.size() + "; Running: " + activeThreads.size() + ".");
|
||||
checkActiveThreads();
|
||||
tryStartThreads();
|
||||
Thread.sleep(wait_ms);
|
||||
}
|
||||
//--
|
||||
} catch (Exception exception) {
|
||||
exception.printStackTrace();
|
||||
Global.Log.PrintException(exception);
|
||||
}
|
||||
Global.Log.Print("Planner finished");
|
||||
finalize();
|
||||
}
|
||||
protected void checkActiveThreads() throws Exception {
|
||||
Vector<Integer> toExclude = new Vector<>();
|
||||
//--
|
||||
for (int i : activeThreads) {
|
||||
Thread thread = threads.get(i);
|
||||
if (!thread.isAlive()) {
|
||||
toExclude.add(i);
|
||||
kernels++;
|
||||
}
|
||||
}
|
||||
activeThreads.removeAll(toExclude);
|
||||
//--
|
||||
}
|
||||
protected void tryStartThreads() throws Exception {
|
||||
Vector<Integer> toExclude = new Vector<>();
|
||||
//-
|
||||
for (int i : waitingThreads) {
|
||||
if (kernels > 0) {
|
||||
Thread thread = threads.get(i);
|
||||
thread.start();
|
||||
activeThreads.add(i);
|
||||
kernels--;
|
||||
toExclude.add(i);
|
||||
} else break;
|
||||
}
|
||||
waitingThreads.removeAll(toExclude);
|
||||
}
|
||||
protected void finalize() {
|
||||
}
|
||||
protected void addThread(Runnable runnable) {
|
||||
Thread thread = new Thread(runnable);
|
||||
threads.put(threadMaxId, thread);
|
||||
waitingThreads.add(threadMaxId);
|
||||
threadMaxId++;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user