-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskManager.cpp
153 lines (142 loc) · 4.19 KB
/
TaskManager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include"ProcessManager.h"
#include"MemoryManager.h"
#include"DeviceManager.h"
using namespace std;
class TaskManager {
private:
MemoryManager MM;
ProcessManager PM;
DeviceManager DM;
struct PCB* CPU;
int timeslice;//1个timeslice表示0.1个时间片
public:
TaskManager() {
CPU = NULL;
timeslice = 0;
}
PCB_Queue getCreated_PCBQueue(){
return PM.getCreated_PCBQueue();
};
PCB_Queue* getReady_PCBQueue(){
return PM.getReady_PCBQueue();
};
PCB ** getObstruct_PCBList(){
return PM.getObstruct_PCBList();
};
PCB * getExecuting_PCB(){
return CPU;
}
void createNewTask(string TaskName){
}
void terminateProcess(string processName){
if(CPU!= nullptr && CPU->PName == processName){
cout<<"sucessfully delete "<<CPU->PName <<endl; //仅测试使用
MM.release(CPU->PBlock);
delete CPU;
CPU = nullptr;
}
else{
int DeviceNo =-1,No = -1;
PCB * process = PM.popProcessName(processName,DeviceNo,No);
if(process == nullptr){
cout<<"did not find the process!"<<endl;
return;
}
cout<<"sucessfully delete "<<process->PName <<endl; //仅测试使用
MM.release(process->PBlock);
PM.deleteProcess(process);
if(DeviceNo != -1){
DM.deleteDevice(DeviceNo,No);
}
}
}
void input(int PID,std::string PName, std::string UserID, int Priority, struct RunInfo PRunInfo, int size) {
//输入进程并创建
PM.createProcess(PID, PName, UserID, Priority, PRunInfo, size);
}
void allocateMemory() {
//尝试为新建进程中的每一个进程分配一次内存
struct PCB* tryingAllocPCB = NULL;
struct PCB* triedAllocPCB = NULL;
while ((tryingAllocPCB = PM.getCreatedProcess(triedAllocPCB)) != NULL) {
if ((tryingAllocPCB->PBlock = MM.alloc(tryingAllocPCB->size)) != NULL) {
PM.popCreatedProcess(tryingAllocPCB);
PM.putProcessReady(tryingAllocPCB, true);
cout << tryingAllocPCB->PID << "已分配内存" << endl;//仅做测试使用
}
else {
triedAllocPCB = tryingAllocPCB;
}
}
}
void run() {
//运行进程和设备
if (CPU == NULL) {
CPU = PM.dispatchProcess();
if(CPU != nullptr) cout << CPU->PID << "被调度" << endl;
timeslice = 0;
}
if (CPU != NULL) {
//cout << CPU->PRunInfo.OccupyTime << endl;
//cout << timeslice << endl;
struct interrupt intSemaphore = PM.runProcess(CPU);
vector<int>doneDeviceNo = DM.runDevice();
timeslice++;
//cout << intSemaphore.semaphore << endl;
if (intSemaphore.semaphore == 1) {
cout << CPU->PID << "进程中断" << endl;//仅做测试使用
PM.putProcessObstruct(CPU, intSemaphore.DeviceNo);
DM.occupyDevice(intSemaphore.DeviceNo, intSemaphore.OccupyTime);
CPU = NULL;
}
else if (intSemaphore.semaphore == 2) {
cout << CPU->PID << "进程结束" << endl;//仅做测试使用
MM.release(CPU->PBlock);
PM.deleteProcess(CPU);
CPU = NULL;
}
else {
if (timeslice == 10) {
cout << CPU->PID << "时间片满" << endl;//仅做测试使用
PM.putProcessReady(CPU, false);
CPU = NULL;
}
}
for (int i = 0; i < doneDeviceNo.size(); i++) {
PM.popProcessObstruct(doneDeviceNo[i]);
}
}
//更新CPU利用率
PM.renewCpuUtilization();
}
~TaskManager() {
CPU = NULL;
}
};
int main() {
TaskManager TM;
RunInfo ri;
ri.RequireTime = 7;
ri.OccupyTime = 0;
for (int i = 0; i < DEVICENUM; i++) {
ri.DeviceRunInfo[0][i] = ri.DeviceRunInfo[1][i] = 0;
}
string name = "a";
for (int i = 0; i < 5; i++) {
ri.DeviceRunInfo[0][i] = i;
ri.DeviceRunInfo[1][i] = 2;
TM.input(i, name.append(to_string(i)), "xbj", 3, ri, 1000);
//ri.DeviceRunInfo[0][i] = 0;
ri.DeviceRunInfo[1][i] = 0;
}
for (int j = 0; j < 100; j++) {
cout << j << endl;
TM.allocateMemory();
TM.run();
}
TM.terminateProcess("a01234");
TM.terminateProcess("a0123");
cout << "没死!" << endl;
system("pause");
return 0;
}