-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcess.h
67 lines (58 loc) · 2.1 KB
/
Process.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
#include <iostream>
#include <string>
#include <tuple>
#include <map>
#include <vector>
#include <limits>
#include "Page.h"
#ifndef SIMPLE_OS_SIMULATOR_PROCESS_H
#define SIMPLE_OS_SIMULATOR_PROCESS_H
// Define functions to get tuple itens
#define _getPID(x) std::get<0>(x)
#define _getSubmissionTime(x) std::get<1>(x)
#define _getPriority(x) std::get<2>(x)
#define _getExecutionTime(x) std::get<3>(x)
#define _getBlockedTime(x) std::get<4>(x)
#define _getPages(x) std::get<5>(x)
/***
* Data structure of the process
*/
class Process {
public:
Process();
Process(std::tuple<int, double, int, double, double, std::vector<Page>>);
int getPID();
int getPriority();
int getTimesExecuted();
double getSubmissionTime();
double getExecutionTime();
double getBlockTime();
double getResponseTime();
double getWaitingTime();
double getTurnaroundTime();
Page getPage();
std::vector<Page> getAllPages();
void updateSubmissionTime(double _submissionTime);
void setResponseTime(double _elapsedTime);
void setWaitingTime(double _elapsedTime);
void setTurnaroundTime(double _elapsedTime);
void setPriority(int priority);
void incrementTimesExecuted();
void decrementExecutionTime() { if (remainsExecutionTime > 0) --remainsExecutionTime; }
void decrementBlockTime() { if (blockTime > 0) --blockTime; }
void decrementPageLifeTime() { if (!pages.empty() && pages[0].getLifeTime() > 0) pages[0].decrementLifeTime(); }
//only for lottery algorithm (determine the range of tickets)
uint32_t firstTicket, lastTicket;
double totalExecutationTime;
// only for optimal algorithm (return in wich time in future the page will be used by this process)
int willUsePage(Page page) {
for (int i = 0; i < pages.size(); i++)
if (page.getValue() == pages[i].getValue()) return i; // will use the page in instant i
return std::numeric_limits<int>::max(); // will not use the page
}
private:
std::vector<Page> pages;
int PID, priority, timesExecuted;
double submissionTime, remainsExecutionTime, blockTime, waitingTime, responseTime, turnaroundTime;
};
#endif //SIMPLE_OS_SIMULATOR_PROCESS_H