forked from chradam/BubatOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Process.java
345 lines (274 loc) · 8.94 KB
/
Process.java
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
package ProcessManagment;
import java.util.List;
import java.io.IOException;
import java.util.LinkedList;
import CPU_Scheduling.Scheduler;
import Memory_PC.PageTab;
import FileSystem.Inode;
/*
* KWESTIA DO OMOWIENIA:
* - dziedziczenie priorytetu od procesu macierzystego
* */
public class Process {
/*
Blok kontrolny procesu - PCB
*/
// Nazwa procesu.
private String processName;
// ID procesu.
private int PID;
// ID rodzica procesu.
private int PPID = 0;
// Lista dzieci procesu.
List<Process> processChildrenList = new LinkedList<Process>();
// Dostępne stany - Nowy, Działający, Oczekujący, Gotowy, Zakończony.
public enum processState {
New, Running, Waiting, Ready, Terminated
};
// Pole odpowiedzialne za przechowywanie aktualnego stanu procesu.
public processState state;
// Licznik procesów, który pomaga w nadawaniu ID.
private static int processCounter = 0;
// Rejestry.
private int r1, r2, programCounter;
// Tablica stronic.
private PageTab processTab;
// Nazwa pliku z danymi programu - niedopowiedziane przez moduły.
private String fileName;
// Rozmiar pliku.
private int sizeOfFile;
// Lista iWęzłów na których operuje proces.
/*
*
* Semafory tutaj kurwa mać.
*
*/
List<Inode> fileList = new LinkedList<Inode>();
// Konstruktor domyślny.
public Process() {
}
// Konstruktor właściwy. Przyjmowane parametry: nazwa procesu, ID rodzica (potrzebne do struktury hierarchicznej).
// Dodatkowo parametr albo pamięć, albo nazwa pliku.
public Process(String name, int sizeOfFile, String fileName) throws IOException {
// Nadawanie ID z pomocą licznika procesów.
this.PID = processCounter;
processCounter++;
// Nadawanie nazwy.
this.processName = name;
this.fileName = fileName;
this.sizeOfFile = sizeOfFile;
this.processTab = new PageTab(fileName, sizeOfFile);
this.state = processState.New;
this.r1 = 0;
this.r2 = 0;
this.programCounter = 0;
/*
* Nadanie wartosci domyslnych polu odpowiadajacemu za przechowywanie
* informacji potrzebnych planiscie
*/
this.schedulingInformations = new Process.SchedulingInfo();
System.out.println("Utworzono proces o nazwie: " + processName + ", i ID numer: " + PID);
}
// Zwróć nazwę procesu.
public String getProcessName() {
return processName;
}
// Ustaw nazwę procesu.
public void setProcessName(String processName) {
System.out.println("Poprzednia nazwa procesu: " + this.processName);
this.processName = processName;
System.out.println("Aktualna nazwa procesu: " + this.processName);
}
// Zwróć ID procesu.
public int getPID() {
return PID;
}
// Ustaw nowe ID procesu.
public void setPID(int ID){
System.out.println("Poprzednie ID procesu: " + this.PID);
this.PID = ID;
System.out.println("Aktualne ID procesu: " + this.PID);
}
// Zwróc ID rodzica.
public int getPPID() {
return PPID;
}
// Ustaw nowe ID procesu.
public void setPPID(int parentID){
System.out.println("Poprzednie ID rodzica: " + this.PPID);
this.PPID = parentID;
System.out.println("Aktualne ID rodzica: " + this.PPID);
}
// Zwróć licznik procesów.
public static int getProcessCounter() {
return processCounter;
}
// Zwróć rejestr odpowiedzialny za licznik rozkazów.
public int getProgramCounter() {
return programCounter;
}
// Zwróć rejestr A.
public int getR1() {
return r1;
}
// Zwróć rejestr B.
public int getR2() {
return r2;
}
// Ustaw rejestr A.
public void setR1(int r1) {
System.out.println("Poprzedni stan rejestru A: " + this.r1);
this.r1 = r1;
System.out.println("Aktualny stan rejestru A: " + this.r1);
}
// Ustaw rejestr B.
public void setR2(int r2) {
System.out.println("Poprzedni stan rejestru B: " + this.r2);
this.r2 = r2;
System.out.println("Aktualny stan rejestru B: " + this.r2);
}
// Zwróć aktualny stan procesu.
public processState getState() {
return state;
}
// Ustaw nowy stan procesu.
public void setStan(processState state) {
this.state = state;
}
// Wypisz informacje o procesie.
public void printProcess(){
System.out.println("Proces o nazwie: " + this.getProcessName() + " ; ID: " + this.getPID() + " ; ID rodzica: " + this.getPPID() + " ; o stanie: " + this.getState());
}
// Wypisz listę procesów potomnych.
public void showProcessChildrenList(){
for(Process pro : this.processChildrenList){
pro.printProcess();
}
}
/*
* public void setBase(int base) { this.base = base; }
*
* public void setLimit(int limit) { this.limit = limit; }
*/
/*
* public void setProcessPriority(int processPriority) {
* this.processPriority = processPriority; }
*/
/*
* public int getProcessPriority() { return processPriority; }
*/
public void setProcessTab(PageTab processTab) {
this.processTab = processTab;
}
public PageTab getProcessTab() {
return processTab;
}
public void setSizeOfFile(int sizeOfFile) {
this.sizeOfFile = sizeOfFile;
}
public int getSizeOfFile() {
return sizeOfFile;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getFileName() {
return fileName;
}
/*
*
* Semafory tutaj
*
*/
public void addToInodeList(Inode file){
fileList.add(file);
}
/*
* ================================================================================================
* SEKCJA INFORMACJI NA POTRZEBY PLANOWANIA PRZYDZIALU PROCESORA
* ================================================================================================
*/
/* Pole podklasy SchedulingInfo przechowujace informacje dla planisty */
public SchedulingInfo schedulingInformations;
/*
* PODKLASA SCHEDULINGINFO
*/
public class SchedulingInfo {
/* Aktualnie uzywany numer priorytetu */
private byte PriorityNumber;
/* Priorytet bazowy */
private byte DefaultPriorityNumber;
/* Domyslna ilosc przydzielonych jednostek kwantow czasu */
private byte DefaultGivenQuantumAmount;
/* Aktualnie przydzielona ilosc jednostek kwantu czasu */
private byte GivenQuantumAmount;
/* Ilosc zuzytych jednostek kwantow czasu (zeruje sie po osiagnieciu wartosci GivenQuantumAmount) */
private byte UsedQuantumAmount;
/* Wartosc licznika procesora w ktorym proces ostatni raz otrzymal procesor */
private short SchedulersLastQuantumAmountCounter;
/*
* KONSTRUKTOR
*/
public SchedulingInfo() {
/* !!!DZIEDZICZENIE!!! */
/* Ustawienie domyslnej wartosci priorytetu
* (nie uzywamy klasy priorytetow czasu rzeczywistego wiec domyslnie jest ustawiony priorytet normalny klasy priorytetow dynamicznych */
// this.DefaultPriorityNumber = Scheduler.VARIABLE_CLASS_THREAD_PRIORITY_NORMAL;
/* Ustawienie aktualnego priorytetu na wzor wartosci domyslnej */
this.PriorityNumber = this.DefaultPriorityNumber;
/* Ustawienie domyslnej wartosci przydzielonych kwantow czasu */
// this.DefaultGivenQuantumAmount = Scheduler.DefaultQuantumToGive;
/* Ustawienie aktualnej ilosci przydzielonych kwantow czasu na wzor wartosci domyslnej */
this.GivenQuantumAmount = this.DefaultGivenQuantumAmount;
/* Ustawienie ilosci wykorzystanych kwantow czasu procseroa na zero */
this.UsedQuantumAmount = 0;
}
/*
* KONSTRUKTOR - KONIEC
*/
/*
* SETTERY I GETTERY
*/
public byte getDefaultGivenQuantumAmount() {
return DefaultGivenQuantumAmount;
}
public short getSchedulersLastQuantumAmountCounter() {
return SchedulersLastQuantumAmountCounter;
}
public void setSchedulersLastQuantumAmountCounter(short schedulersLastQuantumAmountCounter) {
SchedulersLastQuantumAmountCounter = schedulersLastQuantumAmountCounter;
}
public byte getDefaultPriorityNumber() {
return DefaultPriorityNumber;
}
public byte getPriorityNumber() {
return PriorityNumber;
}
public void setPriorityNumber(byte priorityNumber) {
PriorityNumber = priorityNumber;
}
public byte getGivenQuantumAmount() {
return GivenQuantumAmount;
}
public void setGivenQuantumAmount(byte givenQuantumAmount) {
GivenQuantumAmount = givenQuantumAmount;
}
public byte getUsedQuantumAmount() {
return UsedQuantumAmount;
}
public void setUsedQuantumAmount(byte usedQuantumAmount) {
UsedQuantumAmount = usedQuantumAmount;
}
/*
* SETTERY I GETTERY - KONIEC
*/
}
/*
* PODKLASA SCHEDULINGINFO - KONIEC
*/
/*
* ================================================================================================
* SEKCJA INFORMACJI NA POTRZEBY PLANOWANIA PRZYDZIALU PROCESORA - KONIEC
* ================================================================================================
*/
}