-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
626 lines (493 loc) · 17 KB
/
main.c
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
#include "Escola.h"
#include "Random_data.h"
#include "File_manager.h"
#define DESATIVADO 0
#define SIZE_DIGITOS_HASH 6
#define SIZE_DIGITOS_UNSIGNED_INT 10
unsigned int shortHash(unsigned int x) {
char stringNum[SIZE_DIGITOS_UNSIGNED_INT * 2];
char stringShort[SIZE_DIGITOS_HASH + 1];
int i;
//converte para string
sprintf(stringNum, "%u", x);
memcpy(stringShort, stringNum, SIZE_DIGITOS_HASH);
stringShort[SIZE_DIGITOS_HASH] = '\0';
return atoi(stringShort);
}
unsigned int functionHashInt(unsigned int x) {
x = ((x >> 16) ^ x) * 0x3335b369;
x = ((x >> 16) ^ x) * 0x3335b369;
x = ((x >> 16) ^ x);
return shortHash(x);
}
unsigned long function_hash_2(unsigned char *str)
{
unsigned long hash = 5381;
int c;
while (c = *str++)
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
return hash;
}
void criarHash(HashTable *table);
unsigned int shortHash(unsigned int x);
unsigned int functionHashInt(unsigned int x);
Table* busca_hash(unsigned int key, HashTable *table);
void remove_hash (unsigned int key, HashTable* table);
void show_hash(unsigned int key, HashTable* table);
void menu();
// main menu
int main() {
printf("\t\tMenu\n");
printf("\nWhat you want to do?");
menu();
return 0;
}
void menu() {
//to use random values
srand(time(NULL));
HashTable *table;
int menu, submenu, status = 0, subsubmenu;
int size, blockSize=2048, qntEntries;
unsigned int key;
// execution time control
clock_t time_start, time_end;
do {
printf("\n[1] Generate multiple random entries by quantities");
printf("\n[2] Generate multiple random entries by file size");
//printf("\n[3] Read entry in position using block");
printf("\n[4] Read entries");
printf("\n[7] Generate indexTable");
printf("\n[8] Create Hash");
printf("\n[9] Remove Hash");
printf("\n[10] Show Hash");
printf("\n[0] Exit\n");
printf("\n");
scanf("%d", &menu);
switch (menu) {
case 0:
break;
case 1:
printf("What is the quantities entries?\n");
scanf("%d", &qntEntries);
//printf("What is the block size?\n");
//scanf("%d",&blockSize);
time_start = time(NULL);
//generateRandomEntriesByQnt(qntEntries,blockSize);
insert(qntEntries);
time_end = time(NULL);
executionTime(time_start, time_end);
break;
case 2:
printf("\n Chose size:");
printf("\n[0] MB");
printf("\n[1] GB (default)");
printf("\n");
scanf("%d", &submenu);
printf("What size?\n");
switch (submenu) {
case 0:
scanf("%d", &size);
size *= 1024 * 1024;
break;
default:
scanf("%d", &size);
size *= 1024 * 1024 * 1024;
break;
}
printf("What is the block size?\n");
scanf("%d", &blockSize);
time_start = time(NULL);
generateRandomEntriesBlock(size, blockSize);
time_end = time(NULL);
executionTime(time_start, time_end);
break;
case 3:
printf("What is the block size?\n");
scanf("%d", &blockSize);
time_start = time(NULL);
readRandomEntriesBlock(blockSize);
time_end = time(NULL);
executionTime(time_start, time_end);
break;
case 4:
read();
break;
case 7:
time_start = time(NULL);
createIndexTable();
time_end = time(NULL);
executionTime(time_start, time_end);
break;
case 8:
criarHash(table);
break;
case 9:
printf("Enter the key:\n");
scanf("%d",&key);
remove_hash(key, table);
break;
case 10:
printf("Enter the key: \n");
scanf("%d",&key);
show_hash(key, table);
default:
printf("\nPlease, select a valid option!!!");
break;
}
} while (menu != 0);
}
void executionTime(clock_t time_start, clock_t time_end) {
double duration;
// calc time elapsed
duration = (double) (time_end - time_start); /// CLOCKS_PER_SEC;
// print elapsed time
printf("\n=> This function was running for %.2lf seconds\n", duration);
}
void generateRandomEntriesByQnt(int qntEntries, int blockSize) {
ppALUNO ppAluno;
FILE** ppFile;
ppFile = (FILE**) malloc(sizeof (FILE*));
//ppREGISTROs *ppRegistro;
pREGISTRO *ppRegistro;
int i = 0;
printf("Generating random entries ....\n");
int currSizeBlock = 0;
int maxSizeBlock = blockSize; //4096;//1024;//2048;//4096;
int count = 0;
int id = -1;
//* multiply by 2 just to ensure enougth space
int lenght = maxSizeBlock;
ppRegistro = (ppREGISTRO) malloc(sizeof (pREGISTRO) * lenght);
for (i = 0; i < lenght; i++) {
ppRegistro[i] = (pREGISTRO) malloc(sizeof (Registro));
}
ppAluno = (ppALUNO) malloc(sizeof (pALUNO));
(*ppAluno) = (pALUNO) malloc(sizeof (Aluno));
long currSizeFile = 0.0f;
int qnt = qntEntries;
openFile(ppFile, "a+b");
for (i = 0; i < qntEntries; i++) {
currSizeBlock = 0;
count = 0;
while (((currSizeBlock + sizeof (Registro)) <= maxSizeBlock)) {
count++; //keep count
//Generete Aluno
randomAluno(ppAluno);
//Generate Data
id++;
ppRegistro[i]->matricula = id;
//copy the random Aluno generated before
memcpy(&(ppRegistro[i]->aluno), (*ppAluno), sizeof (Aluno));
// i++;
currSizeBlock += sizeof (Registro);
}
fDataWriteBlock((*ppFile), ppRegistro, maxSizeBlock / sizeof (Registro));
currSizeFile += currSizeBlock; //update current size of file
}
closeFile(ppFile);
for (i = 0; i < lenght; i++) {
free(ppRegistro[i]);
}
free(ppRegistro);
free((*ppAluno));
free(ppAluno);
}
void generateRandomEntriesBlock(int size, int blockSize) {
ppALUNO ppAluno;
FILE** ppFile;
ppFile = (FILE**) malloc(sizeof (FILE*));
//ppREGISTROs *ppRegistro;
pREGISTRO *ppRegistro;
int i = 0;
printf("Generating random entries ....\n");
/* long maxSizeFile = 1073741824;//1GygaByte */
long maxSizeFile = size;
/* int currSizeFile = 0; */
int currSizeBlock = 0;
int maxSizeBlock = blockSize; //4096;//1024;//2048;//4096;
int count = 0;
int id = -1;
//* multiply by 2 just to ensure enougth space
int lenght = maxSizeBlock;
ppRegistro = (ppREGISTRO) malloc(sizeof (pREGISTRO) * lenght);
for (i = 0; i < lenght; i++) {
ppRegistro[i] = (pREGISTRO) malloc(sizeof (Registro));
}
ppAluno = (ppALUNO) malloc(sizeof (pALUNO));
(*ppAluno) = (pALUNO) malloc(sizeof (Aluno));
long currSizeFile = 0.0f;
openFile(ppFile, "a+b");
while (currSizeFile <= maxSizeFile) {
currSizeBlock = 0;
count = 0;
i = 0;
while ((currSizeBlock + sizeof (Registro)) <= maxSizeBlock) {
count++; //keep count
//Generete Aluno
randomAluno(ppAluno);
//GeneratrandomAlunoe Data
id++;
ppRegistro[i]->matricula = id;
printf("%d\t%s\t%s\n", ppRegistro[i]->matricula, ppRegistro[i]->aluno.nome, ppRegistro[i]->aluno.sobrenome);
//copy the random Aluno generated before
memcpy(&(ppRegistro[i]->aluno), (*ppAluno), sizeof (Aluno));
i++;
currSizeBlock += sizeof (Registro);
}
fDataWriteBlock((*ppFile), ppRegistro, maxSizeBlock / sizeof (Registro));
currSizeFile += currSizeBlock; //update current size of file
}
closeFile(ppFile);
for (i = 0; i < lenght; i++) {
free(ppRegistro[i]);
}
free(ppRegistro);
free((*ppAluno));
free(ppAluno);
}
void criarHash(HashTable *table) {
FILE *tabela;
TabelaIndex tabelaIndex;
tabela = fopen("tabela.bin", "r");
unsigned int count = 1000, hashId = 0, i, j = 0;
Table **moreHashes;
unsigned int *moreHashesColisoes;
moreHashes = malloc(sizeof (Table*));
int count_colisao = 0;
int count_insercao = 0;
// HashTable *table;
table = malloc(sizeof(HashTable));
table->numElements = 0;
table->sizeOfTable = 0;
table->hashTable = malloc(sizeof (Table*));
*(table)->hashTable = malloc(sizeof (Table));
printf("Entering an integer value \n");
do {
fread(&tabelaIndex, sizeof (TabelaIndex), 1, tabela);
// printf("id: %d \t posicao: %d\n", tabelaIndex.id, tabelaIndex.posicao);
hashId = functionHashInt(tabelaIndex.id);
if (hashId > table->sizeOfTable) {
moreHashes = realloc(table->hashTable, (hashId + 1) * sizeof (Table*));
if (moreHashes != NULL) {
for (i = table->sizeOfTable; i < hashId + 1; i++) {
moreHashes[i] = malloc(sizeof (Table));
moreHashes[i]->hashTableColisoes = malloc(sizeof (unsigned int));
moreHashes[i]->numElements = 0;
}
table->sizeOfTable = hashId + 1;
(table)->hashTable = moreHashes;
} else {
free(table->hashTable);
free(table);
puts("Error (re)allocating memory");
exit(1);
}
}
//detecta colisao
if (table->hashTable[hashId]->numElements != 0) {
int numElements = table->hashTable[hashId]->numElements;
moreHashesColisoes = (unsigned int *) realloc(table->hashTable[hashId]->hashTableColisoes, numElements * sizeof (unsigned int));
if (moreHashesColisoes != NULL) {
table->hashTable[hashId]->hashTableColisoes = moreHashesColisoes;
table->hashTable[hashId]->hashTableColisoes[numElements - 1] = tabelaIndex.id;
table->hashTable[hashId]->numElements = numElements + 1; // numElements;
table->numElements += 1;
} else {
free(table->hashTable);
free(table);
puts("Error (re)allocating memory in collision");
exit(1);
}
//printf("Colisao!!\n");
count_colisao++;
} else { //insere sem colisao
table->hashTable[hashId]->key = tabelaIndex.id;
table->hashTable[hashId]->numElements += 1;
table->numElements += 1;
table->hashTable[hashId]->deleted = 0;
}
count_insercao++;
i++;
} while (!feof(tabela));
fclose(tabela);
printf("Numbers entered: \n");
for (i = 0; i < table->sizeOfTable; i++) {
if (table->hashTable[i]->numElements != 0) {
// printf("%d=> %d ", i, table->hashTable[i]->key);
if (table->hashTable[i]->numElements > 0) {
// printf(" [ ");
for (j = 0; j < table->hashTable[i]->numElements - 1; j++) {
// printf("%d ", table->hashTable[i]->hashTableColisoes[j]);
}
// printf("]\n");
}
}
}
printf("\nTotal de insercao: %d\n", count_insercao);
printf("Total de colisao: %d\n", count_colisao);
printf("Total indices alocados: %d\n", table->sizeOfTable);
for (i = 0; i < table->sizeOfTable; i++) {
free(table->hashTable[i]->hashTableColisoes);
}
free(table);
free(moreHashes);
}
void read() {
ppALUNO ppAluno;
ppAluno = (ppALUNO) malloc(sizeof (pALUNO));
(*ppAluno) = (pALUNO) malloc(sizeof (Aluno));
FILE *fin = fopen("cadastroAlunos.bin", "r");
while (!feof(fin)) {
fread((*ppAluno), sizeof (Aluno), 1, fin);
printf("%d\n", (**ppAluno).idMatricula);
}
fclose(fin);
}
void createIndexTable(){
// printf("%d",sizeof(Aluno));
TabelaIndex tabelaIndex;
Aluno readTabela;
FILE *tabela = fopen("tabela.bin", "w");
//open file and read its size
/*
openFile(ppFile,"r+b");
fseek((*ppFile), 0, SEEK_END);
file_size = ftell((*ppFile)) / sizeof(Registro);
rewind((*ppFile));
ppRegistro = (ppREGISTRO) malloc(sizeof(pREGISTRO) * file_size);
for(i = 0; i < file_size - 1; i++){
ppRegistro[i] = (pREGISTRO) malloc(sizeof(Registro));
}
//read entire file at once
fread((*ppRegistro), sizeof(Registro), file_size, (*ppFile));
*/
FILE *arquivoCadd = fopen("cadastroAlunos.bin", "r");
int posicao = 0;
while (!feof(arquivoCadd)) {
fread(&readTabela, sizeof (Aluno), 1, arquivoCadd);
posicao = posicao + sizeof (Aluno);
tabelaIndex.id = readTabela.idMatricula;
tabelaIndex.posicao = posicao;
fwrite(&tabelaIndex, sizeof (TabelaIndex), 1, tabela);
// printf("id: %d \t posicao: %d\n", tabelaIndex.id, tabelaIndex.posicao);
}
fclose(arquivoCadd);
fclose(tabela);
}
void insert(int quant) {
//example data = {1, "Hello!", 3.14159265}, read_data;
Aluno aluno, read, readTabela;
//aluno.idMatricula=1;
ppALUNO ppAluno;
ppAluno = (ppALUNO) malloc(sizeof (pALUNO));
(*ppAluno) = (pALUNO) malloc(sizeof (Aluno));
FILE* fout = fopen("cadastroAlunos.bin", "w");
int i;
for (i = 0; i < quant; i++) {
randomAluno(ppAluno);
(*ppAluno)->idMatricula = i;
fwrite((*ppAluno), sizeof (Aluno), 1, fout);
}
fclose(fout);
}
void generateIndexTable() {
ppALUNO ppAluno;
FILE** ppFile;
ppFile = (FILE**) malloc(sizeof (FILE*));
int i = 0;
int count = 0;
int id = -1;
int ask;
int position;
//* multiply by 2 just to ensure enougth space
//ppRegistro = (ppREGISTRO) malloc(sizeof(pREGISTRO) * lenght);
//for(i=0;i<lenght;i++){
// ppRegistro[i] = (pREGISTRO) malloc(sizeof(Registro));
//}
pREGISTRO pRegistro;
pRegistro = (pREGISTRO) malloc(sizeof (Registro));
ppAluno = (ppALUNO) malloc(sizeof (pALUNO));
(*ppAluno) = (pALUNO) malloc(sizeof (Aluno));
printf("Reading the first block ...\n");
position = -1;
openFile(ppFile, "r");
i = -1;
int ch = getc((*ppFile));
while (ch != EOF) {
fseek(*ppFile, sizeof (Registro) * i, SEEK_SET);
fread(pRegistro, sizeof (Registro), 1, *ppFile);
// fDataReadBlock((*ppFile),ppRegistro,(sizeof(Registro)), position);
printEntries(pRegistro);
i++;
}
closeFile(ppFile);
free(pRegistro);
free(pRegistro);
free((*ppAluno));
free(ppAluno);
}
void readRandomEntriesBlock(int blockSize) {
ppALUNO ppAluno;
FILE** ppFile;
ppFile = (FILE**) malloc(sizeof (FILE*));
ppREGISTRO ppRegistro;
int i = 0;
int count = 0;
int id = -1;
int ask;
int position;
//* multiply by 2 just to ensure enougth space
int lenght = blockSize;
ppRegistro = (ppREGISTRO) malloc(sizeof (pREGISTRO) * lenght);
for (i = 0; i < lenght; i++) {
ppRegistro[i] = (pREGISTRO) malloc(sizeof (Registro));
}
ppAluno = (ppALUNO) malloc(sizeof (pALUNO));
(*ppAluno) = (pALUNO) malloc(sizeof (Aluno));
printf("Reading the first block ...\n");
position = -1;
do {
position++;
openFile(ppFile, "r+b");
fDataReadBlock((*ppFile), ppRegistro, blockSize / (sizeof (Registro)), position);
i = 0;
while (i < blockSize / sizeof (Registro)) {
printEntries(ppRegistro[i]);
i++;
}
closeFile(ppFile);
printf("What now?\n");
printf("[0] Next Block\n");
printf("[1] Stop reading ...\n");
scanf("%d", &ask);
} while (ask == 0);
for (i = 0; i < lenght; i++) {
free(ppRegistro[i]);
}
free(ppRegistro);
free((*ppAluno));
free(ppAluno);
}
Table* busca_hash(unsigned int key, HashTable *table) {
unsigned int hashId = functionHashInt(key);
if (table->hashTable[hashId]->key == key) {
if (table->hashTable[hashId]->deleted == 0) {
return table->hashTable[hashId];
}
}
return NULL;
}
void remove_hash (unsigned int key, HashTable* table) {
int i;
Table* hash = busca_hash(key, table);
hash->deleted = 1;
}
void show_hash(unsigned int key, HashTable* table) {
unsigned int hashId = functionHashInt(key), i;
if (table->hashTable[hashId]->key == key) {
printf("\ntable->hashTable[hashId]->key %d", table->hashTable[hashId]->key);
printf("\ntable->hashTable[hashId]->numElements %d", table->hashTable[hashId]->numElements);
printf("\ntable->hashTable[hashId]->deleted %d", table->hashTable[hashId]->deleted);
printf("\n");
}
}