]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1_bplus_main.c
Puto bug que no podia encontrar hace 3 dias, FIXED!!!!!
[z.facultad/75.06/emufs.git] / emufs / tipo1_bplus_main.c
1 #include <stdio.h>
2 #include <string.h>
3 #include "emufs.h"
4 #include "tipo1.h"
5 #include "indices.h"
6 #include "indice_bplus.h"
7
8
9 char* cargar_registro(char* texto_ini,int len_ini, CLAVE clave, char *texto_fin, int len_fin)
10 {
11         char *reg;
12         reg = (char*)malloc(len_ini+sizeof(CLAVE)+len_fin+1); /* +1 para el \0 */
13         memcpy(reg, texto_ini, len_ini);
14         memcpy(reg+len_ini, &clave, sizeof(CLAVE));
15         strcpy(reg+len_ini+sizeof(CLAVE), texto_fin);
16         return reg;
17 }
18
19
20 void imprimir_reg(char* reg, int off, int len)
21 {
22         CLAVE clave;
23         int i;
24         memcpy(&clave, reg+off, sizeof(CLAVE));
25         printf("CLAVE = %d\n", clave);
26         printf("REGISTRO =");
27         for(i=0; i<len; i++) printf("%c",reg[i]);
28                 printf("\n");
29         printf("TAMANIO REGISTRO = %d\n\n", len);
30 }
31
32
33
34 int main (int argc,char* argv[])
35 {
36         CLAVE clave;
37         char *texto, *texto2;
38         char *r;
39         EMUFS *emu;
40         int tam_nodo = SIZE_B_PLUS_HEADER + sizeof(CLAVE)*5 + sizeof(CLAVE)*6;
41         EMUFS_REG_SIZE len;
42         int err=0;
43         
44         texto="PARTE CONSTANTE, clave =";
45         
46         emu = emufs_crear("test",T1,512,0);
47         emufs_agregar_indice(emu,"claveidx",IND_PRIMARIO,IND_B_PLUS,IDX_INT,strlen(texto),tam_nodo);
48 /*REGISTRO 1*/  
49         clave.i_clave = 77;     
50         texto2="termina el texto re bonito CLAVE = 77";
51         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
52         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
53         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
54         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
55         PERR("REGISTRO 1 GRABADO");
56         free(r);
57
58 /*REGISTRO 2*/  
59         texto2="termina el texto re bonito pero mas largo CLAVE = 90";
60         clave.i_clave = 90;     
61         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
62         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
63         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
64         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
65         PERR("REGISTRO 2 GRABADO");
66         free(r);
67
68 /*REGISTRO 3*/  
69         texto2="Este es el fin del registro tres, puse tres en numero para que sea mas largo el texto CLAVE = 95";
70         clave.i_clave = 95;     
71         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
72         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
73         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
74         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
75         PERR("REGISTRO 3 GRABADO");
76         free(r);
77         
78 /*REGISTRO 4*/  
79         texto2="REGISTRO CUATRO CLAVE = 99";
80         clave.i_clave = 99;     
81         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
82         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
83         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
84         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
85         PERR("REGISTRO 4 GRABADO");
86         free(r);
87
88 /*REGISTRO 5*/  
89         texto2="el quinto registro tiene un largo promedio como para entrar en el bloque CLAVE = 102";
90         clave.i_clave = 102;    
91         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
92         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
93         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
94         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
95         PERR("REGISTRO 5 GRABADO");
96         free(r);
97
98 /*REGISTRO 6*/  
99         texto2="El registro 6 no entra CLAVE = 106";
100         clave.i_clave = 106;    
101         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
102         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
103         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
104         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
105         PERR("REGISTRO 6 GRABADO");
106         free(r);
107         emufs_destruir(emu);
108
109         return 0;
110         
111 }