This repository has been archived by the owner on Apr 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHashExtensivel.java
428 lines (366 loc) · 13.7 KB
/
HashExtensivel.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.Scanner;
public class HashExtensivel {
String nomeArquivoDiretorio;
String nomeArquivoCestos;
RandomAccessFile arqDiretorio;
RandomAccessFile arqCestos;
int quantidadeDadosPorCesto;
Diretorio diretorio;
class Cesto {
byte profundidadeLocal; // profundidade local do cesto
short quantidade; // quantidade de pares presentes no cesto
short quantidadeMaxima; // quantidade máxima de pares que o cesto pode conter
int[] chaves; // sequência de chaves armazenadas no cesto
long[] enderecos; // sequência de enderecos correspondentes às chaves
short bytesPorPar; // tamanho fixo de cada par de chave/endereco em bytes
short bytesPorCesto; // tamanho fixo do cesto em bytes
public Cesto(int qtdmax) throws Exception {
this(qtdmax, 0);
}
public Cesto(int qtdmax, int pl) throws Exception {
if(qtdmax>32767)
throw new Exception("Quantidade máxima de 32.767 elementos");
if(pl>127)
throw new Exception("Profundidade local máxima de 127 bits");
profundidadeLocal = (byte)pl;
quantidade = 0;
quantidadeMaxima = (short)qtdmax;
chaves = new int[quantidadeMaxima];
enderecos = new long[quantidadeMaxima];
bytesPorPar = 12; // int + long
bytesPorCesto = (short)(bytesPorPar * quantidadeMaxima + 3);
}
public byte[] toByteArray() throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.writeByte(profundidadeLocal);
dos.writeShort(quantidade);
int i=0;
while(i<quantidade) {
dos.writeInt(chaves[i]);
dos.writeLong(enderecos[i]);
i++;
}
while(i<quantidadeMaxima) {
dos.writeInt(0);
dos.writeLong(0);
i++;
}
return baos.toByteArray();
}
public void fromByteArray(byte[] ba) throws IOException {
ByteArrayInputStream bais = new ByteArrayInputStream(ba);
DataInputStream dis = new DataInputStream(bais);
profundidadeLocal = dis.readByte();
quantidade = dis.readShort();
int i=0;
while(i<quantidadeMaxima) {
chaves[i] = dis.readInt();
enderecos[i] = dis.readLong();
i++;
}
}
public boolean insere(int c, long e) {
if(cestoCheio())
return false;
int i=quantidade-1;
while(i>=0 && c<chaves[i]) {
chaves[i+1] = chaves[i];
enderecos[i+1] = enderecos[i];
i--;
}
i++;
chaves[i] = c;
enderecos[i] = e;
quantidade++;
return true;
}
public long busca(int c) {
if(cestoVazio())
return -1;
int i=0;
while(i<quantidade && c>chaves[i])
i++;
if(i<quantidade && c==chaves[i])
return enderecos[i];
else
return -1;
}
public boolean remove(int c) {
if(cestoVazio())
return false;
int i=0;
while(i<quantidade && c>chaves[i])
i++;
if(c==chaves[i]) {
while(i<quantidade-1) {
chaves[i] = chaves[i+1];
enderecos[i] = enderecos[i+1];
i++;
}
quantidade--;
return true;
}
else
return false;
}
public boolean cestoVazio() {
return quantidade == 0;
}
public boolean cestoCheio() {
return quantidade == quantidadeMaxima;
}
public String toString() {
String s = "\nProfundidade Local: "+profundidadeLocal+
"\nQuantidade: "+quantidade+
"\n| ";
int i=0;
while(i<quantidade) {
s += chaves[i] + ";" + enderecos[i] + " | ";
i++;
}
while(i<quantidadeMaxima) {
s += "-;- | ";
i++;
}
return s;
}
public int tamanho() {
return bytesPorCesto;
}
}
class Diretorio {
byte profundidadeGlobal;
long[] enderecos;
public Diretorio() {
profundidadeGlobal = 0;
enderecos = new long[1];
enderecos[0] = 0;
}
public boolean atualizaEndereco(int p, long e) {
if(p>Math.pow(2,profundidadeGlobal))
return false;
enderecos[p] = e;
return true;
}
public byte[] toByteArray() throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.writeByte(profundidadeGlobal);
int quantidade = (int)Math.pow(2,profundidadeGlobal);
int i=0;
while(i<quantidade) {
dos.writeLong(enderecos[i]);
i++;
}
return baos.toByteArray();
}
public void fromByteArray(byte[] ba) throws IOException {
ByteArrayInputStream bais = new ByteArrayInputStream(ba);
DataInputStream dis = new DataInputStream(bais);
profundidadeGlobal = dis.readByte();
int quantidade = (int)Math.pow(2,profundidadeGlobal);
enderecos = new long[quantidade];
int i=0;
while(i<quantidade) {
enderecos[i] = dis.readLong();
i++;
}
}
public String toString() {
String s = "\nProfundidade global: "+profundidadeGlobal;
int i=0;
int quantidade = (int)Math.pow(2,profundidadeGlobal);
while(i<quantidade) {
s += "\n" + i + ": " + enderecos[i];
i++;
}
return s;
}
protected long endereco(int p) {
if(p>Math.pow(2,profundidadeGlobal))
return -1;
return enderecos[p];
}
protected boolean duplica() {
if(profundidadeGlobal==127)
return false;
profundidadeGlobal++;
int q1 = (int)Math.pow(2,profundidadeGlobal-1);
int q2 = (int)Math.pow(2,profundidadeGlobal);
long[] novosEnderecos = new long[q2];
int i=0;
while(i<q1) {
novosEnderecos[i]=enderecos[i];
i++;
}
while(i<q2) {
novosEnderecos[i]=enderecos[i-q1];
i++;
}
enderecos = novosEnderecos;
return true;
}
protected int hash(int chave) {
return chave % (int)Math.pow(2, profundidadeGlobal);
}
protected int hash2(int chave, int pl) { // cálculo do hash para uma dada profundidade local
return chave % (int)Math.pow(2, pl);
}
}
public HashExtensivel(int n, String nd, String nc ) throws Exception {
quantidadeDadosPorCesto = n;
nomeArquivoDiretorio = nd;
nomeArquivoCestos = nc;
File d = new File("dados");
if( !d.exists() )
d.mkdir();
arqDiretorio = new RandomAccessFile("dados/"+nomeArquivoDiretorio,"rw");
arqCestos = new RandomAccessFile("dados/"+nomeArquivoCestos,"rw");
// Se o diretorio ou os cestos estiverem vazios, cria um novo diretorio e lista de cestos
if(arqDiretorio.length()==0 || arqCestos.length()==0) {
// Cria um novo diretorio, com profundidade de 0 bits (1 único elemento)
diretorio = new Diretorio();
byte[] bd = diretorio.toByteArray();
arqDiretorio.write(bd);
// Cria um cesto vazio, já apontado pelo único elemento do diretorio
Cesto c = new Cesto(quantidadeDadosPorCesto);
bd = c.toByteArray();
arqCestos.seek(0);
arqCestos.write(bd);
}
}
public boolean insere(int chave, long endereco) throws Exception {
//Carrega o diretorio
byte[] bd = new byte[(int)arqDiretorio.length()];
arqDiretorio.seek(0);
arqDiretorio.read(bd);
diretorio = new Diretorio();
diretorio.fromByteArray(bd);
// Identifica a hash do diretorio,
int i = diretorio.hash(chave);
// Recupera o cesto
long enderecoCesto = diretorio.endereco(i);
Cesto c = new Cesto(quantidadeDadosPorCesto);
byte[] ba = new byte[c.tamanho()];
arqCestos.seek(enderecoCesto);
arqCestos.read(ba);
c.fromByteArray(ba);
// Testa se a chave já não existe no cesto
if(c.busca(chave)!=-1)
throw new Exception("Chave já existe");
// Testa se o cesto já não está cheio
// Se não estiver, insere o par de chave e endereco
if(!c.cestoCheio()) {
// Insere a chave no cesto e o atualiza
c.insere(chave, endereco);
arqCestos.seek(enderecoCesto);
arqCestos.write(c.toByteArray());
return true;
}
// Duplica o diretorio
byte pl = c.profundidadeLocal;
if(pl>=diretorio.profundidadeGlobal)
diretorio.duplica();
byte pg = diretorio.profundidadeGlobal;
// Cria os novos cestos, com os seus enderecos no arquivo de cestos
Cesto c1 = new Cesto(quantidadeDadosPorCesto, pl+1);
arqCestos.seek(enderecoCesto);
arqCestos.write(c1.toByteArray());
Cesto c2 = new Cesto(quantidadeDadosPorCesto, pl+1);
long novoEndereco = arqCestos.length();
arqCestos.seek(novoEndereco);
arqCestos.write(c2.toByteArray());
// Atualiza os enderecos no diretorio
int inicio = diretorio.hash2(chave, c.profundidadeLocal);
int deslocamento = (int)Math.pow(2,pl);
int max = (int)Math.pow(2,pg);
boolean troca = false;
for(int j=inicio; j<max; j+=deslocamento) {
if(troca)
diretorio.atualizaEndereco(j,novoEndereco);
troca=!troca;
}
// Atualiza o arquivo do diretorio
bd = diretorio.toByteArray();
arqDiretorio.seek(0);
arqDiretorio.write(bd);
// Reinsere as chaves
for(int j=0; j<c.quantidade; j++) {
insere(c.chaves[j], c.enderecos[j]);
}
insere(chave,endereco);
return false;
}
public long busca(int chave) throws Exception {
//Carrega o diretorio
byte[] bd = new byte[(int)arqDiretorio.length()];
arqDiretorio.seek(0);
arqDiretorio.read(bd);
diretorio = new Diretorio();
diretorio.fromByteArray(bd);
// Identifica a hash do diretorio,
int i = diretorio.hash(chave);
// Recupera o cesto
long enderecoCesto = diretorio.endereco(i);
Cesto c = new Cesto(quantidadeDadosPorCesto);
byte[] ba = new byte[c.tamanho()];
arqCestos.seek(enderecoCesto);
arqCestos.read(ba);
c.fromByteArray(ba);
return c.busca(chave);
}
public boolean remove(int chave) throws Exception {
//Carrega o diretorio
byte[] bd = new byte[(int)arqDiretorio.length()];
arqDiretorio.seek(0);
arqDiretorio.read(bd);
diretorio = new Diretorio();
diretorio.fromByteArray(bd);
// Identifica a hash do diretorio,
int i = diretorio.hash(chave);
// Recupera o cesto
long enderecoCesto = diretorio.endereco(i);
Cesto c = new Cesto(quantidadeDadosPorCesto);
byte[] ba = new byte[c.tamanho()];
arqCestos.seek(enderecoCesto);
arqCestos.read(ba);
c.fromByteArray(ba);
// remove a chave
if(!c.remove(chave))
return false;
// Atualiza o cesto
arqCestos.seek(enderecoCesto);
arqCestos.write(c.toByteArray());
return true;
}
public void imprime() {
try {
byte[] bd = new byte[(int)arqDiretorio.length()];
arqDiretorio.seek(0);
arqDiretorio.read(bd);
diretorio = new Diretorio();
diretorio.fromByteArray(bd);
System.out.println("\nDIRETORIO ------------------");
System.out.println(diretorio);
System.out.println("\nCESTOS ---------------------");
arqCestos.seek(0);
while(arqCestos.getFilePointer() != arqCestos.length()) {
Cesto c = new Cesto(quantidadeDadosPorCesto);
byte[] ba = new byte[c.tamanho()];
arqCestos.read(ba);
c.fromByteArray(ba);
System.out.println(c);
}
} catch(Exception e) {
e.printStackTrace();
}
}
}