]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1_bplus_main.c
* Agrego recorrido por los indices de factura
[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 int no_esta(int num, int* vec, int len)
8 {
9         int i, res;
10         res = -1;
11         for(i=0; i<len; i++)
12                 if ( vec[i] == num ) res = 0;
13         return res;
14 }
15                 
16
17 void ver_arbol(EMUFS *emu)
18 {
19         NODO_B_PLUS *nodo;
20         int num_nodo, num_nodo_ant,i, tecla;
21         num_nodo =0;
22         
23         while ( tecla != -1){
24                 nodo = b_plus_leer_nodo(emu->indices, num_nodo);
25                 printf("NODO: (hijo)clave\n");
26                 printf("Nivel: %d\n", nodo->nivel);
27                 for (i=0; i<nodo->cant_claves; i++)
28                         printf("(%d)%d", nodo->hijos[i], nodo->claves[i]);
29                 printf("(%d)",nodo->hijos[i]);
30                 printf("\n");
31                 printf("Ingrese proximo nodo a explorar, o -1 para salir: ");
32                 scanf("%d",&tecla);
33                 printf("%d\n",tecla);
34                 if ( tecla!=0 &&((no_esta(tecla, nodo->hijos, nodo->cant_claves+1) == -1) || (nodo->nivel==0)) ){
35                         num_nodo = num_nodo_ant;
36                         printf("El nodo no existe o es nivel cero\n");
37                 }
38                 else num_nodo_ant = num_nodo = tecla;
39                 b_plus_destruir_nodo(nodo);
40         }
41 }       
42
43
44 char* cargar_registro(char* texto_ini,int len_ini, CLAVE clave, char *texto_fin, int len_fin)
45 {
46         char *reg;
47         reg = (char*)malloc(len_ini+sizeof(CLAVE)+len_fin+1); /* +1 para el \0 */
48         memcpy(reg, texto_ini, len_ini);
49         memcpy(reg+len_ini, &clave, sizeof(CLAVE));
50         strcpy(reg+len_ini+sizeof(CLAVE), texto_fin);
51         return reg;
52 }
53
54
55 void imprimir_reg(char* reg, int off, int len)
56 {
57         CLAVE clave;
58         int i;
59         memcpy(&clave, reg+off, sizeof(CLAVE));
60         printf("CLAVE = %d\n", clave.i_clave);
61         printf("REGISTRO =");
62         for(i=0; i<len; i++) printf("%c",reg[i]);
63                 printf("\n");
64         printf("TAMANIO REGISTRO = %d\n\n", len);
65 }
66
67
68
69 int main (int argc,char* argv[])
70 {
71         CLAVE clave;
72         char *texto, *texto2;
73         char *r;
74         EMUFS *emu;
75         int tam_nodo = SIZE_B_PLUS_HEADER + sizeof(CLAVE)*5 + sizeof(CLAVE)*6;
76         EMUFS_REG_SIZE len, size;
77         int err=0;
78         INDICE_DATO dato;
79         
80         texto = "PARTE COSNSTANTE, clave =";
81         emu = emufs_crear("test",T4,512,0);
82         if (emu == NULL) {
83                 printf("No se pudo crear EMUFS\n");
84                 return 1;
85         }
86         emufs_agregar_indice(emu,"claveidx",IND_PRIMARIO,IND_B_PLUS,IDX_INT,strlen(texto),tam_nodo, 0);
87         
88         
89 /*REGISTRO 1*/  
90         clave.i_clave = 77;     
91         texto2="termina el texto re bonito CLAVE = 77";
92         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
93         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
94         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
95         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
96         PERR("REGISTRO 1 GRABADO");
97         free(r);
98
99 /*REGISTRO 2*/  
100         texto2="termina el texto re bonito pero mas largo CLAVE = 90";
101         clave.i_clave = 90;     
102         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
103         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
104         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
105         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
106         PERR("REGISTRO 2 GRABADO");
107         free(r);
108
109 /*REGISTRO 3    */
110         texto2="Este es el fin del registro tres, puse tres en numero para que sea mas largo el texto CLAVE = 95";
111         clave.i_clave = 95;     
112         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
113         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
114         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
115         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
116         PERR("REGISTRO 3 GRABADO");
117         free(r);
118         
119 /*REGISTRO 4    */
120         texto2="REGISTRO CUATRO CLAVE = 99";
121         clave.i_clave = 99;     
122         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
123         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
124         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
125         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
126         PERR("REGISTRO 4 GRABADO");
127         free(r);
128
129 /*REGISTRO 5    */
130         texto2="el quinto registro tiene un largo promedio como para entrar en el bloque CLAVE = 102";
131         clave.i_clave = 102;    
132         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
133         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
134         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
135         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
136         PERR("REGISTRO 5 GRABADO");
137         free(r);
138
139 /*REGISTRO 6*/  
140         texto2="El registro 6 no entra CLAVE = 93";
141         clave.i_clave = 93;     
142         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
143         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
144         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
145         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
146         PERR("REGISTRO 6 GRABADO");
147         free(r);
148
149 /*REGISTRO 7*/  
150         texto2="SETPTIMO REGISTRO, lo inserto donde entre carajo2ooooooooooooooooooCLAVE = 80";
151         clave.i_clave = 80;     
152         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
153         imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
154         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
155         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
156         PERR("REGISTRO 7 GRABADO");
157         free(r);
158 /*
159 clave.i_clave = 93;
160 emufs_tipo1_eliminar_ordenado(emu, clave, &err);
161 clave.i_clave = 99;
162 emufs_tipo1_eliminar_ordenado(emu, clave, &err);
163 clave.i_clave = 95;
164 emufs_tipo1_eliminar_ordenado(emu, clave, &err);
165 */
166
167
168 clave.i_clave = 77;
169 emufs_tipo1_eliminar_ordenado(emu, clave, dato);
170
171
172 PERR("LEYENDO REGISTRO");
173 clave.i_clave = 80;
174 r = emufs_tipo1_leer_registro_plus(emu, clave, &size, &err);
175
176 imprimir_reg(r, strlen(texto), size);
177 free(r);
178
179 /*
180 for ( i=0; i<10000; i++){
181         texto2="SETPTIMO REGISTRO, lo inserto donde entre carajo2ooooooooooooooooooCLAVE = 80";
182         srandom(i);
183         clave.i_clave = random();       
184         r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
185         len = strlen(texto)+strlen(texto2)+sizeof(CLAVE);
186         emufs_tipo1_insertar_ordenado(emu, r, len, &err);
187         free(r);
188 }
189 */
190
191 ver_arbol(emu);
192 emufs_destruir(emu);
193
194         return 0;
195         
196 }