-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable.c
1541 lines (1197 loc) · 45.3 KB
/
table.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
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 "table.h"
int quantidadeTabelas(){
FILE *dicionario;
int codTbl = 0;
if((dicionario = fopen("fs_object.dat","a+b")) == NULL)
return ERRO_ABRIR_ARQUIVO;
while(fgetc (dicionario) != EOF){
fseek(dicionario, -1, 1);
codTbl++; // Conta quantas vezes é lido uma tupla no dicionario.
fseek(dicionario, 48, 1);
}
fclose(dicionario);
return codTbl;
}
int verificaNomeCampo(char *table_name, char *column)
{
struct fs_objects objeto,dicio; // Le dicionario
tp_table *auxT ; // Le esquema
auxT = abreTabela(table_name, &dicio, &auxT);
table *tab = (table *) malloc (sizeof(table));
if (tab == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
tab->esquema = abreTabela(table_name, &objeto, &tab->esquema);
auxT = tab->esquema;
int t = 0;
while(auxT != NULL)
{
if (strcmp(auxT->nome,column) == 0)
{
free(tab);
return 1;
}
auxT = auxT->next;
t++;
}
return 0;
}
int verificaNomeTabela(char *nomeTabela)
{
FILE *dicionario;
char *tupla = (char *)malloc(sizeof(char)*TAMANHO_NOME_TABELA);
if((dicionario = fopen("fs_object.dat","a+b")) == NULL){
free(tupla);
printf("Out of memory.\nAborting...\n");
abort();
}
while(fgetc (dicionario) != EOF){
fseek(dicionario, -1, 1);
fread(tupla, sizeof(char), TAMANHO_NOME_TABELA, dicionario); //Lê somente o nome da tabela
if(strcmp(tupla, nomeTabela) == 0){ // Verifica se o nome dado pelo usuario existe no dicionario de dados.
free(tupla);
return 1;
}
fseek(dicionario, 28, 1);
}
fclose(dicionario);
free(tupla);
return 0;
}
//----------------------------------------
// CRIA TABELA
table *iniciaTabela(char *nome){
if(verificaNomeTabela(nome)){ // Se o nome já existir no dicionario, retorna erro.
return ERRO_NOME_TABELA_INVALIDO;
}
table *t = (table *)malloc(sizeof(table));
if (t == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
int n = strlen(nome);
if (n > TAMANHO_NOME_TABELA)
{
n = TAMANHO_NOME_TABELA;
}
strncpy(t->nome,nome,n+1); // Inicia a estrutura de tabela com o nome da tabela.
t->esquema = NULL; // Inicia o esquema da tabela com NULL.
return t; // Retorna estrutura para criação de uma tabela.
}
table *adicionaCampo(table *t,char *nomeCampo, char tipoCampo, int tamanhoCampo, int tChave, char *tabelaApt, char *attApt){
if(t == NULL) // Se a estrutura passada for nula, retorna erro.
return ERRO_ESTRUTURA_TABELA_NULA;
tp_table *aux;
if(t->esquema == NULL){ // Se o campo for o primeiro a ser adicionado, adiciona campo no esquema.
tp_table *e = (tp_table *)malloc(sizeof(tp_table));
memset(e, 0, sizeof(*e));
if (e == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
e->next = NULL;
int n = strlen(nomeCampo)+1;
if (n > TAMANHO_NOME_CAMPO)
{
n = TAMANHO_NOME_CAMPO;
}
strncpy(e->nome, nomeCampo,n); // Copia nome do campo passado para o esquema
e->tipo = tipoCampo; // Copia tipo do campo passado para o esquema
e->tam = tamanhoCampo; // Copia tamanho do campo passado para o esquema
e->chave = tChave; // Copia tipo de chave passado para o esquema
if(strlen(tabelaApt) >= 1)
strcpy(e->tabelaApt, tabelaApt); //Copia a Tabela Refenciada da FK de chave passado para o esquema;
if(strlen(attApt) >= 1)
strcpy(e->attApt, attApt); //Copia o Atributo Refenciado da FK de chave passado para o esquema
t->esquema = e;
return t; // Retorna a estrutura
}
else
{
for(aux = t->esquema; aux != NULL; aux = aux->next){ // Anda até o final da estrutura de campos.
if(aux->next == NULL){ // Adiciona um campo no final.
tp_table *e = (tp_table *)malloc(sizeof(tp_table));
if (e == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
memset(e, 0, sizeof(*e));
e->next = NULL;
int n = strlen(nomeCampo)+1;
if (n > TAMANHO_NOME_CAMPO)
{
n = TAMANHO_NOME_CAMPO;
}
strncpy(e->nome, nomeCampo,n); // Copia nome do campo passado para o esquema
e->tipo = tipoCampo; // Copia tipo do campo passado para o esquema
e->tam = tamanhoCampo; // Copia tamanho do campo passado para o esquema
e->chave = tChave; // Copia tipo de chave passado para o esquema
if(strlen(tabelaApt)>=1)
strcpy(e->tabelaApt, tabelaApt); //Copia a Tabela Refenciada da FK de chave passado para o esquema;
if(strlen(attApt)>=1)
strcpy(e->attApt, attApt); //Copia o Atributo Refenciado da FK de chave passado para o esquema
aux->next = e; // Faz o campo anterior apontar para o campo inserido.
return t;
}
}
}
return t; //Retorna estrutura atualizada.
}
int finalizaTabela(table *t, int database){
if(t == NULL)
{
return ERRO_DE_PARAMETRO;
}
FILE *esquema, *dicionario;
tp_table *aux;
int codTbl = quantidadeTabelas() + 1, qtdCampos = 0; // Conta a quantidade de tabelas já no dicionario e soma 1 no codigo dessa nova tabela.
char nomeArquivo[TAMANHO_NOME_ARQUIVO];
if((esquema = fopen("fs_schema.dat","a+b")) == NULL) {
return ERRO_ABRIR_ARQUIVO;
}
for(aux = t->esquema; aux != NULL; aux = aux->next){ // Salva novos campos no esquema da tabela, fs_schema.dat
fwrite(&codTbl ,sizeof(codTbl) ,1,esquema); //Código Tabela
fwrite(&aux->nome ,sizeof(aux->nome) ,1,esquema); //Nome campo
fwrite(&aux->tipo ,sizeof(aux->tipo) ,1,esquema); //Tipo campo
fwrite(&aux->tam ,sizeof(aux->tam) ,1,esquema); //Tamanho campo
fwrite(&aux->chave ,sizeof(aux->chave) ,1,esquema); //Chave do campo
fwrite(&aux->tabelaApt ,sizeof(aux->tabelaApt) ,1,esquema); //Tabela Apontada
fwrite(&aux->attApt ,sizeof(aux->attApt) ,1,esquema); //Atributo apontado.
qtdCampos++; // Soma quantidade total de campos inseridos.
}
fclose(esquema);
if((dicionario = fopen("fs_object.dat","a+b")) == NULL) {
return ERRO_ABRIR_ARQUIVO;
}
// char *table_name = (char*) malloc (sizeof(char)*1000);
// if (!table_name)
// {
// printf("Out of memory.\n");
// }
// sprintf(table_name,"%d",database);
// strcat(table_name,"_");
// char *name = strdup(t->nome);
// strcat(table_name,name);
// strcat(table_name,".dat");
// free(table_name);
// free(name);
strcpy(nomeArquivo, t->nome);
strcat(nomeArquivo, ".dat\0");
strcat(t->nome, "\0");
// Salva dados sobre a tabela no dicionario.
fwrite(&t->nome,sizeof(t->nome),1,dicionario);
fwrite(&codTbl,sizeof(codTbl),1,dicionario);
fwrite(&nomeArquivo,sizeof(nomeArquivo),1,dicionario);
fwrite(&qtdCampos,sizeof(qtdCampos),1,dicionario);
fclose(dicionario);
return SUCCESS;
}
//-----------------------------------------
// INSERE NA TABELA
column *insereValor(table *tab, column *c, char *nomeCampo, char *valorCampo){
column *aux;
// Se o valor a ser inserido é o primeiro, adiciona primeiro campo.
if(c == NULL)
{
column *e = (column *)malloc(sizeof(column));
if (e == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
int tam = retornaTamanhoValorCampo(nomeCampo, tab);
char tipo = retornaTipoDoCampo(nomeCampo,tab);
int nTam = strlen(valorCampo);
if (tipo == 'S')
{
nTam = tam;
}
e->valorCampo = (char *)malloc(sizeof(char) * (nTam+1));
if (e->valorCampo == NULL)
{
return ERRO_DE_ALOCACAO;
}
int n = strlen(nomeCampo)+1;
/**
* Verifica se o nome ultrapassa o limite, se sim trunca
*/
if (n > TAMANHO_NOME_CAMPO)
{
n = TAMANHO_NOME_CAMPO;
}
strncpy(e->nomeCampo, nomeCampo,n);
n = strlen(valorCampo)+1;
if (n > tam && tipo == 'S')
{
n = tam;
}
strncpy(e->valorCampo, valorCampo,n);
e->valorCampo[n] = '\0';
e->next = NULL;
c = e;
return c;
} else {
for(aux = c; aux != NULL; aux = aux->next) { // Anda até o final da lista de valores a serem inseridos e adiciona um novo valor.
if(aux->next == NULL){
column *e = (column *)malloc(sizeof(column));
if (e == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
int tam = retornaTamanhoValorCampo(nomeCampo, tab);
char tipo = retornaTipoDoCampo(nomeCampo,tab);
int nTam = strlen(valorCampo)+1;
if (tipo == 'S')
{
nTam = tam;
}
e->valorCampo = (char *) malloc (sizeof(char) * (nTam+1));
if (e->valorCampo == NULL)
{
return ERRO_DE_ALOCACAO;
}
e->next = NULL;
int n = strlen(nomeCampo)+1;
/**
* Verifica se o nome do campo ultrapassa o limite, se sim trunca
*/
if (n > TAMANHO_NOME_CAMPO)
{
n = TAMANHO_NOME_CAMPO;
}
strncpy(e->nomeCampo, nomeCampo,n);
n = strlen(valorCampo) + 1;
if (n > tam && tipo == 'S')
{
// printf("tamanho valorCampo %d %s\n",n, valorCampo);
// printf("tam %d\n",tam );
n = tam;
}
strncpy(e->valorCampo, valorCampo,n);
e->valorCampo[n] = '\0';
// printf("valorCampo %s\n",e->valorCampo);
aux->next = e;
return c;
}
}
}
return ERRO_INSERIR_VALOR;
}
int finalizaInsert(char *nome, column *c){
column *auxC, *temp;
int x = 0, t = 0, erro, j = 0;
FILE *dados;
struct fs_objects objeto,dicio; // Le dicionario
tp_table *auxT ; // Le esquema
auxT = abreTabela(nome, &dicio, &auxT);
table *tab = (table *)malloc(sizeof(table));
tp_table *tab2 = (tp_table *)malloc(sizeof(tp_table));
if (tab == NULL || tab2 == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
tab->esquema = abreTabela(nome, &objeto, &tab->esquema);
tab2 = procuraAtributoFK(objeto);
for(j = 0, temp = c; j < objeto.qtdCampos && temp != NULL; j++, temp = temp->next){
int tamTab = 0;
while(tamTab < objeto.qtdCampos)
{
if (strcmp(tab2[tamTab].nome,temp->nomeCampo) != 0)
{
tamTab++;
continue;
}
switch(tab2[tamTab].chave){
case NPK:
erro = SUCCESS;
break;
case PK:
erro = verificaChavePK(nome, temp , temp->nomeCampo, temp->valorCampo);
if(erro == ERRO_CHAVE_PRIMARIA){
printf("There was an error due to primary key. Check the table's schema.\n");
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
return ERRO_CHAVE_PRIMARIA;
}
break;
case FK:
if(tab2[tamTab].chave == 2 && strlen(tab2[tamTab].attApt) != 0 && strlen(tab2[tamTab].tabelaApt) != 0){
erro = verificaChaveFK(nome, temp, tab2[tamTab].nome, temp->valorCampo, tab2[tamTab].tabelaApt, tab2[tamTab].attApt);
if(erro != SUCCESS){
printf("Error due to foreign key constraint.\n");
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
return ERRO_CHAVE_ESTRANGEIRA;
}
}
break;
}
tamTab++;
}
}
if(erro == ERRO_CHAVE_ESTRANGEIRA){
printf("Error due to foreign key constraint.\n");
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
return ERRO_CHAVE_ESTRANGEIRA;
}
if(erro == ERRO_CHAVE_PRIMARIA){
printf("There was an error due to primary key. Check the table's schema.\n");
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
return ERRO_CHAVE_PRIMARIA;
}
if(erro == ERRO_DE_PARAMETRO) {
printf("Error on insert. Wrong arguments.\nAborting...\n");
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
return ERRO_DE_PARAMETRO;
}
if((dados = fopen(dicio.nArquivo,"a+b")) == NULL){
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
return ERRO_ABRIR_ARQUIVO;
}
auxC = c;
t = 0;
while(t < dicio.qtdCampos)
{
// printf("nome Campo %s %s\n",auxC->nomeCampo,auxT[t].nome );
if (strcmp(auxC->nomeCampo, auxT[t].nome) == 0)
{
if(t >= dicio.qtdCampos)
t = 0;
if(auxT[t].tipo == 'S'){ // Grava um dado do tipo string.
if(sizeof(auxC->valorCampo) > auxT[t].tam && sizeof(auxC->valorCampo) != 8){
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
fclose(dados);
return ERRO_NO_TAMANHO_STRING;
}
if(strcmp(auxC->nomeCampo, auxT[t].nome) != 0){
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
fclose(dados);
return ERRO_NOME_CAMPO;
}
char valorCampo[auxT[t].tam];
strcpy(valorCampo,auxC->valorCampo);
strcat(valorCampo, "\0");
fwrite(&valorCampo,sizeof(valorCampo),1,dados);
}
else if(auxT[t].tipo == 'I'){ // Grava um dado do tipo inteiro.
int valorInteiro = 0;
sscanf(auxC->valorCampo,"%d",&valorInteiro);
fwrite(&valorInteiro,sizeof(valorInteiro),1,dados);
}
else if(auxT[t].tipo == 'D'){ // Grava um dado do tipo double.
x = 0;
while (x < strlen(auxC->valorCampo)){
if((auxC->valorCampo[x] < 48 || auxC->valorCampo[x] > 57) && (auxC->valorCampo[x] != 46)){
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
fclose(dados);
return ERRO_NO_TIPO_DOUBLE;
}
x++;
}
double valorDouble = convertD(auxC->valorCampo);
fwrite(&valorDouble,sizeof(valorDouble),1,dados);
}
else if(auxT[t].tipo == 'C'){ // Grava um dado do tipo char.
if(strlen(auxC->valorCampo) > (sizeof(char)))
{
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
fclose(dados);
return ERRO_NO_TIPO_CHAR;
}
char valorChar = auxC->valorCampo[0];
fwrite(&valorChar,sizeof(valorChar),1,dados);
}
auxC = c;
t++;
}
else
{
auxC = auxC->next;
if (auxC == NULL)
{
auxC = c;
}
}
}
fclose(dados);
free(tab); // Libera a memoria da estrutura.
free(tab2); // Libera a memoria da estrutura.
free(c); // Libera a memoria da estrutura.
free(auxT); // Libera a memoria da estrutura.
// free(temp); // Libera a memoria da estrutura.
return SUCCESS;
}
/* ----------------------------------------------------------------------------------------------
Objetivo: Utilizada para impressão de tabelas.
Parametros: Nome da tabela (char).
Retorno: void.
---------------------------------------------------------------------------------------------*/
void imprime(char nomeTabela[]) {
int j,erro, x, p;
struct fs_objects objeto = leObjeto(nomeTabela);
tp_table *esquema = leSchema(objeto);
if(esquema == ERRO_ABRIR_ESQUEMA)
{
printf("Out of memory...Aborting\n");
return;
}
tp_buffer *bufferpoll = initbuffer();
if(bufferpoll == ERRO_DE_ALOCACAO)
{
printf("Out of memory...Aborting\n");
return;
}
erro = SUCCESS;
for(x = 0; erro == SUCCESS; x++) {
erro = colocaTuplaBuffer(bufferpoll, x, esquema, objeto);
}
column *pagina = getPage(bufferpoll, esquema, objeto, 0);
if(pagina == ERRO_PARAMETRO){
free(bufferpoll);
return;
}
int number_of_tuples = --x;
int u = x,p_ = 0, v = 0;
p = 0;
int controler_ = 0;
int limit[objeto.qtdCampos];//insere o tamanho máximo que será o espaço para impressão
int ii = 0;
for (ii = 0; ii < objeto.qtdCampos; ii++)
{
limit[ii] = strlen(pagina[ii].nomeCampo);
}
/**
* Obtendo configurações do tamanho das variáveis
* para impressão, onde o tamanho maior será o do
* campo independente se for o registro ou o nome
* da tabela
*/
while(u){
column *pagina = getPage(bufferpoll, esquema, objeto, p);
if(pagina == ERRO_PARAMETRO){
free(bufferpoll);
return;
}
for(j=0; j < objeto.qtdCampos*bufferpoll[p].nrec; j++){
if(pagina[j].tipoCampo == 'S'){
if (limit[controler_] < strlen(pagina[j].valorCampo))
{
limit[controler_] = strlen(pagina[j].valorCampo);
}
free(pagina[j].valorCampo);
}
else if(pagina[j].tipoCampo == 'I'){
int *n = (int *)&pagina[j].valorCampo[0];
char *str = (char*) malloc (sizeof(char)*50);
if (str == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
sprintf(str,"%d",*n);
if (limit[controler_] < strlen(str))
{
limit[controler_] = strlen(str);
}
free(str);
free(pagina[j].valorCampo);
}
else if(pagina[j].tipoCampo == 'C'){
char *str = (char*) malloc (sizeof(char));
if (str == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
sprintf(str,"%c",pagina[j].valorCampo[0]);
if (limit[controler_] < strlen(str))
{
limit[controler_] = strlen(str);
}
free(str);
free(pagina[j].valorCampo);
}
else if(pagina[j].tipoCampo == 'D'){
double *n = (double *)&pagina[j].valorCampo[0];
char *str = (char*) malloc (sizeof(char)*150);
if (str == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
sprintf(str,"%f",*n);
if (limit[controler_] < strlen(str))
{
limit[controler_] = strlen(str)+1;//mais um por causa do '.'
}
free(str);
free(pagina[j].valorCampo);
}
if(j >= 1 && ((j+1)%objeto.qtdCampos)==0){
controler_ = 0;
}
else
{
controler_++;
}
}
u-=bufferpoll[p++].nrec;
}
p = 0;
controler_ = 0;
ii = 0;
int tam = 0;
while(x){
column *pagina = getPage(bufferpoll, esquema, objeto, p);
if(pagina == ERRO_PARAMETRO){
free(bufferpoll);
return;
}
for(j=0; j < objeto.qtdCampos*bufferpoll[p].nrec; j++){
if (j == 0)
{
/**
* Imprime o nome das colunas
*/
while(controler_ < objeto.qtdCampos)
{
printf(" %s",pagina[controler_].nomeCampo);
tam = (limit[controler_] - strlen(pagina[controler_].nomeCampo))+1;
for (v = 0; v < tam; v++) printf(" ");
printf("|");
controler_++;
}
printf("\n");
p_ = 0;
while(p_ < objeto.qtdCampos)
{
for (v = 0; v < limit[p_]+2; v++)printf("-");
printf("+");
p_++;
}
printf("\n");
}
if(pagina[j].tipoCampo == 'S'){
wchar_t *ws = (wchar_t*) malloc (sizeof(wchar_t)*501);
swprintf(ws,500,L"%hs",pagina[j].valorCampo);
int wn = wcslen(ws);
// printf(" %d", wn);
printf(" %s", pagina[j].valorCampo);
tam = (limit[ii] - wn)+1;
for (v = 0; v < tam; v++) printf(" ");
printf("|");
free(ws);
free(pagina[j].valorCampo);
}
else if(pagina[j].tipoCampo == 'I'){
int *n = (int *)&pagina[j].valorCampo[0];
printf(" %d",*n);
char *str = (char*) malloc (sizeof(char)*50);
if (str == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
sprintf(str,"%d",*n);
tam = ( limit[ii] - strlen(str) )+1;
for (v = 0; v < tam; v++) printf(" ");
printf("|");
free(str);
free(pagina[j].valorCampo);
}
else if(pagina[j].tipoCampo == 'C'){
printf(" %c",pagina[j].valorCampo[0]);
tam = (limit[ii] - strlen(pagina[j].valorCampo))+1;
for (v = 0; v < tam; v++) printf(" ");
printf("|");
free(pagina[j].valorCampo);
}
else if(pagina[j].tipoCampo == 'D'){
double *n = (double *)&pagina[j].valorCampo[0];
printf(" %f",*n);
char *str = (char*) malloc (sizeof(char)*150);
if (str == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
sprintf(str,"%f",*n);
tam = (limit[ii] - strlen(str))+1;
for (v = 0; v < tam; v++) printf(" ");
printf("|");
free(str);
free(pagina[j].valorCampo);
}
if(j>=1 && ((j+1)%objeto.qtdCampos)==0){
ii = 0;
printf("\n");
}
else
{
ii++;
}
}
x-=bufferpoll[p++].nrec;
}
if (number_of_tuples == 1) {
printf("( %d record )\n",number_of_tuples);
} else {
printf("( %d records )\n",number_of_tuples);
}
printf("\n");
free(pagina);
free(bufferpoll);
}
/* ----------------------------------------------------------------------------------------------
Objetivo: Verifica se o nome da tabela 'nomeTabela' está nos primeiros bytes de 'linha'
Parametros: Nome da tabela, char linha.
Retorno: INT(1 - Está contido, 0 - Não está)
---------------------------------------------------------------------------------------------*/
int TrocaArquivosObj(char *nomeTabela, char *linha){
int x = 0;
char *tabela = (char *)malloc(sizeof(char) * TAMANHO_NOME_TABELA);
if (tabela == NULL)
{
printf("Out memory.\nAborting...\n");
abort();
}
while(x < TAMANHO_NOME_TABELA){
tabela[x] = linha[x];
x++;
}
if(strcmp(tabela, nomeTabela) == 0){
return 1;
}
free(tabela);
return 0;
}
/* ----------------------------------------------------------------------------------------------
Objetivo: Retorna vetor de esquemas com todos os atributos chaves (PK, FK e NPK)
Parametros: Objeto da tabela.
Retorno: Vetor de esquemas vetEsqm
---------------------------------------------------------------------------------------------*/
tp_table *procuraAtributoFK(struct fs_objects objeto){
FILE *schema;
int cod = 0, chave, i = 0;
char *tupla = (char *)malloc(sizeof(char) * 109);
tp_table *esquema = (tp_table *)malloc(sizeof(tp_table)*objeto.qtdCampos);
tp_table *vetEsqm = (tp_table *)malloc(sizeof(tp_table)*objeto.qtdCampos);
if (esquema == NULL || vetEsqm == NULL || tupla == NULL)
{
printf("Out of memory.\nAborting...\n");
abort();
}
if((schema = fopen("fs_schema.dat", "a+b")) == NULL){
printf("Couldn't open schema.\nAborting...\n");
free(tupla);
free(esquema);
free(vetEsqm);
abort();
}
while((fgetc (schema) != EOF) && i < objeto.qtdCampos){ // Varre o arquivo ate encontrar todos os campos com o codigo da tabela.
fseek(schema, -1, 1);
if(fread(&cod, sizeof(int), 1, schema)){ // Le o codigo da tabela.
if(cod == objeto.cod){
fread(tupla, sizeof(char), TAMANHO_NOME_CAMPO, schema);
strcpy(esquema[i].nome,tupla); // Copia dados do campo para o esquema.
fread(&esquema[i].tipo , sizeof(char), 1 , schema);
fread(&esquema[i].tam , sizeof(int) , 1 , schema);
fread(&chave, sizeof(int) , 1 , schema);
fread(tupla, sizeof(char), TAMANHO_NOME_TABELA, schema);
strcpy(esquema[i].tabelaApt,tupla);
fread(tupla, sizeof(char), TAMANHO_NOME_CAMPO, schema);
strcpy(esquema[i].attApt,tupla);
strcpy(vetEsqm[i].tabelaApt, esquema[i].tabelaApt);
strcpy(vetEsqm[i].attApt, esquema[i].attApt);
strcpy(vetEsqm[i].nome, esquema[i].nome);
vetEsqm[i].chave = chave;
i++;
} else {
fseek(schema, 109, 1);
}
}
}
free(tupla);
free(esquema);
return vetEsqm;
}
/**
* Exclui a tabela caso queira remover o banco
* Passa o nome da tabela e o indice do banco
*/
int delete_table(char *name)
{
struct fs_objects object;
tp_table *schema;
abreTabela(name, &object, &schema);
/**
* Remove dados do objeto e do esquema
*/
procuraSchemaArquivo(object);
procuraObjectArquivo(name);
int n = strlen(name)+5;
char *file = (char*) malloc (sizeof(char)*n);
strcpy(file,name);
if (file == NULL)
{
printf("Out of memory.\nAborting...\n");