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");
75 PERR("Error al crear el archivo");
79 /* Creo el archivo con el Nodo raiz */
80 bloque = (char *)malloc(idx->tam_bloque);
81 memset(bloque, -1, idx->tam_bloque);
83 memcpy(bloque, &header, sizeof(B_NodoHeader));
85 fwrite(bloque, idx->tam_bloque, 1, fp);
89 int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
91 int i, nodo_id, padre_id;
98 nodo = b_leer_nodo(idx, 0);
99 padre_id = nodo_id = 0;
102 if (padre) free(padre);
105 b_leer_header(nodo, &header);
106 claves = b_leer_claves(nodo, &header);
108 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
109 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
110 if (idx->funcion == IND_PRIMARIO) {
111 PERR("Indice primario no puede contener claves duplicadas!");
116 /* TODO : Implementar carga de valor en clave duplicada! */
117 b_insertar_dup_en_pos(idx, claves[i].dato, dato);
119 if (idx->tipo_dato == IDX_STRING) {
120 /* Tengo que sacar el texto repetido del archivo de textos */
121 idx->emu_string->borrar_registro(idx->emu_string, clave);
126 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
127 nodo_id = header.hijo_izquierdo;
129 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
130 nodo_id = claves[i-1].hijo_derecho;
135 if (nodo) free(nodo);
139 if (idx->funcion != IND_PRIMARIO) {
140 /* Agrego el DATO real al archivo de claves repetiras
141 * y me guardo el ID para poner en el indice
144 dato.id = b_insertar_dup_en_pos(idx, dummy, dato);
147 b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
148 return 1; /* Agregar OK! */
151 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
161 nodo = b_leer_nodo(idx, 0);
164 b_leer_header(nodo, &header);
165 claves = b_leer_claves(nodo, &header);
167 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
168 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
169 ret = claves[i].dato;
170 b_grabar_nodo(idx, nodo_id, nodo);
175 b_grabar_nodo(idx, nodo_id, nodo);
177 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
178 nodo_id = header.hijo_izquierdo;
180 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
181 nodo_id = claves[i-1].hijo_derecho;
187 /* Nodo no encontrado */
188 ret.id = ret.bloque = -1;
192 int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
194 /* Busco el nodo que contiene la clave,si es que esta existe */
201 nodo_id = 0; /* Tomo la raiz */
202 nodo = b_leer_nodo(idx, nodo_id);
203 while (nodo && !encontrado) {
204 /* Obtengo los datos del nodo */
205 b_leer_header(nodo, &header);
206 claves = b_leer_claves(nodo, &header);
209 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
211 if ((emufs_indice_es_igual(idx, claves[i].clave, k)) && (i<header.cant))
216 nodo_id = header.hijo_izquierdo;
217 nodo = b_leer_nodo(idx, nodo_id);
219 nodo_id = claves[i-1].hijo_derecho;
221 nodo = b_leer_nodo(idx, nodo_id);
227 PERR("Clave encontrada, borrando ...");
228 b_borrar_clave(idx, nodo, nodo_id, k);
230 PERR("Clave no encontrada");
235 static int b_ultimo_id(INDICE *idx)
239 fp = fopen(idx->filename, "r");
240 fseek(fp, 0, SEEK_END);
241 i = ftell(fp)/idx->tam_bloque;
247 static char *b_crear_nodo(INDICE *idx, int *id)
252 (*id) = b_ultimo_id(idx);
256 header.hijo_izquierdo = -1;
259 bloque = (char *)malloc(idx->tam_bloque);
260 memset(bloque, -1, idx->tam_bloque);
261 memcpy(bloque, &header, sizeof(B_NodoHeader));
263 b_grabar_nodo(idx, *id, bloque);
268 static char *b_leer_nodo(INDICE *idx, int id)
275 if (id < 0) return NULL;
277 fp = fopen(idx->filename, "r");
278 if (fp == NULL) return NULL;
280 fseek(fp, id*idx->tam_bloque, SEEK_SET);
282 out = (char *)malloc(idx->tam_bloque);
288 if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
290 /* No se puso leer el nodo */
295 /* Si estoy manejando string tengo que sacar las abreviaturas */
296 if (idx->tipo_dato == IDX_STRING) {
297 b_leer_header(out, &header);
298 claves = b_leer_claves(out, &header);
299 desabreviar_claves(idx, claves, &header);
305 static void b_grabar_nodo(INDICE *idx, int id, char *data)
311 /* Si las claves son de tipo string debo abreviar antes de guardar */
312 if (idx->tipo_dato == IDX_STRING) {
313 b_leer_header(data, &header);
314 claves = b_leer_claves(data, &header);
315 abreviar_claves(idx, claves, &header);
317 fp = fopen(idx->filename, "r+");
318 fseek(fp, id*idx->tam_bloque, SEEK_SET);
319 fwrite(data, 1, idx->tam_bloque, fp);
323 static void b_leer_header(char *src, B_NodoHeader *header)
327 memcpy(header, src, sizeof(B_NodoHeader));
330 static void b_actualizar_header(char *src, B_NodoHeader *header)
333 memcpy(src, header, sizeof(B_NodoHeader));
336 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
338 return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
341 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
348 B_NodoHeader nodo_header, nuevo_header;
349 B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
354 nodo = b_crear_nodo(idx, &nodo_id);
356 b_leer_header(nodo, &nodo_header);
357 claves = b_leer_claves(nodo, &nodo_header);
359 padre = b_leer_nodo(idx, nodo_header.padre);
361 if (nodo_header.cant == CANT_HIJOS(idx)) {
363 /* TODO: Si es B*, hay que chequear si alguno de los 2
364 * nodos hermanos pueden prestarme espacio (y
365 * desplazar si es así). Si no pueden, hay que
366 * hacer un split de 2 nodos en 3.
367 * Si no es B*, hay que hacer lo que sigue:
369 nuevo = b_crear_nodo(idx, &nuevo_id);
371 /* Creo una lista ordenada de los nodos a partir */
372 tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
373 total = nodo_header.cant+1;
374 while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
375 tmp_claves[i] = claves[i];
378 tmp_claves[i].clave = clave;
379 tmp_claves[i].dato = dato;
380 /*tmp_claves[i].hijo_derecho = hijo1;*/
382 nodo_header.hijo_izquierdo = hijo1;
383 tmp_claves[i].hijo_derecho = hijo2;
385 tmp_claves[i-1].hijo_derecho = hijo1;
386 tmp_claves[i].hijo_derecho = hijo2;
389 nodo_header.hijo_izquierdo = hijo2;
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-1;
402 nuevo_header.cant = (total-1) - 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];
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;
493 nodo_header.hijo_izquierdo = hijo1;
494 claves[i].hijo_derecho = hijo2;
496 claves[i-1].hijo_derecho = hijo1;
497 claves[i].hijo_derecho = hijo2;
499 /*b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);*/
501 b_actualizar_header(nodo, &nodo_header);
502 b_grabar_nodo(idx, nodo_id, nodo);
504 /* Debo actualizar los punteros al padre de los hijos */
506 char* nuevo = b_leer_nodo(idx, hijo1);
508 B_NodoHeader nuevo_header;
509 b_leer_header(nuevo, &nuevo_header);
510 nuevo_header.padre = nodo_id;
511 b_actualizar_header(nuevo, &nuevo_header);
512 b_grabar_nodo(idx, hijo1, nuevo);
514 } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
517 char* nuevo = b_leer_nodo(idx, hijo2);
519 B_NodoHeader nuevo_header;
520 b_leer_header(nuevo, &nuevo_header);
521 nuevo_header.padre = nodo_id;
522 b_actualizar_header(nuevo, &nuevo_header);
523 b_grabar_nodo(idx, hijo2, nuevo);
525 } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
529 static int b_elegir_izquierdo(INDICE *idx, int a, int b)
533 B_NodoHeader header1, header2;
534 B_NodoEntry *claves1, *claves2;
539 nodo1 = b_leer_nodo(idx, a);
540 nodo2 = b_leer_nodo(idx, b);
542 b_leer_header(nodo1, &header1);
543 b_leer_header(nodo2, &header2);
545 claves1 = b_leer_claves(nodo1, &header1);
546 claves2 = b_leer_claves(nodo2, &header2);
548 if (emufs_indice_es_menor(idx, claves1[0].clave, claves2[0].clave))
558 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
564 INDICE_DATO dato, *ret;
566 /* Si el indice es primario no tiene sentido hacer nada */
567 if (idx->funcion == IND_PRIMARIO) {
569 PERR("INDICE PRIMARIO NO SOPORTA BUSQUEDA MULTIPLE");
573 /* Busco la clave en el arbol */
574 dato = emufs_indice_b_buscar(idx, clave);
577 PERR("CLAvE NO ENCONTRADA EN EL ARBOL!");
580 /* Leo el contenido actual */
583 leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
585 /* Incremento en 1 la cantidad */
587 (*cant) = *((int *)leido);
591 ret = malloc(sizeof(INDICE_DATO)*(*cant));
592 memcpy(ret, leido+sizeof(int), (*cant)*sizeof(INDICE_DATO));
597 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
599 int pos, actual_id, padre_id, i, pos_padre, izquierda_id, derecha_id;
600 B_NodoHeader header, header_actual, header_padre, header_izq, header_der;
601 B_NodoEntry *claves, *claves_actual, *claves_padre;/*, *claves_izq, *claves_der;*/
602 char *actual, *padre, *izq, *der;
604 b_leer_header(nodo, &header);
605 claves = b_leer_claves(nodo, &header);
608 /* Busco la posicion dentro de la lista de claves */
609 while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
611 /* Es el nodo una hoja? */
612 if (header.hijo_izquierdo != -1) {
613 /* No!, es un nodo intermedio!! */
615 actual = b_leer_nodo(idx, header.hijo_izquierdo);
617 actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho);
619 b_leer_header(actual, &header_actual);
620 while (header_actual.hijo_izquierdo != -1) {
621 actual_id = header_actual.hijo_izquierdo;
623 actual = b_leer_nodo(idx, actual_id);
624 b_leer_header(actual, &header_actual);
626 claves_actual = b_leer_claves(actual, &header);
628 claves[pos] = claves_actual[0];
630 b_grabar_nodo(idx, nodo_id, nodo);
636 for(i=pos; i < header_actual.cant; i++) {
637 claves_actual[i] = claves_actual[i+1];
639 header_actual.cant--;
640 /* Guardo los cambios */
641 b_actualizar_header(actual, &header_actual);
642 b_grabar_nodo(idx, actual_id, actual);
644 /* Se cumple la condicion de hijos? */
645 if (header_actual.cant >= MIN_HIJOS(idx)) {
646 PERR("Borrar completo sin fundir");
650 /* Tengo que pasar datos o fundir nodos :-( */
652 padre_id = header.padre;
653 padre = b_leer_nodo(idx, padre_id);
654 b_leer_header(padre, &header_padre);
655 claves_padre = b_leer_claves(padre, &header_padre);
656 /* TODO Tengo el hijo_izquierdo para revisar!! XXX */
657 if (header_padre.hijo_izquierdo == actual_id) {
658 izquierda_id = -1; /* No tengo hermano izquierdo */
659 /* Mi hermano derecho es el primer nodo del padre */
660 derecha_id = claves_padre[0].hijo_derecho;
661 der = b_leer_nodo(idx, derecha_id);
662 b_leer_header(der, &header_der);
664 for(pos_padre=0; claves_padre[pos_padre].hijo_derecho != actual_id; pos_padre++) { }
666 /* Busco mis hermanos a derecha e izquierda, si es que existen */
667 if (pos_padre >= 0) {
669 izquierda_id = header_padre.hijo_izquierdo;
671 izquierda_id = claves_padre[pos_padre-1].hijo_derecho;
672 izq = b_leer_nodo(idx, izquierda_id);
673 b_leer_header(izq, &header_izq);
677 if (pos_padre < header_padre.cant) {
678 derecha_id = claves_padre[pos_padre+1].hijo_derecho;
679 der = b_leer_nodo(idx, derecha_id);
680 b_leer_header(der, &header_der);
685 /* Intendo pasar una clave desde un hermano hacia mi */
686 if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
687 b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
688 } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
689 b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
691 /* No pude pasar clave, tengo que fundir :-( */
692 if (derecha_id != -1) {
693 b_fundir_nodo(actual, actual_id, padre, padre_id, der, derecha_id, pos_padre);
695 b_fundir_nodo(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
699 /* TODO que guardo ?, todo ? */
700 b_grabar_nodo(idx, actual_id, actual);
701 b_grabar_nodo(idx, izquierda_id, izq);
702 b_grabar_nodo(idx, derecha_id, der);
703 b_grabar_nodo(idx, padre_id, padre);
704 if (actual_id != -1) free(actual);
705 /*if (padre_id != -1) free(padre);*/
706 if (derecha_id != -1) free(der);
707 if (izquierda_id != -1) free(izq);
709 actual_id = padre_id;
710 } while ((actual_id != -1) && (header_actual.cant < MIN_HIJOS(idx)));
713 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
716 B_NodoHeader h_der, h_padre, h_nodo;
717 B_NodoEntry *c_der, *c_padre, *c_nodo;
719 b_leer_header(nodo, &h_nodo);
720 c_nodo = b_leer_claves(nodo, &h_nodo);
721 b_leer_header(der, &h_der);
722 c_der = b_leer_claves(der, &h_der);
723 b_leer_header(padre, &h_padre);
724 c_padre = b_leer_claves(padre, &h_padre);
726 c_nodo[h_nodo.cant] = c_padre[pos_clave];
727 c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
729 c_padre[pos_clave] = c_der[0];
730 c_padre[pos_clave].hijo_derecho = der_id;
732 /* Muevo las claves de derecho */
733 for(i=0; i<h_der.cant; i++) {
734 c_der[i] = c_der[i+1];
739 b_actualizar_header(der, &h_der);
740 b_actualizar_header(nodo, &h_nodo);
743 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
745 B_NodoHeader der_h, padre_h;
746 B_NodoEntry *der_entries, *padre_entries;
747 /* Leo claves y cabecera del nodo de la derecha y del padre */
748 b_leer_header(der, &der_h);
749 der_entries = b_leer_claves(der, &der_h);
750 b_leer_header(padre, &padre_h);
751 padre_entries = b_leer_claves(padre, &padre_h);
752 /* Inserto en el hijo derecho la clave del padre */
753 b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
754 der_id, der, entry.hijo_derecho, der_h.hijo_izquierdo);
755 /* Reemplazo clave del padre por clave nueva */
756 entry.hijo_derecho = der_id;
757 padre_entries[padre_pos] = entry;
760 void b_pedir_clave_izquierda(char *izq, int izq_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
763 B_NodoHeader h_izq, h_padre, h_nodo;
764 B_NodoEntry *c_izq, *c_padre, *c_nodo;
766 b_leer_header(nodo, &h_nodo);
767 c_nodo = b_leer_claves(nodo, &h_nodo);
768 b_leer_header(izq, &h_izq);
769 c_izq = b_leer_claves(izq, &h_izq);
770 b_leer_header(padre, &h_padre);
771 c_padre = b_leer_claves(padre, &h_padre);
773 for(i=h_nodo.cant; i>0;i++)
774 c_nodo[i] = c_nodo[i-1];
777 c_nodo[0] = c_padre[pos_clave];
778 c_nodo[0].hijo_derecho = -1; /* XXX */
779 c_padre[pos_clave] = c_izq[h_izq.cant-1];
780 c_padre[pos_clave].hijo_derecho = izq_id;
783 b_actualizar_header(izq, &h_izq);
784 b_actualizar_header(padre, &h_padre);
785 b_actualizar_header(nodo, &h_nodo);
788 void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
791 B_NodoHeader h_izq, h_padre, h_nodo;
792 B_NodoEntry *c_izq, *c_padre, *c_nodo;
794 b_leer_header(nodo, &h_nodo);
795 c_nodo = b_leer_claves(nodo, &h_nodo);
796 b_leer_header(izq, &h_izq);
797 c_izq = b_leer_claves(izq, &h_izq);
798 b_leer_header(padre, &h_padre);
799 c_padre = b_leer_claves(padre, &h_padre);
801 for(i=h_nodo.cant; i>0;i++)
802 c_nodo[i] = c_nodo[i-1];
805 c_nodo[0] = c_padre[pos_clave];
806 c_nodo[0].hijo_derecho = -1; / * XXX * /
807 c_padre[pos_clave] = c_izq[h_izq.cant-1];
808 c_padre[pos_clave].hijo_derecho = izq_id;
811 b_actualizar_header(izq, &h_izq);
812 b_actualizar_header(padre, &h_padre);
813 b_actualizar_header(nodo, &h_nodo);
817 static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_clave)
821 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)
830 /* Leo el contenido actual */
833 leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
835 /* Incremento en 1 la cantidad */
837 cant = *((int *)leido);
842 /* Obtengo un nuevo lugar para el dato nuevo */
843 /* Aca todo bien, si leido es NULL se compota como malloc */
844 leido = realloc(leido, cant*sizeof(INDICE_DATO)+sizeof(int));
845 array = (INDICE_DATO *)(leido+sizeof(int));
847 /* Pongo el dato nuevo */
848 array[cant-1] = nuevo;
850 /* Actualizo la cantidad */
851 (*((int *)leido)) = cant;
854 if (k.i_clave == -1) {
857 k.i_clave = idx->emu_mult->grabar_registro(idx->emu_mult,
859 cant*sizeof(INDICE_DATO)+sizeof(int),
862 if (k.i_clave == -1) PERR("ALGO NO GRABO BIEN!!");
864 /* Modifico el que ya existia! */
866 idx->emu_mult->modificar_registro(idx->emu_mult,
869 cant*sizeof(INDICE_DATO)+sizeof(int),
878 char *abreviar(char *primera, char *actual, int *iguales)
881 while (((*primera) != '\0') && ((*actual) != '\0')) {
882 if ((*primera) == (*actual)) {
887 /* No coinciden mas! */
895 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
897 char *primera, *actual, *resto, salvar[100];
902 /* Agarro la primer clave entera como referencia */
903 primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
904 for(i=1; i<header->cant; i++) {
905 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
906 if (*actual == '*') {
910 resto = abreviar(primera, actual, &iguales);
911 /* Para que tenga sentido abreviar tengo que tener
912 * mas de 2 letras iguales, si no no gano nada y complica las cosas
915 sprintf(salvar, "%d|%s", iguales, resto);
918 idx->emu_string->modificar_registro(idx->emu_string, array[i].clave.i_clave, salvar, strlen(salvar)+1, &error);
928 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
930 char *primera, *actual, *resto, salvar[100];
935 /* Agarro la primer clave entera como referencia */
936 primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
937 for(i=1; i<header->cant; i++) {
938 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
939 if (*actual == '*') {
943 iguales = strtol(actual, &resto, 10);
944 if ((iguales > 0) && (*resto == '|')) {
945 strncpy(salvar, primera, iguales);
946 salvar[iguales] = '\0';
947 strcat(salvar, resto+1); /* +1 para saltar el separador */
948 idx->emu_string->modificar_registro(idx->emu_string, array[i].clave.i_clave, salvar, strlen(salvar)+1, &error);