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 idx->emu_string->borrar_registro(idx->emu_string, clave);
128 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
129 nodo_id = header.hijo_izquierdo;
131 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
132 nodo_id = claves[i-1].hijo_derecho;
137 if (nodo) free(nodo);
141 if (idx->funcion != IND_PRIMARIO) {
142 /* Agrego el DATO real al archivo de claves repetiras
143 * y me guardo el ID para poner en el indice
146 dato.id = b_insertar_dup_en_pos(idx, dummy, dato);
148 PERR("NODO INSERTADO EN POS GENERADA NUEVA");
149 PERR("Ahora inserto");
150 fprintf(stderr, "Nombre del coso = %s\n", idx->nombre);
153 b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
154 return 1; /* Agregar OK! */
157 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
168 nodo = b_leer_nodo(idx, 0);
172 b_leer_header(nodo, &header);
173 claves = b_leer_claves(nodo, &header);
175 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
176 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
177 ret = claves[i].dato;
178 b_grabar_nodo(idx, nodo_id, nodo);
183 b_grabar_nodo(idx, nodo_id, nodo);
185 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
186 nodo_id = header.hijo_izquierdo;
188 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
189 nodo_id = claves[i-1].hijo_derecho;
195 /* Nodo no encontrado */
196 ret.id = ret.bloque = -1;
200 int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
202 /* Busco el nodo que contiene la clave,si es que esta existe */
209 nodo_id = 0; /* Tomo la raiz */
210 nodo = b_leer_nodo(idx, nodo_id);
211 PERR("Buscando clave a borrar");
212 while (nodo && !encontrado) {
213 /* Obtengo los datos del nodo */
214 b_leer_header(nodo, &header);
215 claves = b_leer_claves(nodo, &header);
218 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
220 if ((emufs_indice_es_igual(idx, claves[i].clave, k)) && (i<header.cant))
225 nodo_id = header.hijo_izquierdo;
226 nodo = b_leer_nodo(idx, nodo_id);
228 nodo_id = claves[i-1].hijo_derecho;
230 nodo = b_leer_nodo(idx, nodo_id);
236 PERR("Clave encontrada, borrando ...");
237 b_borrar_clave(idx, nodo, nodo_id, k);
239 PERR("Clave no encontrada");
244 static int b_ultimo_id(INDICE *idx)
248 fp = fopen(idx->filename, "r");
249 fseek(fp, 0, SEEK_END);
250 i = ftell(fp)/idx->tam_bloque;
256 static char *b_crear_nodo(INDICE *idx, int *id)
261 (*id) = b_ultimo_id(idx);
265 header.hijo_izquierdo = -1;
268 bloque = (char *)malloc(idx->tam_bloque);
269 memset(bloque, -1, idx->tam_bloque);
270 memcpy(bloque, &header, sizeof(B_NodoHeader));
272 b_grabar_nodo(idx, *id, bloque);
277 static char *b_leer_nodo(INDICE *idx, int id)
284 if (id < 0) return NULL;
286 fp = fopen(idx->filename, "r");
287 if (fp == NULL) return NULL;
289 fseek(fp, id*idx->tam_bloque, SEEK_SET);
291 out = (char *)malloc(idx->tam_bloque);
297 if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
299 /* No se puso leer el nodo */
304 /* Si estoy manejando string tengo que sacar las abreviaturas */
305 if (idx->tipo_dato == IDX_STRING) {
306 b_leer_header(out, &header);
307 claves = b_leer_claves(out, &header);
308 desabreviar_claves(idx, claves, &header);
314 static void b_grabar_nodo(INDICE *idx, int id, char *data)
320 /* Si las claves son de tipo string debo abreviar antes de guardar */
321 if (idx->tipo_dato == IDX_STRING) {
322 b_leer_header(data, &header);
323 claves = b_leer_claves(data, &header);
324 abreviar_claves(idx, claves, &header);
326 fp = fopen(idx->filename, "r+");
327 fseek(fp, id*idx->tam_bloque, SEEK_SET);
328 fwrite(data, 1, idx->tam_bloque, fp);
332 static void b_leer_header(char *src, B_NodoHeader *header)
336 memcpy(header, src, sizeof(B_NodoHeader));
339 static void b_actualizar_header(char *src, B_NodoHeader *header)
342 memcpy(src, header, sizeof(B_NodoHeader));
345 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
347 return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
350 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
357 B_NodoHeader nodo_header, nuevo_header;
358 B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
363 nodo = b_crear_nodo(idx, &nodo_id);
365 b_leer_header(nodo, &nodo_header);
366 claves = b_leer_claves(nodo, &nodo_header);
368 padre = b_leer_nodo(idx, nodo_header.padre);
370 if (nodo_header.cant == CANT_HIJOS(idx)) {
372 /* TODO: Si es B*, hay que chequear si alguno de los 2
373 * nodos hermanos pueden prestarme espacio (y
374 * desplazar si es así). Si no pueden, hay que
375 * hacer un split de 2 nodos en 3.
376 * Si no es B*, hay que hacer lo que sigue:
378 nuevo = b_crear_nodo(idx, &nuevo_id);
380 /* Creo una lista ordenada de los nodos a partir */
381 tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
382 total = nodo_header.cant;
383 while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
384 tmp_claves[i] = claves[i];
387 tmp_claves[i].clave = clave;
388 tmp_claves[i].dato = dato;
389 tmp_claves[i].hijo_derecho = hijo1;
390 if (i<nodo_header.cant)
391 tmp_claves[i+1].hijo_derecho = hijo2;
392 while (i < nodo_header.cant) {
393 tmp_claves[i+1] = claves[i];
397 /* Asigno a cada nodo lo que corresponde */
398 b_leer_header(nuevo, &nuevo_header);
400 nuevo_header.nivel = nodo_header.nivel;
401 nodo_header.cant = total/2;
402 nuevo_header.cant = total - nodo_header.cant;
404 memset(claves, '*', idx->tam_bloque-sizeof(B_NodoHeader));
405 for(j=0; j<nodo_header.cant; j++)
406 claves[j] = tmp_claves[j];
408 claves_nuevo = b_leer_claves(nuevo, &nuevo_header);
409 memset(claves_nuevo, '*', idx->tam_bloque-sizeof(B_NodoHeader));
410 for(j=0; j<nuevo_header.cant; j++)
411 claves_nuevo[j] = tmp_claves[j+total/2+1];
413 b_actualizar_header(nodo, &nodo_header);
414 b_actualizar_header(nuevo, &nuevo_header);
417 clave = tmp_claves[total/2].clave;
418 dato = tmp_claves[total/2].dato;
420 b_grabar_nodo(idx, nodo_id, nodo);
421 b_grabar_nodo(idx, nuevo_id, nuevo);
430 nodo_id = nodo_header.padre;
432 /* Oops, parti el raiz, y este debe quedar en 0, lo paso a otro bloque
433 * y dejo el padre vacio
435 char *tmp_nuevo = b_crear_nodo(idx, &nodo_id);
436 memcpy(tmp_nuevo, nodo, idx->tam_bloque);
440 clave = tmp_claves[total/2].clave;
441 dato = tmp_claves[total/2].dato;
443 b_grabar_nodo(idx, nuevo_id+1, nodo);
444 b_grabar_nodo(idx, nuevo_id, nuevo);
453 /* Limpio al padre */
454 nuevo = b_leer_nodo(idx, 0);
456 b_leer_header(nuevo, &nuevo_header);
457 nuevo_header.cant = 0;
458 nuevo_header.padre = -1;
459 nuevo_header.nivel = nodo_header.nivel+1;
460 memset(nuevo, -1, idx->tam_bloque);
461 b_actualizar_header(nuevo, &nuevo_header);
462 b_grabar_nodo(idx, 0, nuevo);
469 /* La clave entra en este nodo!! */
470 b_insertar_en_nodo_con_lugar(idx, clave, dato, nodo_id, nodo, hijo1, hijo2);
476 void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
479 B_NodoHeader nodo_header;
481 b_leer_header(nodo, &nodo_header);
482 claves = b_leer_claves(nodo, &nodo_header);
483 if (nodo_header.cant > 0) {
485 while ((i < nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
486 for(j=nodo_header.cant; j > i; j--)
487 claves[j] = claves[j-1];
490 claves[i].clave = clave;
491 claves[i].dato = dato;
492 claves[i].hijo_derecho = hijo2;
493 nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
495 b_actualizar_header(nodo, &nodo_header);
496 b_grabar_nodo(idx, nodo_id, nodo);
498 /* Debo actualizar los punteros al padre de los hijos */
500 char* nuevo = b_leer_nodo(idx, hijo1);
502 B_NodoHeader nuevo_header;
503 b_leer_header(nuevo, &nuevo_header);
504 nuevo_header.padre = nodo_id;
505 b_actualizar_header(nuevo, &nuevo_header);
506 b_grabar_nodo(idx, hijo1, nuevo);
508 } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
511 char* nuevo = b_leer_nodo(idx, hijo2);
513 B_NodoHeader nuevo_header;
514 b_leer_header(nuevo, &nuevo_header);
515 nuevo_header.padre = nodo_id;
516 b_actualizar_header(nuevo, &nuevo_header);
517 b_grabar_nodo(idx, hijo2, nuevo);
519 } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
523 static int b_elegir_izquierdo(INDICE *idx, int a, int b)
527 B_NodoHeader header1, header2;
528 B_NodoEntry *claves1, *claves2;
533 nodo1 = b_leer_nodo(idx, a);
534 nodo2 = b_leer_nodo(idx, b);
536 b_leer_header(nodo1, &header1);
537 b_leer_header(nodo2, &header2);
539 claves1 = b_leer_claves(nodo1, &header1);
540 claves2 = b_leer_claves(nodo2, &header2);
542 if (emufs_indice_es_menor(idx, claves1[0].clave, claves2[0].clave))
552 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
558 INDICE_DATO dato, *ret;
560 /* Si el indice es primario no tiene sentido hacer nada */
561 if (idx->funcion == IND_PRIMARIO) {
563 PERR("INDICE PRIMARIO NO SOPORTA BUSQUEDA MULTIPLE");
567 /* Busco la clave en el arbol */
568 dato = emufs_indice_b_buscar(idx, clave);
571 PERR("CLAvE NO ENCONTRADA EN EL ARBOL!");
574 /* Leo el contenido actual */
577 leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
579 /* Incremento en 1 la cantidad */
581 (*cant) = *((int *)leido);
585 ret = malloc(sizeof(INDICE_DATO)*(*cant));
586 memcpy(ret, leido+sizeof(int), (*cant)*sizeof(INDICE_DATO));
588 fprintf(stderr, "TENGO QUE ESTA CLAVE TIENE %d ITEMS\n", *cant);
592 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
594 int pos, actual_id, padre_id, i, pos_padre, izquierda_id, derecha_id;
595 B_NodoHeader header, header_actual, header_padre, header_izq, header_der;
596 B_NodoEntry *claves, *claves_actual, *claves_padre;/*, *claves_izq, *claves_der;*/
597 char *actual, *padre, *izq, *der;
599 b_leer_header(nodo, &header);
600 claves = b_leer_claves(nodo, &header);
603 /* Busco la posicion dentro de la lista de claves */
604 while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
606 /* Es el nodo una hoja? */
607 if (header.hijo_izquierdo != -1) {
608 /* No!, es un nodo intermedio!! */
610 actual = b_leer_nodo(idx, header.hijo_izquierdo);
612 actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho);
614 b_leer_header(actual, &header_actual);
615 while (header_actual.hijo_izquierdo != -1) {
616 actual_id = header_actual.hijo_izquierdo;
618 actual = b_leer_nodo(idx, actual_id);
619 b_leer_header(actual, &header_actual);
621 claves_actual = b_leer_claves(actual, &header);
623 claves[pos] = claves_actual[0];
625 b_grabar_nodo(idx, nodo_id, nodo);
631 for(i=pos; i < header_actual.cant; i++) {
632 claves_actual[i] = claves_actual[i+1];
634 header_actual.cant--;
635 /* Guardo los cambios */
636 b_actualizar_header(actual, &header_actual);
637 b_grabar_nodo(idx, actual_id, actual);
639 /* Se cumple la condicion de hijos? */
640 if (header_actual.cant >= MIN_HIJOS(idx)) {
641 PERR("Borrar completo sin fundir");
645 /* Tengo que pasar datos o fundir nodos :-( */
647 padre_id = header.padre;
648 padre = b_leer_nodo(idx, padre_id);
649 b_leer_header(padre, &header_padre);
650 claves_padre = b_leer_claves(padre, &header_padre);
651 /* TODO Tengo el hijo_izquierdo para revisar!! XXX */
652 if (header_padre.hijo_izquierdo == actual_id) {
653 izquierda_id = -1; /* No tengo hermano izquierdo */
654 /* Mi hermano derecho es el primer nodo del padre */
655 derecha_id = claves_padre[0].hijo_derecho;
656 der = b_leer_nodo(idx, derecha_id);
657 b_leer_header(der, &header_der);
659 for(pos_padre=0; claves_padre[pos_padre].hijo_derecho != actual_id; pos_padre++) { }
661 /* Busco mis hermanos a derecha e izquierda, si es que existen */
662 if (pos_padre >= 0) {
664 izquierda_id = header_padre.hijo_izquierdo;
666 izquierda_id = claves_padre[pos_padre-1].hijo_derecho;
667 izq = b_leer_nodo(idx, izquierda_id);
668 b_leer_header(izq, &header_izq);
672 if (pos_padre < header_padre.cant) {
673 derecha_id = claves_padre[pos_padre+1].hijo_derecho;
674 der = b_leer_nodo(idx, derecha_id);
675 b_leer_header(der, &header_der);
680 /* Intendo pasar una clave desde un hermano hacia mi */
681 if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
682 b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
683 } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
684 b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
686 /* No pude pasar clave, tengo que fundir :-( */
687 if (derecha_id != -1) {
688 b_fundir_nodo(actual, actual_id, padre, padre_id, der, derecha_id, pos_padre);
690 b_fundir_nodo(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
694 /* TODO que guardo ?, todo ? */
695 b_grabar_nodo(idx, actual_id, actual);
696 b_grabar_nodo(idx, izquierda_id, izq);
697 b_grabar_nodo(idx, derecha_id, der);
698 b_grabar_nodo(idx, padre_id, padre);
699 if (actual_id != -1) free(actual);
700 /*if (padre_id != -1) free(padre);*/
701 if (derecha_id != -1) free(der);
702 if (izquierda_id != -1) free(izq);
704 actual_id = padre_id;
705 } while ((actual_id != -1) && (header_actual.cant < MIN_HIJOS(idx)));
708 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
711 B_NodoHeader h_der, h_padre, h_nodo;
712 B_NodoEntry *c_der, *c_padre, *c_nodo;
714 b_leer_header(nodo, &h_nodo);
715 c_nodo = b_leer_claves(nodo, &h_nodo);
716 b_leer_header(der, &h_der);
717 c_der = b_leer_claves(der, &h_der);
718 b_leer_header(padre, &h_padre);
719 c_padre = b_leer_claves(padre, &h_padre);
721 c_nodo[h_nodo.cant] = c_padre[pos_clave];
722 c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
724 c_padre[pos_clave] = c_der[0];
725 c_padre[pos_clave].hijo_derecho = der_id;
727 /* Muevo las claves de derecho */
728 for(i=0; i<h_der.cant; i++) {
729 c_der[i] = c_der[i+1];
734 b_actualizar_header(der, &h_der);
735 b_actualizar_header(nodo, &h_nodo);
738 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
740 B_NodoHeader der_h, padre_h;
741 B_NodoEntry *der_entries, *padre_entries;
742 /* Leo claves y cabecera del nodo de la derecha y del padre */
743 b_leer_header(der, &der_h);
744 der_entries = b_leer_claves(der, &der_h);
745 b_leer_header(padre, &padre_h);
746 padre_entries = b_leer_claves(padre, &padre_h);
747 /* Inserto en el hijo derecho la clave del padre */
748 b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
749 der_id, der, entry.hijo_derecho, der_h.hijo_izquierdo);
750 /* Reemplazo clave del padre por clave nueva */
751 entry.hijo_derecho = der_id;
752 padre_entries[padre_pos] = entry;
755 void b_pedir_clave_izquierda(char *izq, int izq_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
758 B_NodoHeader h_izq, h_padre, h_nodo;
759 B_NodoEntry *c_izq, *c_padre, *c_nodo;
761 b_leer_header(nodo, &h_nodo);
762 c_nodo = b_leer_claves(nodo, &h_nodo);
763 b_leer_header(izq, &h_izq);
764 c_izq = b_leer_claves(izq, &h_izq);
765 b_leer_header(padre, &h_padre);
766 c_padre = b_leer_claves(padre, &h_padre);
768 for(i=h_nodo.cant; i>0;i++)
769 c_nodo[i] = c_nodo[i-1];
772 c_nodo[0] = c_padre[pos_clave];
773 c_nodo[0].hijo_derecho = -1; /* XXX */
774 c_padre[pos_clave] = c_izq[h_izq.cant-1];
775 c_padre[pos_clave].hijo_derecho = izq_id;
778 b_actualizar_header(izq, &h_izq);
779 b_actualizar_header(padre, &h_padre);
780 b_actualizar_header(nodo, &h_nodo);
783 void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
786 B_NodoHeader h_izq, h_padre, h_nodo;
787 B_NodoEntry *c_izq, *c_padre, *c_nodo;
789 b_leer_header(nodo, &h_nodo);
790 c_nodo = b_leer_claves(nodo, &h_nodo);
791 b_leer_header(izq, &h_izq);
792 c_izq = b_leer_claves(izq, &h_izq);
793 b_leer_header(padre, &h_padre);
794 c_padre = b_leer_claves(padre, &h_padre);
796 for(i=h_nodo.cant; i>0;i++)
797 c_nodo[i] = c_nodo[i-1];
800 c_nodo[0] = c_padre[pos_clave];
801 c_nodo[0].hijo_derecho = -1; / * XXX * /
802 c_padre[pos_clave] = c_izq[h_izq.cant-1];
803 c_padre[pos_clave].hijo_derecho = izq_id;
806 b_actualizar_header(izq, &h_izq);
807 b_actualizar_header(padre, &h_padre);
808 b_actualizar_header(nodo, &h_nodo);
812 static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_clave)
816 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)
825 /* Leo el contenido actual */
828 leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
830 /* Incremento en 1 la cantidad */
832 cant = *((int *)leido);
837 /* Obtengo un nuevo lugar para el dato nuevo */
838 /* Aca todo bien, si leido es NULL se compota como malloc */
839 leido = realloc(leido, cant*sizeof(INDICE_DATO)+sizeof(int));
840 array = (INDICE_DATO *)(leido+sizeof(int));
842 /* Pongo el dato nuevo */
843 array[cant-1] = nuevo;
845 /* Actualizo la cantidad */
846 (*((int *)leido)) = cant;
849 if (k.i_clave == -1) {
852 k.i_clave = idx->emu_mult->grabar_registro(idx->emu_mult,
854 cant*sizeof(INDICE_DATO)+sizeof(int),
857 if (k.i_clave == -1) PERR("ALGO NO GRABO BIEN!!");
859 /* Modifico el que ya existia! */
861 idx->emu_mult->modificar_registro(idx->emu_mult,
864 cant*sizeof(INDICE_DATO)+sizeof(int),
873 char *abreviar(char *primera, char *actual, int *iguales)
876 while (((*primera) != '\0') && ((*actual) != '\0')) {
877 if ((*primera) == (*actual)) {
882 /* No coinciden mas! */
890 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
892 char *primera, *actual, *resto, salvar[100];
897 /* Agarro la primer clave entera como referencia */
898 primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
899 for(i=1; i<header->cant; i++) {
900 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
901 if (*actual == '*') {
905 resto = abreviar(primera, actual, &iguales);
906 /* Para que tenga sentido abreviar tengo que tener
907 * mas de 2 letras iguales, si no no gano nada y complica las cosas
910 sprintf(salvar, "%d|%s", iguales, resto);
913 idx->emu_string->modificar_registro(idx->emu_string, array[i].clave.i_clave, salvar, strlen(salvar)+1, &error);
923 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
925 char *primera, *actual, *resto, salvar[100];
930 /* Agarro la primer clave entera como referencia */
931 primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
932 for(i=1; i<header->cant; i++) {
933 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
934 if (*actual == '*') {
938 iguales = strtol(actual, &resto, 10);
939 if ((iguales > 0) && (*resto == '|')) {
940 fprintf(stderr, "%s %s %d\n", primera, actual, iguales);
941 strncpy(salvar, primera, iguales);
942 salvar[iguales] = '\0';
943 strcat(salvar, resto+1); /* +1 para saltar el separador */
944 idx->emu_string->modificar_registro(idx->emu_string, array[i].clave.i_clave, salvar, strlen(salvar)+1, &error);