-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHPFScheduler.h
73 lines (61 loc) · 1.56 KB
/
HPFScheduler.h
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
#pragma once
#include "scheduler.h"
struct comparePriority{
bool operator()(const struct PCB & p1,const struct PCB & p2) {
return (p1.PD.Priority < p2.PD.Priority);
}
};
class HPFScheduler : public Scheduler
{
private:
priority_queue<struct PCB, vector<struct PCB>, comparePriority> PQueue;
public:
//Constructor
HPFScheduler(){
signal(SIGCONT,contSig);
};
static void contSig(int Sig)
{
//signal(SIGCHLD,RRHandler);
}
//Push received processes in the priority queue
virtual void pushDataToQueue(const vector<struct processData> & PD)
{
for(int i = 0; i < PD.size();i++)
{
struct PCB TempPCB;
TempPCB.PD = PD[i];
TempPCB.RemainingTime = TempPCB.PD.RunningTime;
PQueue.push(TempPCB);
}
};
//Get highest priority process
virtual int getProcess(struct PCB & Process)
{
if(PQueue.size() == 0)
return -1;
Process = PQueue.top();
PQueue.pop(); //Pop process from queue
return 1;
};
//Returns process to the end of the queue to wait for its turn to run again
virtual void returnProcessToQueue(const struct PCB & Process)
{
PQueue.push(Process);
};
//Handle process stat
virtual int runProcess( struct PCB & ProcessData)
{
int Pid = fork();
if(Pid == 0)
{
cout<<"p ran"<<endl;
//child .. we create process here
execl("process.out",to_string(ProcessData.RemainingTime).c_str(),(char *) NULL);
}
cout << "Waiting process to exit\n";
int status;
waitpid(Pid,&status,0); //wait for process exit
kill(getppid(),SIGIO);
};
};