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 static int b_elegir_izquierdo(INDICE *idx, int a, int b);
20 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k);
22 void emufs_indice_b_crear(INDICE *idx)
31 header.hijo_izquierdo = -1;
33 fp = fopen(idx->filename, "w");
34 PERR("Creando indice");
35 fprintf(stderr, "Archivo = (%s)\n", idx->filename);
37 PERR("Error al crear el archivo");
41 /* Creo el archivo con el Nodo raiz */
42 bloque = (char *)malloc(idx->tam_bloque);
43 memset(bloque, -1, idx->tam_bloque);
45 memcpy(bloque, &header, sizeof(B_NodoHeader));
47 fwrite(bloque, idx->tam_bloque, 1, fp);
51 int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
53 int i, nodo_id, padre_id;
59 nodo = b_leer_nodo(idx, 0);
60 padre_id = nodo_id = 0;
63 if (padre) free(padre);
66 b_leer_header(nodo, &header);
67 claves = b_leer_claves(nodo, &header);
69 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
70 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
71 /* CLAVE DUPLICADA! */
75 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
76 nodo_id = header.hijo_izquierdo;
78 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
79 nodo_id = claves[i-1].hijo_derecho;
87 b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
88 return 1; /* Agregar OK! */
91 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
100 nodo = b_leer_nodo(idx, 0);
102 b_leer_header(nodo, &header);
103 claves = b_leer_claves(nodo, &header);
105 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
106 if (emufs_indice_es_igual(idx, claves[i].clave, clave)) {
107 ret = claves[i].dato;
113 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
115 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
121 /* Nodo no encontrado */
122 ret.id = ret.bloque = -1;
126 int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
128 /* Busco el nodo que contiene la clave,si es que esta existe */
135 nodo_id = 0; /* Tomo la raiz */
136 nodo = b_leer_nodo(idx, nodo_id);
137 PERR("Buscando clave a borrar");
138 while (nodo && !encontrado) {
139 /* Obtengo los datos del nodo */
140 b_leer_header(nodo, &header);
141 claves = b_leer_claves(nodo, &header);
144 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
146 if ((emufs_indice_es_igual(idx, claves[i].clave, k)) && (i<header.cant))
151 nodo_id = header.hijo_izquierdo;
152 nodo = b_leer_nodo(idx, nodo_id);
154 nodo_id = claves[i-1].hijo_derecho;
156 nodo = b_leer_nodo(idx, nodo_id);
162 PERR("Clave encontrada, borrando ...");
163 b_borrar_clave(idx, nodo, nodo_id, k);
165 PERR("Clave no encontrada");
170 static int b_ultimo_id(INDICE *idx)
174 fp = fopen(idx->filename, "r");
175 fseek(fp, 0, SEEK_END);
176 i = ftell(fp)/idx->tam_bloque;
182 static char *b_crear_nodo(INDICE *idx, int *id)
187 (*id) = b_ultimo_id(idx);
191 header.hijo_izquierdo = -1;
194 bloque = (char *)malloc(idx->tam_bloque);
195 memset(bloque, -1, idx->tam_bloque);
196 memcpy(bloque, &header, sizeof(B_NodoHeader));
198 b_grabar_nodo(idx, *id, bloque);
203 static char *b_leer_nodo(INDICE *idx, int id)
208 if (id < 0) return NULL;
210 fp = fopen(idx->filename, "r");
211 if (fp == NULL) return NULL;
213 fseek(fp, id*idx->tam_bloque, SEEK_SET);
215 out = (char *)malloc(idx->tam_bloque);
221 if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
223 /* No se puso leer el nodo */
232 static void b_grabar_nodo(INDICE *idx, int id, char *data)
236 /* if (id > b_ultimo_id()) {
237 printf("AGREGANDO AL FINAL\n");
238 fp = fopen(FILENAME, "a");
240 _("No se pudo abrir archivo\n");
244 fp = fopen(FILENAME, "w");
246 _("No se pudo abrir archivo\n");
249 fseek(fp, id*BLOCK_SIZE, SEEK_SET);
250 printf("SOLO GUARDO DATA\n");
253 fp = fopen(idx->filename, "r+");
254 fseek(fp, id*idx->tam_bloque, SEEK_SET);
255 fwrite(data, 1, idx->tam_bloque, fp);
259 static void b_leer_header(char *src, B_NodoHeader *header)
263 memcpy(header, src, sizeof(B_NodoHeader));
266 static void b_actualizar_header(char *src, B_NodoHeader *header)
269 memcpy(src, header, sizeof(B_NodoHeader));
272 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
274 return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
277 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
284 B_NodoHeader nodo_header, nuevo_header;
285 B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
290 nodo = b_crear_nodo(idx, &nodo_id);
292 b_leer_header(nodo, &nodo_header);
293 claves = b_leer_claves(nodo, &nodo_header);
295 padre = b_leer_nodo(idx, nodo_header.padre);
297 if (nodo_header.cant == CANT_HIJOS(idx)) {
299 nuevo = b_crear_nodo(idx, &nuevo_id);
301 /* Creo una lista ordenada de los nodos a partir */
302 tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
303 total = nodo_header.cant;
304 while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
305 tmp_claves[i] = claves[i];
308 tmp_claves[i].clave = clave;
309 tmp_claves[i].dato = dato;
310 tmp_claves[i].hijo_derecho = hijo1;
311 tmp_claves[i+1].hijo_derecho = hijo2;
312 while (i < nodo_header.cant) {
313 tmp_claves[i+1] = claves[i];
317 /* Asigno a cada nodo lo que corresponde */
318 b_leer_header(nuevo, &nuevo_header);
320 nuevo_header.nivel = nodo_header.nivel;
321 nodo_header.cant = total/2;
322 nuevo_header.cant = total - nodo_header.cant;
324 memset(claves, '*', idx->tam_bloque-sizeof(B_NodoHeader));
325 for(j=0; j<nodo_header.cant; j++)
326 claves[j] = tmp_claves[j];
328 claves_nuevo = b_leer_claves(nuevo, &nuevo_header);
329 memset(claves_nuevo, '*', idx->tam_bloque-sizeof(B_NodoHeader));
330 for(j=0; j<nuevo_header.cant; j++)
331 claves_nuevo[j] = tmp_claves[j+total/2+1];
333 b_actualizar_header(nodo, &nodo_header);
334 b_actualizar_header(nuevo, &nuevo_header);
337 clave = tmp_claves[total/2].clave;
338 /* XXX dato.bloque = nuevo_id; */
340 b_grabar_nodo(idx, nodo_id, nodo);
341 b_grabar_nodo(idx, nuevo_id, nuevo);
350 nodo_id = nodo_header.padre;
352 /* Oops, parti el raiz, y este debe quedar en 0, lo paso a otro bloque
353 * y dejo el padre vacio
355 char *tmp_nuevo = b_crear_nodo(idx, &nodo_id);
356 memcpy(tmp_nuevo, nodo, idx->tam_bloque);
360 clave = tmp_claves[total/2].clave;
361 /* XXX dato.bloque = nuevo_id; */
363 b_grabar_nodo(idx, nuevo_id+1, nodo);
364 b_grabar_nodo(idx, nuevo_id, nuevo);
373 /* Limpio al padre */
374 nuevo = b_leer_nodo(idx, 0);
376 b_leer_header(nuevo, &nuevo_header);
377 nuevo_header.cant = 0;
378 nuevo_header.padre = -1;
379 nuevo_header.nivel = nodo_header.nivel+1;
380 memset(nuevo, -1, idx->tam_bloque);
381 b_actualizar_header(nuevo, &nuevo_header);
382 b_grabar_nodo(idx, 0, nuevo);
389 /* La clave entra en este nodo!! */
391 if (nodo_header.cant > 0) {
392 while ((emufs_indice_es_menor(idx, claves[i].clave, clave)) && (i < nodo_header.cant)) i++;
393 for(j=nodo_header.cant; j > i; j--)
394 claves[j] = claves[j-1];
397 claves[i].clave = clave;
398 claves[i].dato = dato;
399 claves[i].hijo_derecho = hijo2;
400 nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
402 b_actualizar_header(nodo, &nodo_header);
403 b_grabar_nodo(idx, nodo_id, nodo);
405 /* Debo actualizar los punteros al padre de los hijos */
407 nuevo = b_leer_nodo(idx, hijo1);
409 b_leer_header(nuevo, &nuevo_header);
410 nuevo_header.padre = nodo_id;
411 b_actualizar_header(nuevo, &nuevo_header);
412 b_grabar_nodo(idx, hijo1, nuevo);
414 } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
417 nuevo = b_leer_nodo(idx, hijo2);
419 b_leer_header(nuevo, &nuevo_header);
420 nuevo_header.padre = nodo_id;
421 b_actualizar_header(nuevo, &nuevo_header);
422 b_grabar_nodo(idx, hijo2, nuevo);
424 } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
431 static int b_elegir_izquierdo(INDICE *idx, int a, int b)
435 B_NodoHeader header1, header2;
436 B_NodoEntry *claves1, *claves2;
441 nodo1 = b_leer_nodo(idx, a);
442 nodo2 = b_leer_nodo(idx, b);
444 b_leer_header(nodo1, &header1);
445 b_leer_header(nodo2, &header2);
447 claves1 = b_leer_claves(nodo1, &header1);
448 claves2 = b_leer_claves(nodo2, &header2);
450 if (emufs_indice_es_menor(idx, claves1[0].clave, claves2[0].clave))
460 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
462 /* Si el indice es primario no tiene sentido hacer nada */
463 if (idx->funcion == IND_PRIMARIO) {
468 /* TODO Implementar indices con repeticion */
472 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
474 int pos, actual_id, i;
475 B_NodoHeader header, header_actual;
476 B_NodoEntry *claves, *claves_actual;
479 b_leer_header(nodo, &header);
480 claves = b_leer_claves(nodo, &header);
483 /* Busco la posicion dentro de la lista de claves */
484 while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
486 /* Es el nodo una hoja? */
487 if (header.hijo_izquierdo != -1) {
488 /* No!, es un nodo intermedio!! */
490 actual = b_leer_nodo(idx, header.hijo_izquierdo);
492 actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho);
494 b_leer_header(actual, &header_actual);
495 while (header_actual.hijo_izquierdo != -1) {
496 actual_id = header_actual.hijo_izquierdo;
498 actual = b_leer_nodo(idx, actual_id);
499 b_leer_header(actual, &header_actual);
501 claves_actual = b_leer_claves(actual, &header);
503 claves[pos] = claves_actual[0];
505 b_grabar_nodo(idx, nodo_id, nodo);
511 for(i=pos; i < header_actual.cant; i++) {
512 claves_actual[i] = claves_actual[i+1];
514 header_actual.cant--;
515 /* Guardo los cambios */
516 b_actualizar_header(actual, &header_actual);
517 b_grabar_nodo(idx, actual_id, actual);
519 /* Se cumple la condicion de hijos? */
520 if (header_actual.cant >= MIN_HIJOS(idx)) {
521 PERR("Borrar completo sin fundir");
525 /* Tengo que pasar datos o fundir nodos :-( */
526 PERR("TODO : FUNDIR NODOS!!!!\n");