6 /* Cantidad de claves por nodo */
7 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
8 #define CANT_NODOS(x) (CANT_HIJOS(x)+1)
9 #define MIN_HIJOS(x) (CANT_HIJOS(x)/2)
12 /** Graba el nodo en el archivo */
13 static void b_grabar_nodo(INDICE *idx, int id, char *data);
14 /** Da el ID del proximo nodo a poder ser utilizado */
15 static int b_ultimo_id(INDICE *idx);
16 /** Lee un nodo desde el archivo */
17 static char *b_leer_nodo(INDICE *idx, int id);
18 /** Crea un nodo en el archivo y lo retorna. En i se pone el ID asignado */
19 static char *b_crear_nodo(INDICE *idx, int *i);
20 /** Lee el header de un nodo y lo guarda en header */
21 static void b_leer_header(char *src, B_NodoHeader *header);
22 /** Actualiza el header de un nodo desde header */
23 static void b_actualizar_header(char *src, B_NodoHeader *header);
24 /** Retorna el array de claves del nodo (esta data modifica directamente el bloque
25 * por eso no es necesario usar un actualizar_claves
27 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
28 /** Inserta una clave en el nodo de manera iterativa.
29 * \param idx Índice en donde insertar la clave.
30 * \param clave Clave a insertar.
31 * \param dato Dato a insertar
32 * \param nodo_id Id del nodo en el cual insertar la nueva clave.
33 * \param nodo FIXME Nodo en donde insertar??? No entiendo por que char*.
34 * \param hijo1 Id del nodo hijo de la izquierda del insertado.
35 * \param hijo2 Id del nodo hijo de la derecha del insertado.
37 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
38 /** Inserta en un nodo en el que se sabe positivamente que hay lugar. */
39 static void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
40 /** Esto es para asegurar el orden de los hijos luego de partir, en el caso de que
41 * lo que se parta sea la raiz
43 static int b_elegir_izquierdo(INDICE *idx, int a, int b);
44 /** Borra una clave del arbol */
45 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k);
46 /** Le pide al hermano derecho del nodo una clave cuando se eliminan claves */
47 static void b_pedir_clave_derecha(char *, int, char *, int, char *, int, int);
48 /** Le pide al hermano izquierdo una clave cuando se eliminan claves */
49 static void b_pedir_clave_izquierda(char *, int, char *, int, char *, int, int);
50 /** Le pasa al hermano derecho del nodo una clave cuando se insertan claves */
51 static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_NodoEntry);
52 /** Le pasa al hermano izquierdo una clave cuando se insertan claves */
53 static void b_pasar_clave_a_izquierda(INDICE*, char*, int, char*, int, int, B_NodoEntry);
54 /** Junta 2 nodos y hace uno solo */
55 static void b_fundir_nodo(char *, int, char *, int, char *, int, int);
57 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo);
59 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header);
60 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header);
62 void emufs_indice_b_crear(INDICE *idx)
71 header.hijo_izquierdo = -1;
73 fp = fopen(idx->filename, "w");
74 PERR("Creando indice");
75 fprintf(stderr, "Archivo = (%s)\n", idx->filename);
77 PERR("Error al crear el archivo");
81 /* Creo el archivo con el Nodo raiz */
82 bloque = (char *)malloc(idx->tam_bloque);
83 memset(bloque, -1, idx->tam_bloque);
85 memcpy(bloque, &header, sizeof(B_NodoHeader));
87 fwrite(bloque, idx->tam_bloque, 1, fp);
91 int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
93 int i, nodo_id, padre_id;
100 nodo = b_leer_nodo(idx, 0);
101 padre_id = nodo_id = 0;
104 if (padre) free(padre);
107 b_leer_header(nodo, &header);
108 claves = b_leer_claves(nodo, &header);
110 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
111 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
112 if (idx->funcion == IND_PRIMARIO) {
113 PERR("Indice primario no puede contener claves duplicadas!");
118 /* TODO : Implementar carga de valor en clave duplicada! */
119 b_insertar_dup_en_pos(idx, claves[i].dato, dato);
121 if (idx->tipo_dato == IDX_STRING) {
122 /* Tengo que sacar el texto repetido del archivo de textos */
123 PERR("Eliminando string duplicado");
124 idx->emu_string->borrar_registro(idx->emu_string, clave);
129 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
130 nodo_id = header.hijo_izquierdo;
132 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
133 nodo_id = claves[i-1].hijo_derecho;
138 if (nodo) free(nodo);
142 if (idx->funcion != IND_PRIMARIO) {
143 /* Agrego el DATO real al archivo de claves repetiras
144 * y me guardo el ID para poner en el indice
147 dato.id = b_insertar_dup_en_pos(idx, dummy, dato);
149 PERR("NODO INSERTADO EN POS GENERADA NUEVA");
150 PERR("Ahora inserto");
151 fprintf(stderr, "Nombre del coso = %s\n", idx->nombre);
154 b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
155 return 1; /* Agregar OK! */
158 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
167 nodo = b_leer_nodo(idx, 0);
169 b_leer_header(nodo, &header);
170 claves = b_leer_claves(nodo, &header);
172 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
173 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
174 ret = claves[i].dato;
180 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
182 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
188 /* Nodo no encontrado */
189 ret.id = ret.bloque = -1;
193 int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
195 /* Busco el nodo que contiene la clave,si es que esta existe */
202 nodo_id = 0; /* Tomo la raiz */
203 nodo = b_leer_nodo(idx, nodo_id);
204 PERR("Buscando clave a borrar");
205 while (nodo && !encontrado) {
206 /* Obtengo los datos del nodo */
207 b_leer_header(nodo, &header);
208 claves = b_leer_claves(nodo, &header);
211 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
213 if ((emufs_indice_es_igual(idx, claves[i].clave, k)) && (i<header.cant))
218 nodo_id = header.hijo_izquierdo;
219 nodo = b_leer_nodo(idx, nodo_id);
221 nodo_id = claves[i-1].hijo_derecho;
223 nodo = b_leer_nodo(idx, nodo_id);
229 PERR("Clave encontrada, borrando ...");
230 b_borrar_clave(idx, nodo, nodo_id, k);
232 PERR("Clave no encontrada");
237 static int b_ultimo_id(INDICE *idx)
241 fp = fopen(idx->filename, "r");
242 fseek(fp, 0, SEEK_END);
243 i = ftell(fp)/idx->tam_bloque;
249 static char *b_crear_nodo(INDICE *idx, int *id)
254 (*id) = b_ultimo_id(idx);
258 header.hijo_izquierdo = -1;
261 bloque = (char *)malloc(idx->tam_bloque);
262 memset(bloque, -1, idx->tam_bloque);
263 memcpy(bloque, &header, sizeof(B_NodoHeader));
265 b_grabar_nodo(idx, *id, bloque);
270 static char *b_leer_nodo(INDICE *idx, int id)
277 if (id < 0) return NULL;
279 fp = fopen(idx->filename, "r");
280 if (fp == NULL) return NULL;
282 fseek(fp, id*idx->tam_bloque, SEEK_SET);
284 out = (char *)malloc(idx->tam_bloque);
290 if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
292 /* No se puso leer el nodo */
297 /* Si estoy manejando string tengo que sacar las abreviaturas */
298 if (idx->tipo_dato == IDX_STRING) {
299 b_leer_header(out, &header);
300 claves = b_leer_claves(out, &header);
301 desabreviar_claves(idx, claves, &header);
307 static void b_grabar_nodo(INDICE *idx, int id, char *data)
313 /* Si las claves son de tipo string debo abreviar antes de guardar */
314 if (idx->tipo_dato == IDX_STRING) {
315 b_leer_header(data, &header);
316 claves = b_leer_claves(data, &header);
317 abreviar_claves(idx, claves, &header);
319 fp = fopen(idx->filename, "r+");
320 fseek(fp, id*idx->tam_bloque, SEEK_SET);
321 fwrite(data, 1, idx->tam_bloque, fp);
325 static void b_leer_header(char *src, B_NodoHeader *header)
329 memcpy(header, src, sizeof(B_NodoHeader));
332 static void b_actualizar_header(char *src, B_NodoHeader *header)
335 memcpy(src, header, sizeof(B_NodoHeader));
338 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
340 return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
343 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
350 B_NodoHeader nodo_header, nuevo_header;
351 B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
356 nodo = b_crear_nodo(idx, &nodo_id);
358 b_leer_header(nodo, &nodo_header);
359 claves = b_leer_claves(nodo, &nodo_header);
361 padre = b_leer_nodo(idx, nodo_header.padre);
363 if (nodo_header.cant == CANT_HIJOS(idx)) {
365 /* TODO: Si es B*, hay que chequear si alguno de los 2
366 * nodos hermanos pueden prestarme espacio (y
367 * desplazar si es así). Si no pueden, hay que
368 * hacer un split de 2 nodos en 3.
369 * Si no es B*, hay que hacer lo que sigue:
371 nuevo = b_crear_nodo(idx, &nuevo_id);
373 /* Creo una lista ordenada de los nodos a partir */
374 tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
375 total = nodo_header.cant;
376 while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
377 tmp_claves[i] = claves[i];
380 tmp_claves[i].clave = clave;
381 tmp_claves[i].dato = dato;
382 tmp_claves[i].hijo_derecho = hijo1;
383 if (i<nodo_header.cant)
384 tmp_claves[i+1].hijo_derecho = hijo2;
385 while (i < nodo_header.cant) {
386 tmp_claves[i+1] = claves[i];
390 /* Asigno a cada nodo lo que corresponde */
391 b_leer_header(nuevo, &nuevo_header);
393 nuevo_header.nivel = nodo_header.nivel;
394 nodo_header.cant = total/2;
395 nuevo_header.cant = total - nodo_header.cant;
397 memset(claves, '*', idx->tam_bloque-sizeof(B_NodoHeader));
398 for(j=0; j<nodo_header.cant; j++)
399 claves[j] = tmp_claves[j];
401 claves_nuevo = b_leer_claves(nuevo, &nuevo_header);
402 memset(claves_nuevo, '*', idx->tam_bloque-sizeof(B_NodoHeader));
403 for(j=0; j<nuevo_header.cant; j++)
404 claves_nuevo[j] = tmp_claves[j+total/2+1];
406 b_actualizar_header(nodo, &nodo_header);
407 b_actualizar_header(nuevo, &nuevo_header);
410 clave = tmp_claves[total/2].clave;
411 dato = tmp_claves[total/2].dato;
413 b_grabar_nodo(idx, nodo_id, nodo);
414 b_grabar_nodo(idx, nuevo_id, nuevo);
423 nodo_id = nodo_header.padre;
425 /* Oops, parti el raiz, y este debe quedar en 0, lo paso a otro bloque
426 * y dejo el padre vacio
428 char *tmp_nuevo = b_crear_nodo(idx, &nodo_id);
429 memcpy(tmp_nuevo, nodo, idx->tam_bloque);
433 clave = tmp_claves[total/2].clave;
434 dato = tmp_claves[total/2].dato;
436 b_grabar_nodo(idx, nuevo_id+1, nodo);
437 b_grabar_nodo(idx, nuevo_id, nuevo);
446 /* Limpio al padre */
447 nuevo = b_leer_nodo(idx, 0);
449 b_leer_header(nuevo, &nuevo_header);
450 nuevo_header.cant = 0;
451 nuevo_header.padre = -1;
452 nuevo_header.nivel = nodo_header.nivel+1;
453 memset(nuevo, -1, idx->tam_bloque);
454 b_actualizar_header(nuevo, &nuevo_header);
455 b_grabar_nodo(idx, 0, nuevo);
462 /* La clave entra en este nodo!! */
463 b_insertar_en_nodo_con_lugar(idx, clave, dato, nodo_id, nodo, hijo1, hijo2);
469 void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
472 B_NodoHeader nodo_header;
474 b_leer_header(nodo, &nodo_header);
475 claves = b_leer_claves(nodo, &nodo_header);
476 if (nodo_header.cant > 0) {
478 while ((i < nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
479 for(j=nodo_header.cant; j > i; j--)
480 claves[j] = claves[j-1];
483 claves[i].clave = clave;
484 claves[i].dato = dato;
485 claves[i].hijo_derecho = hijo2;
486 nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
488 b_actualizar_header(nodo, &nodo_header);
489 b_grabar_nodo(idx, nodo_id, nodo);
491 /* Debo actualizar los punteros al padre de los hijos */
493 char* nuevo = b_leer_nodo(idx, hijo1);
495 B_NodoHeader nuevo_header;
496 b_leer_header(nuevo, &nuevo_header);
497 nuevo_header.padre = nodo_id;
498 b_actualizar_header(nuevo, &nuevo_header);
499 b_grabar_nodo(idx, hijo1, nuevo);
501 } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
504 char* nuevo = b_leer_nodo(idx, hijo2);
506 B_NodoHeader nuevo_header;
507 b_leer_header(nuevo, &nuevo_header);
508 nuevo_header.padre = nodo_id;
509 b_actualizar_header(nuevo, &nuevo_header);
510 b_grabar_nodo(idx, hijo2, nuevo);
512 } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
516 static int b_elegir_izquierdo(INDICE *idx, int a, int b)
520 B_NodoHeader header1, header2;
521 B_NodoEntry *claves1, *claves2;
526 nodo1 = b_leer_nodo(idx, a);
527 nodo2 = b_leer_nodo(idx, b);
529 b_leer_header(nodo1, &header1);
530 b_leer_header(nodo2, &header2);
532 claves1 = b_leer_claves(nodo1, &header1);
533 claves2 = b_leer_claves(nodo2, &header2);
535 if (emufs_indice_es_menor(idx, claves1[0].clave, claves2[0].clave))
545 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
551 INDICE_DATO dato, *ret;
553 /* Si el indice es primario no tiene sentido hacer nada */
554 if (idx->funcion == IND_PRIMARIO) {
556 PERR("INDICE PRIMARIO NO SOPORTA BUSQUEDA MULTIPLE");
560 /* Busco la clave en el arbol */
561 dato = emufs_indice_b_buscar(idx, clave);
564 PERR("CLAvE NO ENCONTRADA EN EL ARBOL!");
567 /* Leo el contenido actual */
570 leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
572 /* Incremento en 1 la cantidad */
574 (*cant) = *((int *)leido);
578 ret = malloc(sizeof(INDICE_DATO)*(*cant));
579 memcpy(ret, leido+sizeof(int), (*cant)*sizeof(INDICE_DATO));
581 fprintf(stderr, "TENGO QUE ESTA CLAVE TIENE %d ITEMS\n", *cant);
585 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
587 int pos, actual_id, padre_id, i, pos_padre, izquierda_id, derecha_id;
588 B_NodoHeader header, header_actual, header_padre, header_izq, header_der;
589 B_NodoEntry *claves, *claves_actual, *claves_padre;/*, *claves_izq, *claves_der;*/
590 char *actual, *padre, *izq, *der;
592 b_leer_header(nodo, &header);
593 claves = b_leer_claves(nodo, &header);
596 /* Busco la posicion dentro de la lista de claves */
597 while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
599 /* Es el nodo una hoja? */
600 if (header.hijo_izquierdo != -1) {
601 /* No!, es un nodo intermedio!! */
603 actual = b_leer_nodo(idx, header.hijo_izquierdo);
605 actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho);
607 b_leer_header(actual, &header_actual);
608 while (header_actual.hijo_izquierdo != -1) {
609 actual_id = header_actual.hijo_izquierdo;
611 actual = b_leer_nodo(idx, actual_id);
612 b_leer_header(actual, &header_actual);
614 claves_actual = b_leer_claves(actual, &header);
616 claves[pos] = claves_actual[0];
618 b_grabar_nodo(idx, nodo_id, nodo);
624 for(i=pos; i < header_actual.cant; i++) {
625 claves_actual[i] = claves_actual[i+1];
627 header_actual.cant--;
628 /* Guardo los cambios */
629 b_actualizar_header(actual, &header_actual);
630 b_grabar_nodo(idx, actual_id, actual);
632 /* Se cumple la condicion de hijos? */
633 if (header_actual.cant >= MIN_HIJOS(idx)) {
634 PERR("Borrar completo sin fundir");
638 /* Tengo que pasar datos o fundir nodos :-( */
640 padre_id = header.padre;
641 padre = b_leer_nodo(idx, padre_id);
642 b_leer_header(padre, &header_padre);
643 claves_padre = b_leer_claves(padre, &header_padre);
644 /* TODO Tengo el hijo_izquierdo para revisar!! XXX */
645 if (header_padre.hijo_izquierdo == actual_id) {
646 izquierda_id = -1; /* No tengo hermano izquierdo */
647 /* Mi hermano derecho es el primer nodo del padre */
648 derecha_id = claves_padre[0].hijo_derecho;
649 der = b_leer_nodo(idx, derecha_id);
650 b_leer_header(der, &header_der);
652 for(pos_padre=0; claves_padre[pos_padre].hijo_derecho != actual_id; pos_padre++) { }
654 /* Busco mis hermanos a derecha e izquierda, si es que existen */
655 if (pos_padre >= 0) {
657 izquierda_id = header_padre.hijo_izquierdo;
659 izquierda_id = claves_padre[pos_padre-1].hijo_derecho;
660 izq = b_leer_nodo(idx, izquierda_id);
661 b_leer_header(izq, &header_izq);
665 if (pos_padre < header_padre.cant) {
666 derecha_id = claves_padre[pos_padre+1].hijo_derecho;
667 der = b_leer_nodo(idx, derecha_id);
668 b_leer_header(der, &header_der);
673 /* Intendo pasar una clave desde un hermano hacia mi */
674 if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
675 b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
676 } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
677 b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
679 /* No pude pasar clave, tengo que fundir :-( */
680 if (derecha_id != -1) {
681 b_fundir_nodo(actual, actual_id, padre, padre_id, der, derecha_id, pos_padre);
683 b_fundir_nodo(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
687 /* TODO que guardo ?, todo ? */
688 b_grabar_nodo(idx, actual_id, actual);
689 b_grabar_nodo(idx, izquierda_id, izq);
690 b_grabar_nodo(idx, derecha_id, der);
691 b_grabar_nodo(idx, padre_id, padre);
692 if (actual_id != -1) free(actual);
693 /*if (padre_id != -1) free(padre);*/
694 if (derecha_id != -1) free(der);
695 if (izquierda_id != -1) free(izq);
697 actual_id = padre_id;
698 } while ((actual_id != -1) && (header_actual.cant < MIN_HIJOS(idx)));
701 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
704 B_NodoHeader h_der, h_padre, h_nodo;
705 B_NodoEntry *c_der, *c_padre, *c_nodo;
707 b_leer_header(nodo, &h_nodo);
708 c_nodo = b_leer_claves(nodo, &h_nodo);
709 b_leer_header(der, &h_der);
710 c_der = b_leer_claves(der, &h_der);
711 b_leer_header(padre, &h_padre);
712 c_padre = b_leer_claves(padre, &h_padre);
714 c_nodo[h_nodo.cant] = c_padre[pos_clave];
715 c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
717 c_padre[pos_clave] = c_der[0];
718 c_padre[pos_clave].hijo_derecho = der_id;
720 /* Muevo las claves de derecho */
721 for(i=0; i<h_der.cant; i++) {
722 c_der[i] = c_der[i+1];
727 b_actualizar_header(der, &h_der);
728 b_actualizar_header(nodo, &h_nodo);
731 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
733 B_NodoHeader der_h, padre_h;
734 B_NodoEntry *der_entries, *padre_entries;
735 /* Leo claves y cabecera del nodo de la derecha y del padre */
736 b_leer_header(der, &der_h);
737 der_entries = b_leer_claves(der, &der_h);
738 b_leer_header(padre, &padre_h);
739 padre_entries = b_leer_claves(padre, &padre_h);
740 /* Inserto en el hijo derecho la clave del padre */
741 b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
742 der_id, der, entry.hijo_derecho, der_h.hijo_izquierdo);
743 /* Reemplazo clave del padre por clave nueva */
744 entry.hijo_derecho = der_id;
745 padre_entries[padre_pos] = entry;
748 void b_pedir_clave_izquierda(char *izq, int izq_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
751 B_NodoHeader h_izq, h_padre, h_nodo;
752 B_NodoEntry *c_izq, *c_padre, *c_nodo;
754 b_leer_header(nodo, &h_nodo);
755 c_nodo = b_leer_claves(nodo, &h_nodo);
756 b_leer_header(izq, &h_izq);
757 c_izq = b_leer_claves(izq, &h_izq);
758 b_leer_header(padre, &h_padre);
759 c_padre = b_leer_claves(padre, &h_padre);
761 for(i=h_nodo.cant; i>0;i++)
762 c_nodo[i] = c_nodo[i-1];
765 c_nodo[0] = c_padre[pos_clave];
766 c_nodo[0].hijo_derecho = -1; /* XXX */
767 c_padre[pos_clave] = c_izq[h_izq.cant-1];
768 c_padre[pos_clave].hijo_derecho = izq_id;
771 b_actualizar_header(izq, &h_izq);
772 b_actualizar_header(padre, &h_padre);
773 b_actualizar_header(nodo, &h_nodo);
776 void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
779 B_NodoHeader h_izq, h_padre, h_nodo;
780 B_NodoEntry *c_izq, *c_padre, *c_nodo;
782 b_leer_header(nodo, &h_nodo);
783 c_nodo = b_leer_claves(nodo, &h_nodo);
784 b_leer_header(izq, &h_izq);
785 c_izq = b_leer_claves(izq, &h_izq);
786 b_leer_header(padre, &h_padre);
787 c_padre = b_leer_claves(padre, &h_padre);
789 for(i=h_nodo.cant; i>0;i++)
790 c_nodo[i] = c_nodo[i-1];
793 c_nodo[0] = c_padre[pos_clave];
794 c_nodo[0].hijo_derecho = -1; / * XXX * /
795 c_padre[pos_clave] = c_izq[h_izq.cant-1];
796 c_padre[pos_clave].hijo_derecho = izq_id;
799 b_actualizar_header(izq, &h_izq);
800 b_actualizar_header(padre, &h_padre);
801 b_actualizar_header(nodo, &h_nodo);
805 static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_clave)
809 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)
818 /* Leo el contenido actual */
821 leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
823 /* Incremento en 1 la cantidad */
825 cant = *((int *)leido);
830 /* Obtengo un nuevo lugar para el dato nuevo */
831 /* Aca todo bien, si leido es NULL se compota como malloc */
832 leido = realloc(leido, cant*sizeof(INDICE_DATO)+sizeof(int));
833 array = (INDICE_DATO *)(leido+sizeof(int));
835 /* Pongo el dato nuevo */
836 array[cant-1] = nuevo;
838 /* Actualizo la cantidad */
839 (*((int *)leido)) = cant;
842 if (k.i_clave == -1) {
845 PERR("GRABADO REGISTRO NUEVO");
846 k.i_clave = idx->emu_mult->grabar_registro(idx->emu_mult,
848 cant*sizeof(INDICE_DATO)+sizeof(int),
851 if (k.i_clave == -1) PERR("ALGO NO GRABO BIEN!!");
853 /* Modifico el que ya existia! */
854 PERR("MODIFICANDO REGISTRO EXISTENTE");
856 idx->emu_mult->modificar_registro(idx->emu_mult,
859 cant*sizeof(INDICE_DATO)+sizeof(int),
868 char *abreviar(char *primera, char *actual, int *iguales)
871 while (((*primera) != '\0') && ((*actual) != '\0')) {
872 if ((*primera) == (*actual)) {
877 /* No coinciden mas! */
885 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
887 char *primera, *actual, *resto, salvar[100];
892 /* Agarro la primer clave entera como referencia */
893 primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
894 for(i=1; i<header->cant; i++) {
895 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
896 resto = abreviar(primera, actual, &iguales);
897 /* Para que tenga sentido abreviar tengo que tener
898 * mas de 2 letras iguales, si no no gano nada y complica las cosas
901 sprintf(salvar, "%d|%s", iguales, resto);
904 idx->emu_string->modificar_registro(idx->emu_string, array[i].clave.i_clave, salvar, strlen(salvar)+1, &error);
914 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
916 char *primera, *actual, *resto, salvar[100];
921 /* Agarro la primer clave entera como referencia */
922 primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
923 for(i=1; i<header->cant; i++) {
924 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
925 iguales = strtol(actual, &resto, 10);
926 if ((iguales > 0) && (*resto == '|')) {
927 fprintf(stderr, "%s %s %d\n", primera, actual, iguales);
928 strncpy(salvar, primera, iguales);
929 salvar[iguales] = '\0';
930 strcat(salvar, resto+1); /* +1 para saltar el separador */
931 idx->emu_string->modificar_registro(idx->emu_string, array[i].clave.i_clave, salvar, strlen(salvar)+1, &error);