libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Scheduler.hxx
1#pragma once
2
3// Linux
4#include <sched.h>
5
6// C++
7#include <variant>
8
9// Cosmos
10#include <cosmos/dso_export.h>
11#include <cosmos/proc/types.hxx>
12
13namespace cosmos {
14
15// see man(7) sched for details about these policies
16
17struct sched_attr;
18
20enum class SchedulerPolicy : int {
21 FIFO = SCHED_FIFO,
22 ROUND_ROBIN = SCHED_RR,
23 DEADLINE = SCHED_DEADLINE,
24 OTHER = SCHED_OTHER,
25 BATCH = SCHED_BATCH,
26 IDLE = SCHED_IDLE,
27 INVALID = -1
28};
29
31
36class COSMOS_API SchedulerSettings {
37public: // functions
38
40
41 explicit SchedulerSettings(const SchedulerPolicy policy) :
42 m_policy{policy}
43 {}
44
45 SchedulerPolicy policy() const { return m_policy; }
46
48
54 void apply(ProcessID pid) const;
55
56protected: // functions
57
59 virtual void fillStruct(struct sched_attr &attr) const = 0;
60
61protected: // data
62
63 SchedulerPolicy m_policy = SchedulerPolicy::INVALID;
64};
65
67class COSMOS_API OtherSchedulerSettings :
68 public SchedulerSettings {
69public: // functions
70
72 SchedulerSettings{SchedulerPolicy::OTHER}
73 {}
74
75 // there don't seem to be preprocessor constants around for these
76 static constexpr int minNiceValue() { return -20; }
77 static constexpr int maxNiceValue() { return 19; }
78
80
99 void setNiceValue(int value) { m_nice_prio = value; }
100
101 int niceValue() const { return m_nice_prio; }
102
103protected: // functions
104
105 void fillStruct(struct sched_attr &attr) const override;
106
107protected: // data
108
110 static const int INVALID_NICE_PRIO;
112 int m_nice_prio = INVALID_NICE_PRIO;
113};
114
116
126 public SchedulerSettings {
127public: // functions
128
129 explicit RealTimeSchedulerSettings(const SchedulerPolicy policy) :
130 SchedulerSettings{policy}
131 {}
132
133 void setPriority(const int priority) {
134 m_priority = priority;
135 }
136
137 int priority() const { return m_priority; }
138
139 int minPriority() const;
140 int maxPriority() const;
141
142protected: // functions
143
144 void fillStruct(struct sched_attr &attr) const override;
145
146protected: // data
147
148 int m_priority = 0;
149};
150
152
159class COSMOS_API FifoSchedulerSettings :
161public: // functions
162
164 RealTimeSchedulerSettings{SchedulerPolicy::FIFO}
165 {}
166};
167
169
178public: // functions
179
181 RealTimeSchedulerSettings{SchedulerPolicy::ROUND_ROBIN}
182 {}
183};
184
186using SchedulerSettingsVariant = std::variant<
190
191} // end ns
FIFO Scheduling Policy Settings.
"OTHER" Scheduling Policy Settings.
Definition Scheduler.hxx:68
static const int INVALID_NICE_PRIO
A constant denoting an invalid nice value.
void setNiceValue(int value)
Sets the nice priority for the child process.
Definition Scheduler.hxx:99
Base class for realtime scheduling policies.
Round Robin Scheduling Policy Settings.
Base class for changing process scheduling options.
Definition Scheduler.hxx:36
ProcessID
Definition types.hxx:25