-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess.cpp
307 lines (294 loc) · 9.87 KB
/
process.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#include "process.h"
// github에 올라온 커널 시뮬레이터 결과 출력 포맷을 그대로 이용함
// ofstream class를 이용하여 result file에 write
void print_status(Status status)
{
ofstream resultFile("result", ios::app);
if (resultFile.is_open())
{
// 0. 몇번째 cycle인지
// printf("[cycle #%d]\n", status.cycle);
resultFile << "[cycle #" << status.cycle << "]\n";
// 1. 현재 실행 모드 (user or kernel)
// printf("1. mode: %s\n", status.mode.c_str());
resultFile << "1. mode: " << status.mode.c_str() << "\n";
// 2. 현재 실행 명령어
// printf("2. command: %s\n", status.command.c_str());
resultFile << "2. command: " << status.command.c_str() << "\n";
// 3. 현재 실행중인 프로세스의 정보. 없을 시 none 출력
if (status.process_running == NULL)
{
// printf("3. running: none\n");
resultFile << "3. running: none\n";
}
else
{
Process *i = status.process_running;
// printf("3. running: %d(%s, %d)\n", i->pid, i->name.c_str(), i->ppid);
resultFile << "3. running: " << i->pid << "(" << i->name.c_str() << ", " << i->ppid << ")\n";
}
// 4. Physical memory of the whole system
resultFile << "4. physical memory:\n";
resultFile << "|";
for (int i = 0; i < PHYSICAL_MEM_SIZE; i++)
{
if (status.physicalMemory[i].isExist)
{
resultFile << to_string(status.physicalMemory[i].pid) + "(" + to_string(status.physicalMemory[i].pageID) + ")";
}
else
{
resultFile << "-";
}
if (i % 4 == 3)
{
resultFile << "|";
}
else
{
resultFile << " ";
}
}
resultFile << "\n";
// TODO: DEBUGGING
// Reference count
// resultFile << "4-1. pid(ref_count):\n";
// resultFile << "|";
// for (int i = 0; i < PHYSICAL_MEM_SIZE; i++)
// {
// if (status.physicalMemory[i].isExist)
// {
// resultFile << to_string(status.physicalMemory[i].pid) + "(" + to_string(status.physicalMemory[i].ref_count) + ")";
// }
// else
// {
// resultFile << "-";
// }
// if (i % 4 == 3)
// {
// resultFile << "|";
// }
// else
// {
// resultFile << " ";
// }
// }
// resultFile << "\n";
// 5. Virtual memory info of a process
if (status.process_running != NULL)
{
resultFile << "5. virtual memory:\n";
resultFile << "|";
for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
{
if (status.process_running->virtualMemory[i].isExist)
{
resultFile << to_string(status.process_running->virtualMemory[i].pageID);
}
else
{
resultFile << "-";
}
if (i % 4 == 3)
{
resultFile << "|";
}
else
{
resultFile << " ";
}
}
resultFile << "\n";
}
// 6. Page table of a process
if (status.process_running != NULL)
{
resultFile << "6. page table:\n";
resultFile << "|";
for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
{
if (status.process_running->pageTable[i].is_valid)
{
resultFile << status.process_running->pageTable[i].frameID;
}
else
{
resultFile << "-";
}
if (i % 4 == 3)
{
resultFile << "|";
}
else
{
resultFile << " ";
}
}
resultFile << "\n";
resultFile << "|";
for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
{
if (status.process_running->virtualMemory[i].isExist)
{
if (status.process_running->pageTable[i].protection == READ)
{
resultFile << "R";
}
else
{
resultFile << "W";
}
}
else
{
resultFile << "-";
}
if (i % 4 == 3)
{
resultFile << "|";
}
else
{
resultFile << " ";
}
}
resultFile << "\n";
}
// TODO: DEBUGGING
// 7. 부모의 page tabel
// if (status.process_ready.size() != 0 || status.process_waiting.size() != 0)
// {
// for (const auto process : status.process_ready)
// {
// resultFile << "7. page table of : " << process->pid << "\n";
// resultFile << "|";
// for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
// {
// if (process->pageTable[i].is_valid)
// {
// resultFile << process->pageTable[i].frameID;
// }
// else
// {
// resultFile << "-";
// }
// if (i % 4 == 3)
// {
// resultFile << "|";
// }
// else
// {
// resultFile << " ";
// }
// }
// resultFile << "\n";
// resultFile << "|";
// for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
// {
// if (process->virtualMemory[i].isExist)
// {
// if (process->pageTable[i].protection == READ)
// {
// resultFile << "R";
// }
// else
// {
// resultFile << "W";
// }
// }
// else
// {
// resultFile << "-";
// }
// if (i % 4 == 3)
// {
// resultFile << "|";
// }
// else
// {
// resultFile << " ";
// }
// }
// resultFile << "\n";
// }
// for (const auto process : status.process_waiting)
// {
// resultFile << "7. page table of : " << process->pid << "\n";
// resultFile << "|";
// for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
// {
// if (process->pageTable[i].is_valid)
// {
// resultFile << process->pageTable[i].frameID;
// }
// else
// {
// resultFile << "-";
// }
// if (i % 4 == 3)
// {
// resultFile << "|";
// }
// else
// {
// resultFile << " ";
// }
// }
// resultFile << "\n";
// resultFile << "|";
// for (int i = 0; i < VIRTUAL_MEM_SIZE; i++)
// {
// if (process->virtualMemory[i].isExist)
// {
// if (process->pageTable[i].protection == READ)
// {
// resultFile << "R";
// }
// else
// {
// resultFile << "W";
// }
// }
// else
// {
// resultFile << "-";
// }
// if (i % 4 == 3)
// {
// resultFile << "|";
// }
// else
// {
// resultFile << " ";
// }
// }
// resultFile << "\n";
// }
// }
// 매 cycle 간의 정보는 두번의 개행으로 구분
resultFile << "\n";
resultFile.close();
}
}
void preprocessing(deque<Process *> &process_ready, vector<Process *> &process_waiting)
{
// sleep 시간 갱신 & 프로세스 상태 갱신 & process_ready 갱신
if (process_waiting.size())
{
for (vector<Process *>::iterator iter = process_waiting.begin(); iter != process_waiting.end(); iter++)
{
if ((*iter)->waiting_type == 'S')
{
// sleep 시간 갱신
(*iter)->remaining_cycle--;
if ((*iter)->remaining_cycle <= 0)
{
// 프로세스 상태 갱신 waiting(S) -> ready
(*iter)->state = READY;
process_ready.push_back(*iter);
process_waiting.erase(iter--);
}
}
}
}
}