-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPageReplacementSimulator.java
331 lines (279 loc) · 12.7 KB
/
PageReplacementSimulator.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
import java.util.ArrayList;
import java.util.Random;
class Page {
int pageNumber;
int instruction;
int data;
int accessBit;
int modifyBit;
int agingTime;
public Page(int pageNumber, int instruction, int data, int agingTime) {
this.pageNumber = pageNumber;
this.instruction = instruction;
this.data = data;
this.accessBit = 0;
this.modifyBit = 0;
this.agingTime = agingTime;
}
}
public class PageReplacementSimulator {
public static void main(String[] args) {
ArrayList<Page> ram = new ArrayList<>();
ArrayList<Page> swap = new ArrayList<>();
// Inicialização das matrizes SWAP e RAM
initializeSwap(swap);
initializeRam(ram, swap);
// Simular a execução de 1000 instruções
for (int i = 0; i < 1000; i++) {
int pageToAccess = new Random().nextInt(100) + 1;
boolean found = false;
// Verificar se a página está na RAM
for (Page page : ram) {
if (page.instruction == pageToAccess) {
page.accessBit = 1;
if (Math.random() <= 0.3) {
page.data += 1;
page.modifyBit = 1;
}
found = true;
break;
}
}
if (!found) {
// Página não está na RAM, escolher um algoritmo de substituição
int algorithmToUse = new Random().nextInt(5); // Escolha aleatoriamente entre 0 a 4
switch (algorithmToUse) {
case 0:
nruAlgorithm(ram, swap, pageToAccess);
break;
case 1:
fifoAlgorithm(ram, swap, pageToAccess);
break;
case 2:
fifoScAlgorithm(ram, swap, pageToAccess);
break;
case 3:
relogioAlgorithm(ram, swap, pageToAccess);
break;
case 4:
wsClockAlgorithm(ram, swap, pageToAccess);
break;
// Adicione mais casos se tiver mais algoritmos
}
}
if (i % 10 == 9) {
// A cada 10 instruções, resetar o bit R
resetAccessBit(ram);
}
}
// Salvar páginas modificadas em SWAP
saveModifiedPages(ram, swap);
// Imprimir as matrizes no final
printMatrices(ram, swap);
}
// Implemente os algoritmos de substituição de página (NRU, FIFO, FIFO-SC, RELÓGIO, WS-CLOCK) aqui
// Algoritmo NRU
private static void nruAlgorithm(ArrayList<Page> ram, ArrayList<Page> swap, int pageToAccess) {
// Selecionar as páginas em quatro classes com base no bit de acesso e no bit de modificação
ArrayList<Page> class0 = new ArrayList<>();
ArrayList<Page> class1 = new ArrayList<>();
ArrayList<Page> class2 = new ArrayList<>();
ArrayList<Page> class3 = new ArrayList<>();
for (Page page : ram) {
int classBits = (page.accessBit << 1) | page.modifyBit;
switch (classBits) {
case 0:
class0.add(page);
break;
case 1:
class1.add(page);
break;
case 2:
class2.add(page);
break;
case 3:
class3.add(page);
break;
}
}
// Selecionar uma página para substituição com base nas classes
// Implemente a lógica de seleção, por exemplo, aleatoriamente
ArrayList<Page> selectedClass = new ArrayList<>();
selectedClass.addAll(class0);
selectedClass.addAll(class1);
selectedClass.addAll(class2);
selectedClass.addAll(class3);
if (!selectedClass.isEmpty()) {
int randomIndex = new Random().nextInt(selectedClass.size());
Page pageToReplace = selectedClass.get(randomIndex);
// Verificar se a página a ser substituída está modificada e, se for o caso, salvá-la em SWAP
if (pageToReplace.modifyBit == 1) {
swap.add(new Page(pageToReplace.pageNumber, pageToReplace.instruction, pageToReplace.data, pageToReplace.agingTime));
}
// Carregar a nova página
if (!swap.isEmpty()) {
int randomSwapIndex = new Random().nextInt(swap.size());
Page newPage = swap.get(randomSwapIndex);
newPage.accessBit = 1;
ram.add(newPage);
swap.remove(randomSwapIndex);
} else {
// Lógica para lidar com o caso em que a lista swap está vazia
}
// Remover a página substituída da classe selecionada
selectedClass.remove(pageToReplace);
}
}
// Algoritmo FIFO
private static void fifoAlgorithm(ArrayList<Page> ram, ArrayList<Page> swap, int pageToAccess) {
if (!ram.isEmpty()) {
// Encontre a página mais antiga na RAM para substituição (a primeira inserida)
Page pageToReplace = ram.get(0);
// Verifique se a página a ser substituída está modificada e, se for o caso, salve-a em SWAP
if (pageToReplace.modifyBit == 1) {
swap.add(new Page(pageToReplace.pageNumber, pageToReplace.instruction, pageToReplace.data, pageToReplace.agingTime));
}
// Restante do código para substituir a página e carregar a nova página
} else {
// Lógica para lidar com o caso em que a lista ram está vazia
}
}
// Algoritmo FIFO-SC
private static void fifoScAlgorithm(ArrayList<Page> ram, ArrayList<Page> swap, int pageToAccess) {
if (!ram.isEmpty()) {
// Encontre a página mais antiga na RAM para substituição (a primeira inserida)
Page pageToReplace = ram.get(0);
// Verifique o bit de acesso (segunda chance)
while (pageToReplace.accessBit == 1) {
// Dê uma segunda chance, redefina o bit de acesso e mova a página para o final
pageToReplace.accessBit = 0;
ram.remove(0);
ram.add(pageToReplace);
// Se não for a página desejada, continue a busca
pageToReplace = ram.get(0);
}
// Verificar se a página a ser substituída está modificada e, se for o caso, salve-a em SWAP
if (pageToReplace.modifyBit == 1) {
swap.add(new Page(pageToReplace.pageNumber, pageToReplace.instruction, pageToReplace.data, pageToReplace.agingTime));
}
// Verifique se a lista SWAP não está vazia antes de gerar um índice aleatório
if (!swap.isEmpty()) {
// Carregue a nova página a partir de SWAP
int randomSwapIndex = new Random().nextInt(swap.size());
Page newPage = swap.get(randomSwapIndex);
newPage.accessBit = 1;
ram.set(0, newPage);
swap.remove(randomSwapIndex);
} else {
// Lógica para lidar com o caso em que a lista swap está vazia
}
} else {
// Lógica para lidar com o caso em que a lista ram está vazia
}
}
// Algoritmo RELÓGIO
private static void relogioAlgorithm(ArrayList<Page> ram, ArrayList<Page> swap, int pageToAccess) {
// Verifique se a lista 'ram' não está vazia
if (!ram.isEmpty()) {
// Encontre a página mais antiga com bit de acesso 0
Page pageToReplace = null;
int currentIndex = 0;
while (pageToReplace == null) {
Page currentPage = ram.get(currentIndex);
if (currentPage.accessBit == 0) {
pageToReplace = currentPage;
} else {
currentPage.accessBit = 0;
currentIndex = (currentIndex + 1) % ram.size();
}
}
// Verifique se a página a ser substituída está modificada e, se for o caso, salve-a em SWAP
if (pageToReplace.modifyBit == 1) {
swap.add(new Page(pageToReplace.pageNumber, pageToReplace.instruction, pageToReplace.data, pageToReplace.agingTime));
}
// Carregue a nova página a partir de SWAP
if (!swap.isEmpty()) {
int randomSwapIndex = new Random().nextInt(swap.size());
Page newPage = swap.get(randomSwapIndex);
newPage.accessBit = 1;
ram.set(currentIndex, newPage);
swap.remove(randomSwapIndex);
} else {
// Lógica para lidar com o caso em que a lista swap está vazia
}
}
}
// Algoritmo WS-CLOCK
private static void wsClockAlgorithm(ArrayList<Page> ram, ArrayList<Page> swap, int pageToAccess) {
// Selecionar aleatoriamente uma página da RAM
int randomIndex = new Random().nextInt(ram.size());
Page currentPage = ram.get(randomIndex);
// Verificar o envelhecimento (EP) da página
if (currentPage.agingTime <= 0) {
// Página não faz parte do conjunto de trabalho, substitua
// Implemente a lógica de seleção da página a ser substituída, por exemplo, com base no envelhecimento
Page pageToReplace = currentPage; // Substitua esta linha pela lógica de seleção
// Verifique se a página a ser substituída está modificada e, se for o caso, salve-a em SWAP
if (pageToReplace.modifyBit == 1) {
swap.add(new Page(pageToReplace.pageNumber, pageToReplace.instruction, pageToReplace.data, pageToReplace.agingTime));
}
// Carregue a nova página a partir de SWAP
int randomSwapIndex = new Random().nextInt(swap.size());
Page newPage = swap.get(randomSwapIndex);
newPage.accessBit = 1;
ram.set(randomIndex, newPage);
swap.remove(randomSwapIndex);
} else {
// A página faz parte do conjunto de trabalho, atualize seu tempo de envelhecimento
currentPage.agingTime--;
}
}
// Função auxiliar para inicializar a matriz SWAP
private static void initializeSwap(ArrayList<Page> swap) {
for (int i = 0; i < 100; i++) {
int pageNumber = i;
int instruction = i + 1;
int data = new Random().nextInt(50) + 1;
int agingTime = new Random().nextInt(9900) + 100;
swap.add(new Page(pageNumber, instruction, data, agingTime));
}
}
// Função auxiliar para inicializar a matriz RAM
private static void initializeRam(ArrayList<Page> ram, ArrayList<Page> swap) {
for (int i = 0; i < 10; i++) {
int randomIndex = new Random().nextInt(swap.size());
Page page = swap.get(randomIndex);
page.accessBit = 1;
ram.add(page);
swap.remove(randomIndex);
}
}
// Função auxiliar para imprimir as matrizes RAM e SWAP
private static void printMatrices(ArrayList<Page> ram, ArrayList<Page> swap) {
System.out.println("MATRIZ RAM:");
for (Page page : ram) {
System.out.println("N: " + page.pageNumber + " I: " + page.instruction + " D: " + page.data +
" R: " + page.accessBit + " M: " + page.modifyBit + " T: " + page.agingTime);
}
System.out.println("\nMATRIZ SWAP:");
for (Page page : swap) {
System.out.println("N: " + page.pageNumber + " I: " + page.instruction + " D: " + page.data +
" R: " + page.accessBit + " M: " + page.modifyBit + " T: " + page.agingTime);
}
}
// Função auxiliar para resetar o bit de acesso (R) em todas as páginas
private static void resetAccessBit(ArrayList<Page> ram) {
for (Page page : ram) {
page.accessBit = 0;
}
}
// Função auxiliar para salvar páginas modificadas em SWAP
private static void saveModifiedPages(ArrayList<Page> ram, ArrayList<Page> swap) {
for (Page page : ram) {
if (page.modifyBit == 1) {
swap.add(new Page(page.pageNumber, page.instruction, page.data, page.agingTime));
page.modifyBit = 0;
}
}
}
}