-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsjf_scheduler.cpp
54 lines (44 loc) · 1.28 KB
/
sjf_scheduler.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
#include "Headers/scheduler.h"
class SJFScheduler : public Scheduler
{
MegaNode *current = NULL;
Proc Dispatch(std::vector<MegaNode *> newcomers, int time)
{
for (int i = 0; i < newcomers.size(); i++)
{
mega_list.InsertSorted(newcomers[i]);
}
if (current == NULL) // if first time or idle
{
if (mega_list.Size() == 0)
{
return IDLE_PROC;
}
else
{
current = mega_list.GetCurrent();
mega_list.Remove(false);
procs[current->origin_index].start_time = time;
fragments.push_back(current->proc.proc_name);
}
}
if (current->remaining > 0)
{
--(current->remaining);
return current->proc;
}
procs[current->origin_index].finish_time = time;
delete current;
if (mega_list.Size() == 0)
{
current = NULL;
return IDLE_PROC;
}
current = mega_list.GetCurrent();
mega_list.Remove(false);
procs[current->origin_index].start_time = time;
fragments.push_back(current->proc.proc_name);
--(current->remaining);
return current->proc;
}
};