-
Notifications
You must be signed in to change notification settings - Fork 1
/
cpu_scheduler_linux.c
480 lines (463 loc) · 15.5 KB
/
cpu_scheduler_linux.c
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
#include <stdio.h>
#include <stdlib.h>
int menu(){
int choice;
system("clear");
printf("\n\n CPU SCHEDULER");
printf("\n-------------------------------------------------------------------------------");
printf("\n Choose the algorithm you want to use to simulate the scheduler. \n");
printf("\n < 1 > Firts-Come, First-Serve (FCFS)");
printf("\n < 2 > Shortest-Job-First- (SRTF) ");
printf("\n < 3 > Priority scheduler ");
printf("\n < 4 > Round Robin (RR) ");
printf("\n < 5 > Exit \n");
printf("\n Your choice: ");
scanf("%i", &choice);
return choice;
}
int painel(){
int choice;
system("clear");
printf("\n\n CPU SCHEDULER");
printf("\n-------------------------------------------------------------------------------\n\n");
printf(" Process definition.\n\n");
printf("\n < 1 > Use processes established by the program.");
printf("\n < 2 > Introduce new processes.");
printf("\n\n Your choice: ");
scanf("%i", &choice);
if (choice>2)
painel();
else
return choice;
}
void top(){
system("clear");
printf("\n\n CPU SCHEDULER");
printf("\n-------------------------------------------------------------------------------\n\n");
}
struct processes{
int id;
int dur;
int prio;
int execu;
int esp;
struct processes *next;
/*
id - process identification
dur - process duration time
exe - process runtime
esp - process waiting time
*/
};
struct processes *process_input(int id, int dur, int prio){
struct processes *loc;
loc = (struct processes*)malloc(sizeof(struct processes));
if(loc == NULL){
printf("Allocation error.\nEnd of execution\n");
exit(1);
};
loc->id = id;
loc->dur = dur;
loc->prio = prio;
loc->execu = 0;
loc->esp = 0;
loc->next = NULL;
}
void list_processes(struct processes *loc){
struct processes *tmp = loc;
printf("\n\n\t\t\tList of processes\n\n");
while(tmp != NULL){
printf("\tProcess: %d\tPriority: %d\tDuration: %d\n", tmp->id, tmp->prio, tmp->dur);
tmp = tmp->next;
}
printf("\n");
}
void fcfs(struct processes *loc, int process_number) {
int time = 0, start, end, waiting_time=0, turnaround_time=0;
int p[process_number], i=0;
struct processes *tmp = loc;
printf("\n\t\tFirts-Come, First-Serve (FCFS) Scheduling\n\n");
while (tmp != NULL){
start = time;
time += tmp->dur;
p[i] = time;
end = time;
printf("\tProcess: %d\t Duration: %d\tWaiting time: %d \tFinish: %d\n", tmp->id, tmp->dur, start, end);
waiting_time += start;
tmp = tmp->next;
i++;
}
i=0;
printf("\n\t\tAverage Waiting Time= %f\n\n\n",waiting_time*1.0/process_number);
printf("\t Visually simulating scaling.");
printf("\n\n\t\t ");
for (i=0; i<process_number; i++){
printf("| P%d ", i+1);
}
printf("|");
printf("\n\t\t 0 ");
for (i=0; i<process_number; i++)
printf(" %d ", p[i]);
}
void sjf(struct processes *loc, int process_number){
int execution_time, shortest, start, end, waiting_time, duration;
struct processes *copy, *src_tmp, *tmp, *before_shortest;
printf("\n\t\tShortest-Job-First- (SRTF)\n\n ");
src_tmp = loc;
copy = tmp = NULL;
while (src_tmp != NULL){/*making copies of the processes*/
if(copy == NULL){
copy = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = copy;
}
else{
tmp->next = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = tmp->next;
}
src_tmp = src_tmp->next;
}
execution_time = 0;
while(copy != NULL){/*new process search*/
before_shortest = NULL;
shortest = copy->dur;
tmp = copy->next;
src_tmp = copy;
while(tmp != NULL){
if(tmp->dur < shortest){
shortest = tmp->dur;
before_shortest = src_tmp;
}
src_tmp = tmp;
tmp = tmp->next;
}
if(before_shortest == NULL){/*process is executed and copy is killed and allocates the 1st process s is less*/
start = execution_time;
execution_time += copy->dur;
duration = copy->dur;
end = execution_time;
printf("\tProcess: %d\t Duration: %d\tWaiting time: %d \tFinish: %d\n", copy->id, duration, start, end);
waiting_time += end;
src_tmp = copy;
copy = copy->next;
free(src_tmp);
}
else{ /*allocates the 1st process if there is no smaller one*/
tmp = before_shortest->next;
start = execution_time;
execution_time += tmp->dur;
duration = tmp->dur;
end = execution_time;
printf("\tProcess: %d\t Duration: %d\tWaiting time: %d \tFinish: %d\n", tmp->id, duration, start, end);
before_shortest->next = tmp->next;
free(tmp);
}
}
printf("\n\t\tAverage Waiting Time= %f\n",waiting_time*1.0/process_number);
}
void sjf_simulator(struct processes *loc, int process_number){
int execution_time, shortest, start, end, duration, i=0, p[process_number];
struct processes *copy, *src_tmp, *tmp, *before_shortest;
printf("\n\t Visually simulating scaling\n\n ");
src_tmp = loc;
copy = tmp = NULL;
while (src_tmp != NULL){/*copying the processes*/
if(copy == NULL){
copy = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = copy;
}
else{
tmp->next = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = tmp->next;
}
src_tmp = src_tmp->next;
}
execution_time = 0;
printf("\t\t ");
while(copy != NULL){/*new process search*/
before_shortest = NULL;
shortest = copy->dur;
tmp = copy->next;
src_tmp = copy;
while(tmp != NULL){
if(tmp->dur < shortest){
shortest = tmp->dur;
before_shortest = src_tmp;
}
src_tmp = tmp;
tmp = tmp->next;
}
if(before_shortest == NULL){/*process is executed and copy is killed and allocates the 1st process s is less*/
start = execution_time;
execution_time += copy->dur;
duration = copy->dur;
end = execution_time;
p[i]=execution_time;
printf("| P%d ", copy->id);
src_tmp = copy;
copy = copy->next;
free(src_tmp);
}
else{ /*allocates the 1st process if there is no smaller one*/
tmp = before_shortest->next;
start = execution_time;
execution_time += tmp->dur;
duration = tmp->dur;
p[i]=execution_time;
end = execution_time;
printf("| P%d ", tmp->id);
before_shortest->next = tmp->next;
free(tmp);
}
i++;
}
printf("|");
printf("\n\t\t 0 ");
for (i=0; i<process_number; i++)
printf(" %d ", p[i]);
}
void priority_scheduler(struct processes *loc, int process_number){
int execution_time, start, maior, end, waiting_time, duration;
struct processes *copy, * src_tmp, *tmp, *maior_prio;
printf("\n\t\tPriority scheduler \n\n");
src_tmp = loc;
copy = tmp = NULL;
while (src_tmp != NULL){/*copying the processes*/
if(copy == NULL){
copy = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = copy;
}
else{
tmp->next = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = tmp->next;
}
src_tmp = src_tmp->next;
}
execution_time = 0;
while(copy != NULL){/*check next process*/
maior_prio = NULL;
maior = copy->prio;
tmp = copy->next;
src_tmp = copy;
while(tmp != NULL){
if(tmp->prio < maior){
maior = tmp->prio;
maior_prio = src_tmp;
}
src_tmp = tmp;
tmp = tmp->next;
}
if(maior_prio == NULL){/*ver se 1º tem prioridade maior*/
start = execution_time;
execution_time += copy->dur;
duration = copy->dur;
end = execution_time;
printf("\tProcess: %d\t Duration: %d\tWaiting time: %d \tFinish: %d\n", copy->id, duration, start, end);
waiting_time += end;
src_tmp = copy->next;
free(copy);
copy = src_tmp;
}
else {/*if 1st does not have higher priority*/
tmp = maior_prio->next;
start = execution_time;
execution_time += tmp->dur;
duration = tmp->dur;
end = execution_time;
printf("\tProcess: %d\t Duration: %d\tWaiting time: %d \tFinish: %d\n", tmp->id, duration, start, end);
maior_prio->next = tmp->next;
free(tmp);
}
}
printf("\n\t\tAverage Waiting Time= %f\n",waiting_time*1.0/process_number);
}
void priority_scheduler_simulator(struct processes *loc, int process_number){
int execution_time, start, maior, end, duration, i=0, p[process_number];
struct processes *copy, * src_tmp, *tmp, *maior_prio;
printf("\n\t Visually simulating scaling\n\n ");
src_tmp = loc;
copy = tmp = NULL;
while (src_tmp != NULL){/*copying the processes*/
if(copy == NULL){
copy = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = copy;
}
else{
tmp->next = process_input(src_tmp->id, src_tmp->dur, src_tmp->prio);
tmp = tmp->next;
}
src_tmp = src_tmp->next;
}
execution_time = 0;
printf("\t\t ");
while(copy != NULL){/*check next process*/
maior_prio = NULL;
maior = copy->prio;
tmp = copy->next;
src_tmp = copy;
while(tmp != NULL){
if(tmp->prio < maior){
maior = tmp->prio;
maior_prio = src_tmp;
}
src_tmp = tmp;
tmp = tmp->next;
}
if(maior_prio == NULL){/*see if 1st has higher priority*/
start = execution_time;
execution_time += copy->dur;
p[i]=execution_time;
duration = copy->dur;
end = execution_time;
printf("| P%d ", copy->id);
src_tmp = copy->next;
free(copy);
copy = src_tmp;
}
else {/* if 1st does not have higher priority*/
tmp = maior_prio->next;
start = execution_time;
execution_time += tmp->dur;
p[i]=execution_time;
duration = tmp->dur;
end = execution_time;
printf("| P%d ", tmp->id);
maior_prio->next = tmp->next;
free(tmp);
}
i++;
}
printf("|");
printf("\n\t\t 0 ");
for (i=0; i<process_number; i++)
printf(" %d ", p[i]);
}
void robbin_round(struct processes *loc, int quantum, int process_number){
int count, j, time, remain, flag=0;
int waiting_time=0, turnaround_time=0, at[10], bt[10], rt[10];
remain=process_number;
struct processes *copy, *src_tmp, *tmp, *slot;
printf("\n\t\tRound Robin (RR) - Quantum: %d\n", quantum);
src_tmp = loc;
for(count=0; count < process_number; count++){
bt[count] = src_tmp->dur;
rt[count] = bt[count];
src_tmp = src_tmp->next;
}
for(time = 0, count = 0; remain !=0;){
at[count]=time;
if(rt[count] <= quantum && rt[count] > 0){
time+=rt[count];
rt[count]=0;
flag=1;
}
else if(rt[count]>0){
rt[count]-=quantum;
time+=quantum;
}
if(rt[count]==0 && flag==1){
remain--;
printf("\tProcess: %d\tWaiting time: %d \tFinish: %d\n", count+1, time-bt[count], time);
waiting_time+=time-bt[count];
turnaround_time+=time;
flag=0;
}
if(count == process_number-1)
count=0;
else if(at[count]<=time)
count++;
else
count=0;
}
printf("\n\t Average Waiting Time= %f\n",waiting_time*1.0/process_number);
printf("\t Avgerage Turnaround Time = %f",turnaround_time*1.0/process_number);
free(src_tmp);
}
int main(){
int choice, es_proc, process_number, i, id, dur, prio, position=0;
do{
if (position==0){
es_proc=painel();
}
else
choice = menu();
struct processes *list_proc, *tmp_proc;
if(es_proc == 1){
process_number = 4;
list_proc = process_input(1, 12, 2);
list_proc->next = process_input(2, 2, 1); tmp_proc = list_proc->next;
tmp_proc->next = process_input(3, 8, 4); tmp_proc = tmp_proc->next;
tmp_proc->next = process_input(4, 10, 3);
choice = menu();
}
else if(es_proc==2){
top();
printf("\n\n NOTE: Choose preferably for more than 3 processes.");
printf("\n\n Enter the number of processes: ");
scanf("%d", &process_number);
for(i=0; i<process_number;i++){
system("clear");
top();
printf("\n Process %d: ", i+1);
printf("\n\nEnter your duration time (Burst time) P[%d]: ", i+1);
scanf("%d", &dur);
printf("Enter your execution priority P[%d]: ", i+1);
scanf("%d", &prio);
if(i==0)
list_proc = process_input(i+1, dur, prio);
else if(i==1){
list_proc->next = process_input(i+1, dur, prio); tmp_proc = list_proc->next;
}
else if(i==process_number-1){
tmp_proc->next = process_input(i+1, dur, prio);
}
else{
tmp_proc->next = process_input(i+1, dur, prio); tmp_proc = tmp_proc->next;
}
}
position=1;
choice = menu();
}
if(choice == 1){
system("clear");
list_processes(list_proc);
fcfs(list_proc, process_number);
printf("\n\n\t< 1 > To go back\nChoose: ");
int i;
scanf("%d", &i);
}
else if (choice == 2){
system("clear");
list_processes(list_proc);
sjf(list_proc, process_number);
sjf_simulator(list_proc, process_number);
printf("\n\n\t< 1 > To go back\nChoose: ");
int i;
scanf("%d", &i);
}
else if (choice == 3){
system("clear");
list_processes(list_proc);
priority_scheduler(list_proc, process_number);
priority_scheduler_simulator(list_proc, process_number);
printf("\n\n\t< 1 > To go back\nChoose: ");
int i;
scanf("%d", &i);
}
else if(choice == 4){
system("clear");
int quantum;
list_processes(list_proc);
printf("\nEnter the desired time quantum: ");
scanf("%d", &quantum);
robbin_round(list_proc, quantum, process_number);
printf("\n\n\t< 1 > To go back\nChoose: ");
int i;
scanf("%d", &i);
}
else if(choice == 5){
printf("\n\nEnd of program.\n\n");
exit(2);
}
}while(choice <= 6);
return 0;
}