-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands.cpp
1391 lines (1210 loc) · 53.6 KB
/
commands.cpp
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
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "commands.hpp"
// Cria uma tabela no banco
// table: ponteiro para tabela
void criarTabela(Table *table) {
// Verifica se o nome é unico
int unique = tableNameIsUnique(qtTables, table->name, NULL);
// Se a tabela é unica
if (unique) {
// Path do arquivo da tabela
char *path = glueString(2, TABLES_DIR, table->name);
// O novo nome é colocado no index
addTableName(qtTables, table->name); qtTables++;
// É criado o arquivo da tabela
createFile(path);
// Arquivo da tabela
FILE *tableFile = fopenSafe(path, "rb+");
// Salva os metadados
fwrite(table, sizeof(Table), 1, tableFile);
// Fecha o arquivo
fclose(tableFile);
// Arquivo de strings
char *auxPath = glueString(2, path, "_strings.bin");
createFile(auxPath);
free(auxPath);
// Arquivo de binarios
auxPath = glueString(2, path, "_binaries.bin");
createFile(auxPath);
free(auxPath);
// Auxiliar
long FLAG = -1;
FILE *fp = NULL;
// Arquivo de strings deletadas
auxPath = glueString(2, path, "_strings.empty");
createFile(auxPath);
fp = fopenSafe(auxPath, "rb+");
fwrite(&FLAG, sizeof(long), 1, fp);
fclose(fp);
free(auxPath);
// Arquivo de binarios deletados
auxPath = glueString(2, path, "_binaries.empty");
createFile(auxPath);
fp = fopenSafe(auxPath, "rb+");
fwrite(&FLAG, sizeof(long), 1, fp);
fclose(fp);
free(auxPath);
// Path do arquivo de blocos deletados
path = glueString(2, path, ".empty");
// É criado o arquivo de blocos deletados
createFile(path);
// Arquivo de blocos deletados
tableFile = fopenSafe(path, "rb+");
// Grava zero
fwrite(&zero, sizeof(int), 1, tableFile);
// Fecha o arquivo
fclose(tableFile);
free(path);
printf("Tabela %s criada\n", table->name);
} else {
fprintf(stderr, "Uma tabela com o mesmo nome já existe!\n");
}
}
// Remove uma tabela do banco
// table: ponteiro para tabela
void removerTabela(Table *table) {
// Verifica se existem tabelas
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
// Marcador da posição do igual ou última
long int marker;
// Número de blocos
int blocks;
// Verifica e pega a posição do igual
int exists = !tableNameIsUnique(qtTables, table->name, &marker);
// Se a tabela existe
if (exists) {
// Pula para a posição do marcador
fseek(tablesIndex, marker, SEEK_SET);
// Lê o número de blocos
fread(&blocks, sizeof(int), 1, tablesIndex);
// Invalida os blocos
blocks *= -1;
// Pula para a posição do marcador
fseek(tablesIndex, marker, SEEK_SET);
// Escreve o número de blocos inválidados
fwrite(&blocks, sizeof(int), 1, tablesIndex);
// Remoção dos arquivos
// Arquivo da tabela
char *path = glueString(2, TABLES_DIR, table->name);
removeFile(path);
free(path);
// Arquivo de strings
char *auxPath = glueString(2, path, "_strings.bin");
removeFile(auxPath);
free(auxPath);
// Arquivo de binarios
auxPath = glueString(2, path, "_binaries.bin");
removeFile(auxPath);
free(auxPath);
// Arquivo de strings deletadas
auxPath = glueString(2, path, "_strings.empty");
removeFile(auxPath);
free(auxPath);
// Arquivo de binarios deletados
auxPath = glueString(2, path, "_binaries.empty");
removeFile(auxPath);
free(auxPath);
// Arquivo de blocos deletados
auxPath = glueString(2, path, ".empty");
removeFile(auxPath);
free(auxPath);
// Remove os índices da tabela, sem printar nada
removerIndex(table->name, NULL, 0, 1);
free(path);
// Decrementa o número de tabelas
qtTables--;
printf("Tabela %s removida\n", table->name);
} else {
fprintf(stderr, "Tabela não encontrada!\n");
}
}
// Mostra os dados de uma tabela
// table: ponteiro para tabela
void apresentarTabela(Table *table) {
// Verifica se existem tabelas
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
// Verifica se a tabela existe
int exists = tableExists(qtTables, table->name);
// Se a tabela existe
if (exists) {
// Path do arquivo da tabela
char *path = glueString(2, TABLES_DIR, table->name);
// Abre o arquivo da tabela
FILE *tableFile = fopenSafe(path, "rb+");
// Lê os metadados
fread(table, sizeof(Table), 1, tableFile);
// Fecha o arquivo
fclose(tableFile);
// Printa o nome da tabela
printf("Mostrando tabela: %s\n", table->name);
// Printa a quantidade de registros
if (table->rows) {
printf("> Registros: %d\n", table->rows);
} else {
printf("> Nenhum registro\n");
}
printf("> Tamanho do registro: %d\n", table->length);
// Printa as colunas
for (int i = 0; i < table->cols; i++) {
if (table->types[i] == 'i') {
printf("- INT ");
} else if (table->types[i] == 's') {
printf("- STR ");
} else if (table->types[i] == 'f') {
printf("- FLT ");
} else if (table->types[i] == 'b') {
printf("- BIN ");
}
printf("%s\n", table->fields[i]);
}
// Printa os índices existentes
printf("Índices existentes:\n");
int achouIndiceHash = 0;
int achouIndiceTree = 0;
for (int i=0; i<table->cols; i++) {
if(tem_index_hash(table->name, table->fields[i])) {
if (!achouIndiceHash)
printf("Indice Hash para os campos:\n");
printf(" - %s\n", table->fields[i]);
achouIndiceHash = 1;
}
if(tem_index_tree(table->name, table->fields[i])) {
if (!achouIndiceTree)
printf("Indice Tree para os campos:");
printf(" - %s\n", table->fields[i]);
achouIndiceTree = 1;
}
}
if (!achouIndiceHash) printf("\t> Hash: não existem índices\n");
if (!achouIndiceTree) printf("\t> Árvore: não existem índices\n");
} else {
fprintf(stderr, "Tabela não encontrada!\n");
}
}
// Lista as tabelas do banco
void listarTabela() {
// Coloca o ponteiro no início do arquivo para uma nova chamada da função
fseek(tablesIndex, sizeof(int), SEEK_SET);
// Verifica se existem tabelas
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
if (qtTables == 1) {
printf("Mostrando 1 tabela:\n");
} else {
printf("Mostrando %d tabelas:\n", qtTables);
}
int i = 0;
while (i < qtTables) {
// Número de blocos
int blocks = 0;
// Lê o número de blocos
fread(&blocks, sizeof(int), 1, tablesIndex);
// Se o espaço possuí informações válidas
if (blocks > 0) {
// Tamanho real do nome
int size = blocks*BLOCK_SIZE;
char *buf = (char *)mallocSafe(size);
// Lê o nome
fread(buf, size, 1, tablesIndex);
// Printa o nome
printf("- %s\n", buf);
free(buf);
// Incrementa só se a tabela é válida
i++;
} else {
// Pula o espaço no caso de informações inválidas
blocks *= -1;
fseek(tablesIndex, blocks*BLOCK_SIZE, SEEK_CUR);
}
}
}
// Incluí um registro em uma tabela
// row: ponteiro para um regitro
void incluirRegistro(Row *row) {
// Verifica se existem tabelas
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
// Carrega a btree da tabela utilizada caso ela ainda não tenha sido carregada
// carregaBTree(row->tableName);
// Verifica se a tabela existe
int exists = tableExists(qtTables, row->tableName);
// Se o marcador é válido
if (exists) {
// Path do arquivo da tabela
char *path = glueString(2, TABLES_DIR, row->tableName);
// Abre o arquivo da tabela
FILE *tableFile = fopenSafe(path, "rb+");
// Path do arquivo de strings da tabela
char *pathString = glueString(2, path, "_strings.bin");
FILE *stringsFile = NULL;
// Path do arquivo de binarios da tabela
char *pathBinary = glueString(2, path, "_binaries.bin");
FILE *binariesFile = NULL;
// Path do arquivo de strings deletadas da tabela
char *pathStringEmpty = glueString(2, path, "_strings.empty");
FILE *stringsFileEmpty = NULL;
// Path do arquivo de binarios deletados da tabela
char *pathBinaryEmpty = glueString(2, path, "_binaries.empty");
FILE *binariesFileEmpty = NULL;
// Lê os metadados
Table table;
fread(&table, sizeof(Table), 1, tableFile);
// Verifica o número de valores
if (row->cols == table.cols) {
// Path do arquivo de blocos deletados
path = glueString(2, path, ".empty");
// Abre o arquivo de blocos deletados
FILE *tableFileEmpty = fopenSafe(path, "rb+");
// Quantidade de blocos deletados
int qtOpenRow = 0;
// Endereço da row livre
long int openRow = 0;
// Lê a quantidade de blocos deletados
fread(&qtOpenRow, sizeof(int), 1, tableFileEmpty);
// Se existem blocos deletados
if (qtOpenRow) {
qtOpenRow--;
// Pula para o começo
fseek(tableFileEmpty, 0, SEEK_SET);
// Escreve o novo valor
fwrite(&qtOpenRow, sizeof(int), 1, tableFileEmpty);
// Pula para o último endereço
fseek(tableFileEmpty, sizeof(int) + qtOpenRow*sizeof(long int), SEEK_SET);
// Lê o endereço da row livre
fread(&openRow, sizeof(long int), 1, tableFileEmpty);
// Pula para a posição do registro inválido que sera sobrescrito
fseek(tableFile, openRow, SEEK_SET);
} else {
// Pula outros registros, mais as flags de validade
fseek(tableFile, table.rows * (table.length + sizeof(int)), SEEK_CUR);
}
// Auxiliares para indexação
// Posição do registro no arquivo
int posInsercaoRegistro = ftell(tableFile);
// Bit de validade
fwrite(&valido, sizeof(int), 1, tableFile);
// Para cada coluna
for (int i = 0; i < table.cols; i++) {
// Verifica o tipo de dado da coluna
if (table.types[i] == 'i') {
// Auxiliares
int numb;
char *rest;
// Converte o dado
if (sscanf((char *)row->values[i], "%d %[^\n]", &numb, rest) != 1) {
fprintf(stderr, "O valor %s não corresponde ao tipo da coluna %s!\n", (char *)row->values[i], table.fields[i]);
// Fecha os arquivos
fclose(tableFile);
fclose(tableFileEmpty);
return;
}
// Escreve no arquivo da tabela
fwrite(&numb, sizeof(int), 1, tableFile);
// Verifica se há indexação
if(tem_index_tree(row->tableName, table.fields[i])) {
// Encontra a Btree correspondente a tabela e ao campo
Btree * tree = new Btree(glueString(5, "tables_index/", row->tableName, "_", table.fields[i], "_tree.index"));
// Adiciona os valores na tree
pair_btree aux;
aux.addr = posInsercaoRegistro;
aux.key = numb;
tree->insert(aux);
// Delete na tree (necessário para chamar o construtor e manter a assinatura válida
delete tree;
}
if(tem_index_hash(row->tableName, table.fields[i])) {
//TODO: inserir no arquivo da hashtable o valor (posInsercaoRegistro) com chave (numb)
char * hashFilename = glueString(5, "tables_index/", row->tableName, "_", table.fields[i], "_hash.index");
//hashFileInsert(hashFilename, valoresFieldsIndexados[i], posInsercaoRegistro);
}
} else if (table.types[i] == 's') {
if (!stringsFile) {
stringsFile = fopenSafe(pathString, "rb+");
stringsFileEmpty = fopenSafe(pathStringEmpty, "rb+");
}
// Escreve a string no arquivo de strings
long int pos = addToExFile((char *)row->values[i], stringsFile, stringsFileEmpty);
// Escreve a posição da string no arquivo da tabela
fwrite(&pos, sizeof(long int), 1, tableFile);
} else if (table.types[i] == 'f') {
// Auxiliares
float numb;
char *rest;
// Converte o dado
if (sscanf((char *)row->values[i], "%f %[^\n]", &numb, rest) != 1) {
fprintf(stderr, "O valor %s não corresponde ao tipo da coluna %s!\n", (char *)row->values[i], table.fields[i]);
// Fecha os arquivos
fclose(tableFile);
fclose(tableFileEmpty);
return;
}
// Escreve no arquivo da tabela
fwrite(&numb, sizeof(float), 1, tableFile);
} else if (table.types[i] == 'b') {
if (!binariesFile) {
binariesFile = fopenSafe(pathBinary, "rb+");
binariesFileEmpty = fopenSafe(pathBinaryEmpty, "rb+");
}
// Abre o arquivo de dados
FILE *inputFile = fopenSafe((char *)row->values[i], "rb");
// Pula para o fim
fseek(inputFile, 0, SEEK_END);
// Salva o tamanho dos dados
int inputSize = ftell(inputFile);
// Aloca memória para os dados
char *data = (char *)mallocSafe(inputSize);
// Pula para o começo do arquivo de dados
fseek(inputFile, 0, SEEK_SET);
// Lê o arquivo de dados
fread(data, inputSize, 1, inputFile);
// Fecha o arquivo de dados
fclose(inputFile);
// Escreve a string no arquivo de strings
long int pos = addToExFile(data, binariesFile, binariesFileEmpty);
// Escreve a posição da string no arquivo da tabela
fwrite(&pos, sizeof(long int), 1, tableFile);
}
}
// Fecha arquivo de blocos deletados
fclose(tableFileEmpty);
// Fecha os arquivos de dados tabela
if (stringsFile) {
fclose(stringsFile);
fclose(stringsFileEmpty);
}
if (binariesFile) {
fclose(binariesFile);
fclose(binariesFileEmpty);
}
free(pathString);
free(pathBinary);
free(pathStringEmpty);
free(pathBinaryEmpty);
#ifdef DEBUG
// Printa a mensagem de sucesso
printf("Registro criado: ");
for (int i = 0; i < table.cols; i++) {
printf("%s ", (char *)row->values[i]);
}
printf("\n");
#endif
} else {
fprintf(stderr, "O número de valores não corresponde ao número de colunas da tabela!\n");
// Fecha os arquivos
fclose(tableFile);
return;
}
// Incrementa o número de registros
table.rows++;
// Pula o número de colunas
fseek(tableFile, sizeof(int), SEEK_SET);
// Salva o número de registros
fwrite(&(table.rows), sizeof(int), 1, tableFile);
// Fecha arquivo da tabela
fclose(tableFile);
} else {
fprintf(stderr, "Tabela não encontrada!\n");
}
}
// Busca um ou mais registros em uma tabela
// selection: ponteiro para uma seleção
void buscarRegistros(Selection *selection) {
// Carrega a btree da tabela utilizada caso ela ainda não tenha sido carregada
// carregaBTree(selection->tableName);
// Limite de busca
int searchLimit = (selection->parameter == 'U' ? 1 : 2147483647);
#ifdef DEBUG
printf("searchLimit %d\n", searchLimit);
#endif
// Verifica se existem tabelas
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
// Verifica se a tabela existe
int exists = tableExists(qtTables, selection->tableName);
// Se a tabela existe
if (exists) {
// Tabela em questão
Table table;
// Path do arquivo da tabela
char *path = glueString(2, TABLES_DIR, selection->tableName);
// Abre o arquivo da tabela
FILE *tableFile = fopenSafe(path, "rb+");
// Path do arquivo de strings da tabela
char *pathString = glueString(2, path, "_strings.bin");
FILE *stringsFile = NULL;
// Verifica se tem indexação
int temIndexTree = tem_index_tree(selection->tableName, selection->field);
int temIndexHash = tem_index_hash(selection->tableName, selection->field);
// se existir e for o critério de busca: realiza busca pelo índice, se não: busca sequencial
if (temIndexHash) {
fread(&table, sizeof(Table), 1, tableFile);
int value;
if(sscanf((char *) selection->value, "%d", &value) != 1) {
fprintf(stderr, "Erro na busca (indexação)!\n");
return;
}
char * hashFilename = glueString(5, "tables_index/", selection->tableName, "_", selection->field, "_hash.index");
ResultList *resultList = NULL;
int limit = (table.rows < searchLimit) ? table.rows : searchLimit;
// Faz a busca na hash e atualiza o contador da quantidade de registros encontrados.
int contResults = buscaEmArquivoHash(hashFilename, value, limit, &resultList);
printf("### BR = %d\n", contResults);
if (resultList) {
addToResultTree(&resultTree, resultList, selection->tableName);
} else {
printf("Nenhum resultado para %s\n", selection->tableName);
}
return;
} else if (temIndexTree) {
#ifdef DEBUG
printf("Buscando por indexação. Field indexado: %s\n", selection->field);
#endif
Btree * tree = new Btree(glueString(5, "tables_index/", selection->tableName, "_", selection->field, "_tree.index"));
int value;
if(sscanf((char *) selection->value, "%d", &value) != 1) {
fprintf(stderr, "Erro na busca (indexação)!\n");
return;
}
// Busca o par (key, addr) na BTree
pair_btree pair;
pair.key = value;
int search = tree->search(&pair);
// Delete na tree (necessário para chamar o construtor e manter a assinatura válida
delete tree;
// Verifica se encontrou
if(!search) {
printf("Nenhum resultado para %s\n", selection->tableName);
return;
}
int x = 0;
// Pega a posição do registro no arquivo
int * addr = (int*) malloc(sizeof(int));
*addr = pair.addr;
// Lista de resultados
ResultList *resultList = NULL;
if(addr != NULL) {
addToResultList(&resultList, *addr, value);
}
if (resultList) {
// Adiciona o resultado à arvore de resultados
addToResultTree(&resultTree, resultList, selection->tableName);
// Printa a quantidade de resultados encontrados na BTree (máximo = 1, pois não existem chaves indexadas repetidas)
printf("### BR = %d\n", 1);
} else {
printf("Nenhum resultado para %s\n", selection->tableName);
}
} else {
// Lê os metadados
fread(&table, sizeof(Table), 1, tableFile);
// Offset do campo nos dados
int offset = 0;
// Tipo do campo
char fieldType = '\0';
int i = 0;
// Procura o campo da busca
while (i < table.cols && !fieldType) {
// Se o campo foi encontrado
if (!strcmp(table.fields[i], selection->field)) {
// É definido o tipo do campo
fieldType = table.types[i];
break;
// Se não for encontrado
} else {
// É incrementado o offset
if (table.types[i] == 'i') {
offset += sizeof(int);
} else if (table.types[i] == 's') {
offset += sizeof(long int);
} else if (table.types[i] == 'f') {
offset += sizeof(float);
} else if (table.types[i] == 'b') {
offset += sizeof(long int);
}
}
i++;
}
// Se o campo não for encontrado
if (i == table.cols) {
fprintf(stderr, "Campo %s não encontrado!\n", selection->field);
// Fecha o arquivo
fclose(tableFile);
return;
}
// Posição do registro
long int rowPos = 0;
// Resto do sscanf
char *rest = NULL;
// Auxiliar, conversão do valor de pesquisa
int selNumbI;
float selNumbF;
// Converte os valores
if (fieldType == 'i') {
if(sscanf((char *)selection->value, "%d %[^\n]", &selNumbI, rest) != 1) {
fprintf(stderr, "Erro ao converter o valor %s para inteiro!", (char *)selection->value);
// Libera o resto, se leu a mais
if (rest) {
free(rest);
}
// Fecha o arquivo
fclose(tableFile);
return;
}
} else if (fieldType == 'f') {
if (sscanf((char *)selection->value, "%f %[^\n]", &selNumbF, rest) != 1) {
fprintf(stderr, "Erro ao converter o valor %s para ponto flutuante!", (char *)selection->value);
// Libera o resto, se leu a mais
if (rest) {
free(rest);
}
// Fecha o arquivo
fclose(tableFile);
return;
}
}
// Auxiliar, bytes lidos
int read = 0;
// Auxiliar de leitura
int numbI;
float numbF;
long int pos;
int strSize;
char *str;
// Flag de validade
int valido = 0;
// Contador de registros encontrados
int contResults = 0;
// Lista de resultados
ResultList *resultList = NULL;
// Compara os registros
i = 0;
while (i < table.rows && contResults < searchLimit) {
#ifdef DEBUG
printf("i %d\n", i);
#endif
// Salva a posição do registro
rowPos = ftell(tableFile);
// Lê a flag de validade
fread(&valido, sizeof(int), 1, tableFile);
if (valido) {
// Pula o offset
fseek(tableFile, offset, SEEK_CUR);
// Lê o campo
if (fieldType == 'i') {
// Bytes lidos
read = sizeof(int);
// Lê o número
fread(&numbI, read, 1, tableFile);
// Compara com o valor pesquisado
if (numbI == selNumbI) {
// Adiciona a posição a lista de resultados
// Modificação: guarda a key, caso for inteira, para possível remoção na BTree
addToResultList(&resultList, rowPos, numbI);
// Incrementa o contador da quantidade de registros encontrados.
contResults++;
}
} else if (fieldType == 's') {
if (!stringsFile) {
stringsFile = fopenSafe(pathString, "rb+");
}
// Bytes lidos
read = sizeof(long int);
// Lê a posição da string
fread(&pos, read, 1, tableFile);
// Pula para posição da string
fseek(stringsFile, pos, SEEK_SET);
// Lê o tamanho
fread(&strSize, sizeof(int), 1, stringsFile);
// Aloca memória para string
str = (char *)mallocSafe(strSize+1);
// Lê a string
fread(str, strSize, 1, stringsFile);
// Termina a string
str[strSize] = '\0';
// Compara com o valor pesquisado
if (!strcmp(str, (char *)selection->value)) {
// Adiciona a posição a lista de resultados
// É possível substituir NULL por um ponteiro da key, mas não há necessidade para essa aplicação
addToResultList(&resultList, rowPos, -1);
// Incrementa o contador da quantidade de registros encontrados.
contResults++;
}
free(str);
} else if (fieldType == 'f') {
// Bytes lidos
read = sizeof(float);
// Lê o número
fread(&numbF, read, 1, tableFile);
// Compara com o valor pesquisado
if (numbF == selNumbF) {
// Adiciona a posição a lista de resultados
// É possível substituir NULL por um ponteiro da key, mas não há necessidade para essa aplicação
addToResultList(&resultList, rowPos, -1);
// Incrementa o contador da quantidade de registros encontrados.
contResults++;
}
} else if (fieldType == 'b') {
fprintf(stderr, "Busca em campos binários não é suportada!\n");
// Fecha o arquivo
fclose(tableFile);
return;
}
// Pula os campos restantes
fseek(tableFile, table.length-offset-read, SEEK_CUR);
} else {
// Pula o registro
fseek(tableFile, table.length, SEEK_CUR);
}
i++;
}
if (resultList) {
// Adiciona o resultado à arvore de resultados
addToResultTree(&resultTree, resultList, selection->tableName);
// Printa a quantidade de registros encontrador
printf("### BR = %d\n", contResults);
} else {
printf("### BR = %d\n", 0);
#ifdef DEBUG
printf("Nenhum resultado para %s\n", selection->tableName);
#endif
}
// Fecha os arquivos
fclose(tableFile);
// Fecha os arquivos de dados tabela
if (stringsFile) {
fclose(stringsFile);
}
free(pathString);
}
} else {
fprintf(stderr, "Tabela não encontrada!\n");
}
}
// Apresenta os resultados de uma busca
// selection: ponteiro para uma seleção
void apresentarRegistros(Selection *selection) {
// Verifica se existem tabelas
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
// Verifica se a tabela existe
int exists = tableExists(qtTables, selection->tableName);
// Se a tabela existe
if (exists) {
// Recupera a pesquisa
ResultList *list = searchResultList(resultTree, selection->tableName);
// Tabela em questão
Table table;
// Path do arquivo da tabela
char *path = glueString(2, TABLES_DIR, selection->tableName);
// Abre o arquivo da tabela
FILE *tableFile = fopenSafe(path, "rb+");
// Path do arquivo de strings da tabela
char *pathString = glueString(2, path, "_strings.bin");
FILE *stringsFile = NULL;
// Lê os metadados
fread(&table, sizeof(Table), 1, tableFile);
//checkpoint alcides
// Auxiliar de leitura
int numbI;
float numbF;
long int pos;
int strSize;
char *str;
#ifdef DEBUG
if (list) {
printf("Mostrando resultado para %s\n", selection->tableName);
} else {
printf("Nenhum resultado para %s\n", selection->tableName);
}
#endif
// Printa os registros
while (list) {
// Pula para posição, mais a flag de validade
fseek(tableFile, list->pos+sizeof(int), SEEK_SET);
printf("Registro:\n");
for (int i = 0; i < table.cols; i++) {
printf("- %s: ", table.fields[i]);
if (table.types[i] == 'i') {
// Lê o número
fread(&numbI, sizeof(int), 1, tableFile);
// Printa o número
printf("%d\n", numbI);
} else if (table.types[i] == 's') {
if (!stringsFile) {
stringsFile = fopenSafe(pathString, "rb+");
}
// Lê a posição da string
fread(&pos, sizeof(long int), 1, tableFile);
// Pula para posição da string
fseek(stringsFile, pos, SEEK_SET);
// Lê o tamanho
fread(&strSize, sizeof(int), 1, stringsFile);
// Aloca memória para string
str = (char *)mallocSafe(strSize+1);
// Lê a string
fread(str, strSize, 1, stringsFile);
// Termina a string
str[strSize] = '\0';
// Printa a string
printf("%s\n", str);
free(str);
} else if (table.types[i] == 'f') {
// Lê o número
fread(&numbF, sizeof(int), 1, tableFile);
// Printa o número
printf("%f\n", numbF);
} else if (table.types[i] == 'b') {
// Print simbólico do arquivo
printf("**BINARY**\n");
// Pula o tamanho do endereço para
fseek(tableFile, sizeof(long int), SEEK_CUR);
}
}
printf("\n");
list = list->next;
}
// Fecha os arquivos
fclose(tableFile);
// Fecha os arquivos de dados tabela
if (stringsFile) {
fclose(stringsFile);
}
free(pathString);
} else {
fprintf(stderr, "Tabela não encontrada!\n");
}
}
// Remove os registros da última busca
// selection: ponteiro para uma seleção
void removerRegistros(Selection *selection) {
// Quantidade de tabelas
int qtTables = 0;
// Pula para o começo do arquivo
fseek(tablesIndex, 0, SEEK_SET);
// Lê a quantidade de tabelas
fread(&qtTables, sizeof(int), 1, tablesIndex);
if (!qtTables) {
printf("Não existem tabelas!\n");
return;
}
// Aloca a quantidade de valores a serem excluidos
int cont_values = 0;
ResultList *list_search = searchResultList(resultTree, selection->tableName); // Recupera a pesquisa
ResultList * aux = list_search;
while(list_search) {
cont_values++;
list_search = list_search->next;
}
// Verifica se a tabela existe
int exists = tableExists(qtTables, selection->tableName);
// Se a tabela existe
if (exists) {
// Recupera a pesquisa
ResultList *list = aux;
if (list) {
// Tabela em questão
Table table;
// Path do arquivo da tabela
char *path = glueString(2, TABLES_DIR, selection->tableName);
// Abre o arquivo da tabela
FILE *tableFile = fopenSafe(path, "rb+");
// Path do arquivo de strings da tabela
char *pathString = glueString(2, path, "_strings.bin");
FILE *stringsFile = NULL;
// Path do arquivo de binarios da tabela
char *pathBinary = glueString(2, path, "_binaries.bin");
FILE *binariesFile = NULL;
// Path do arquivo de strings deletadas da tabela
char *pathStringEmpty = glueString(2, path, "_strings.empty");
FILE *stringsFileEmpty = NULL;
// Path do arquivo de binarios deletados da tabela
char *pathBinaryEmpty = glueString(2, path, "_binaries.empty");
FILE *binariesFileEmpty = NULL;
// Lê os metadados
fread(&table, sizeof(Table), 1, tableFile);
// Path do arquivo de blocos deletados da tabela
path = glueString(2, path, ".empty");
// Abre o arquivo de blocos deletados da tabela
FILE *tableFileEmpty = fopenSafe(path, "rb+");
free(path);
int index_tree = tem_index_tree(selection->tableName, selection->field);
pair_btree pair;
pair.addr = -1;
// Número de blocos deletados
int empty = 0;
// Lê o número de blocos deletados
fread(&empty, sizeof(int), 1, tableFileEmpty);
ResultList * aux_btree = list;
while (list) {
// Grava a posição deletada
fwrite(&(list->pos), sizeof(long int), 1, tableFileEmpty);
// Pula para posição
fseek(tableFile, list->pos, SEEK_SET);
// Invalida o registro
fwrite(&invalido, sizeof(int), 1, tableFile);
// Posição da string ou binário
long int pos;
// Remove as strings e binários
for (int i = 0; i < table.cols; i++) {
// Remove dos arquivos exteriores + pula offsets
if (table.types[i] == 'i') {
fseek(tableFile, sizeof(int), SEEK_CUR);
} else if (table.types[i] == 's') {
if (!stringsFile) {
stringsFile = fopenSafe(pathString, "rb+");
stringsFileEmpty = fopenSafe(pathStringEmpty, "rb+");
}
fread(&pos, sizeof(long int), 1, tableFile);
#ifdef DEBUG
printf("pos %ld\n", pos);
#endif