5 /* Cantidad de claves por nodo */
6 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
7 #define CANT_NODOS(x) (CANT_HIJOS(x)+1)
8 #define MIN_HIJOS(x) (CANT_HIJOS(x)/2)
11 static void b_grabar_nodo(INDICE *idx, int id, char *data);
12 static int b_ultimo_id(INDICE *idx);
13 static char *b_leer_nodo(INDICE *idx, int id);
14 static char *b_crear_nodo(INDICE *idx, int *i);
15 static void b_leer_header(char *src, B_NodoHeader *header);
16 static void b_actualizar_header(char *src, B_NodoHeader *header);
17 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
18 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
19 const int b_elegir_izquierdo(INDICE *idx, int a, int b);
21 void emufs_indice_b_crear(INDICE *idx)
30 header.hijo_izquierdo = -1;
32 fp = fopen(idx->filename, "w");
33 PERR("Creando indice");
34 fprintf(stderr, "Archivo = (%s)\n", idx->filename);
36 PERR("Error al crear el archivo");
40 /* Creo el archivo con el Nodo raiz */
41 bloque = (char *)malloc(idx->tam_bloque);
42 memset(bloque, -1, idx->tam_bloque);
44 memcpy(bloque, &header, sizeof(B_NodoHeader));
46 fwrite(bloque, idx->tam_bloque, 1, fp);
50 int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
52 int i, nodo_id, padre_id;
58 nodo = b_leer_nodo(idx, 0);
59 padre_id = nodo_id = 0;
62 if (padre) free(padre);
65 b_leer_header(nodo, &header);
66 claves = b_leer_claves(nodo, &header);
68 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
69 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
70 /* CLAVE DUPLICADA! */
74 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
75 nodo_id = header.hijo_izquierdo;
77 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
78 nodo_id = claves[i-1].hijo_derecho;
86 b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
87 return 1; /* Agregar OK! */
90 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
99 nodo = b_leer_nodo(idx, 0);
101 b_leer_header(nodo, &header);
102 claves = b_leer_claves(nodo, &header);
104 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
105 if (emufs_indice_es_igual(idx, claves[i].clave, clave)) {
106 ret = claves[i].dato;
112 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
114 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
120 /* Nodo no encontrado */
121 ret.id = ret.bloque = -1;
125 static int b_ultimo_id(INDICE *idx)
129 fp = fopen(idx->filename, "r");
130 fseek(fp, 0, SEEK_END);
131 i = ftell(fp)/idx->tam_bloque;
137 static char *b_crear_nodo(INDICE *idx, int *id)
142 (*id) = b_ultimo_id(idx);
146 header.hijo_izquierdo = -1;
149 bloque = (char *)malloc(idx->tam_bloque);
150 memset(bloque, -1, idx->tam_bloque);
151 memcpy(bloque, &header, sizeof(B_NodoHeader));
153 b_grabar_nodo(idx, *id, bloque);
158 static char *b_leer_nodo(INDICE *idx, int id)
163 if (id < 0) return NULL;
165 fp = fopen(idx->filename, "r");
166 if (fp == NULL) return NULL;
168 fseek(fp, id*idx->tam_bloque, SEEK_SET);
170 out = (char *)malloc(idx->tam_bloque);
176 if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
178 /* No se puso leer el nodo */
187 static void b_grabar_nodo(INDICE *idx, int id, char *data)
191 /* if (id > b_ultimo_id()) {
192 printf("AGREGANDO AL FINAL\n");
193 fp = fopen(FILENAME, "a");
195 _("No se pudo abrir archivo\n");
199 fp = fopen(FILENAME, "w");
201 _("No se pudo abrir archivo\n");
204 fseek(fp, id*BLOCK_SIZE, SEEK_SET);
205 printf("SOLO GUARDO DATA\n");
208 fp = fopen(idx->filename, "r+");
209 fseek(fp, id*idx->tam_bloque, SEEK_SET);
210 fwrite(data, 1, idx->tam_bloque, fp);
214 static void b_leer_header(char *src, B_NodoHeader *header)
218 memcpy(header, src, sizeof(B_NodoHeader));
221 static void b_actualizar_header(char *src, B_NodoHeader *header)
224 memcpy(src, header, sizeof(B_NodoHeader));
227 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
229 return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
232 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
239 B_NodoHeader nodo_header, nuevo_header;
240 B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
245 nodo = b_crear_nodo(idx, &nodo_id);
247 b_leer_header(nodo, &nodo_header);
248 claves = b_leer_claves(nodo, &nodo_header);
250 padre = b_leer_nodo(idx, nodo_header.padre);
252 if (nodo_header.cant == CANT_HIJOS(idx)) {
254 nuevo = b_crear_nodo(idx, &nuevo_id);
256 /* Creo una lista ordenada de los nodos a partir */
257 tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
258 total = nodo_header.cant;
259 while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
260 tmp_claves[i] = claves[i];
263 tmp_claves[i].clave = clave;
264 tmp_claves[i].dato = dato;
265 tmp_claves[i].hijo_derecho = hijo1;
266 tmp_claves[i+1].hijo_derecho = hijo2;
267 while (i < nodo_header.cant) {
268 tmp_claves[i+1] = claves[i];
272 /* Asigno a cada nodo lo que corresponde */
273 b_leer_header(nuevo, &nuevo_header);
275 nuevo_header.nivel = nodo_header.nivel;
276 nodo_header.cant = total/2;
277 nuevo_header.cant = total - nodo_header.cant;
279 memset(claves, '*', idx->tam_bloque-sizeof(B_NodoHeader));
280 for(j=0; j<nodo_header.cant; j++)
281 claves[j] = tmp_claves[j];
283 claves_nuevo = b_leer_claves(nuevo, &nuevo_header);
284 memset(claves_nuevo, '*', idx->tam_bloque-sizeof(B_NodoHeader));
285 for(j=0; j<nuevo_header.cant; j++)
286 claves_nuevo[j] = tmp_claves[j+total/2+1];
288 b_actualizar_header(nodo, &nodo_header);
289 b_actualizar_header(nuevo, &nuevo_header);
292 clave = tmp_claves[total/2].clave;
293 /* XXX dato.bloque = nuevo_id; */
295 b_grabar_nodo(idx, nodo_id, nodo);
296 b_grabar_nodo(idx, nuevo_id, nuevo);
305 nodo_id = nodo_header.padre;
307 /* Oops, parti el raiz, y este debe quedar en 0, lo paso a otro bloque
308 * y dejo el padre vacio
310 char *tmp_nuevo = b_crear_nodo(idx, &nodo_id);
311 memcpy(tmp_nuevo, nodo, idx->tam_bloque);
315 clave = tmp_claves[total/2].clave;
316 /* XXX dato.bloque = nuevo_id; */
318 b_grabar_nodo(idx, nuevo_id+1, nodo);
319 b_grabar_nodo(idx, nuevo_id, nuevo);
328 /* Limpio al padre */
329 nuevo = b_leer_nodo(idx, 0);
331 b_leer_header(nuevo, &nuevo_header);
332 nuevo_header.cant = 0;
333 nuevo_header.padre = -1;
334 nuevo_header.nivel = nodo_header.nivel+1;
335 memset(nuevo, -1, idx->tam_bloque);
336 b_actualizar_header(nuevo, &nuevo_header);
337 b_grabar_nodo(idx, 0, nuevo);
344 /* La clave entra en este nodo!! */
346 if (nodo_header.cant > 0) {
347 while ((emufs_indice_es_menor(idx, claves[i].clave, clave)) && (i < nodo_header.cant)) i++;
348 for(j=nodo_header.cant; j > i; j--)
349 claves[j] = claves[j-1];
352 claves[i].clave = clave;
353 claves[i].dato = dato;
354 claves[i].hijo_derecho = hijo2;
355 nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
357 b_actualizar_header(nodo, &nodo_header);
358 b_grabar_nodo(idx, nodo_id, nodo);
360 /* Debo actualizar los punteros al padre de los hijos */
362 nuevo = b_leer_nodo(idx, hijo1);
364 b_leer_header(nuevo, &nuevo_header);
365 nuevo_header.padre = nodo_id;
366 b_actualizar_header(nuevo, &nuevo_header);
367 b_grabar_nodo(idx, hijo1, nuevo);
369 } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
372 nuevo = b_leer_nodo(idx, hijo2);
374 b_leer_header(nuevo, &nuevo_header);
375 nuevo_header.padre = nodo_id;
376 b_actualizar_header(nuevo, &nuevo_header);
377 b_grabar_nodo(idx, hijo2, nuevo);
379 } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
386 const int b_elegir_izquierdo(INDICE *idx, int a, int b)
390 B_NodoHeader header1, header2;
391 B_NodoEntry *claves1, *claves2;
396 nodo1 = b_leer_nodo(idx, a);
397 nodo2 = b_leer_nodo(idx, b);
399 b_leer_header(nodo1, &header1);
400 b_leer_header(nodo2, &header2);
402 claves1 = b_leer_claves(nodo1, &header1);
403 claves2 = b_leer_claves(nodo2, &header2);
405 if (emufs_indice_es_menor(idx, claves1[0].clave, claves2[0].clave))
415 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
417 /* Si el indice es primario no tiene sentido hacer nada */
418 if (idx->funcion == IND_PRIMARIO) {
423 /* TODO Implementar indices con repeticion */