]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/indice_b.c
* ADDED : TreeView para ver en pantalla el arbol B para debug personal
[z.facultad/75.06/emufs.git] / emufs / indice_b.c
1
2 #include "indice_b.h"
3 #include "common.h"
4 #include "emufs.h"
5 #include "form.h"
6
7 /* Cantidad de claves por nodo */
8 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
9 #define CANT_NODOS(x) (CANT_HIJOS(x)+1)
10 #define MIN_HIJOS(x) (CANT_HIJOS(x)/2)
11
12 /* Auxiliares */
13 /** Graba el nodo en el archivo */
14 static void b_grabar_nodo(INDICE *idx, int id, char *data);
15 /** Da el ID del proximo nodo a poder ser utilizado */
16 static int b_ultimo_id(INDICE *idx);
17 /** Crea un nodo en el archivo y lo retorna. En i se pone el ID asignado */
18 static char *b_crear_nodo(INDICE *idx, int *i);
19 /** Actualiza el header de un nodo desde header */
20 static void b_actualizar_header(char *src, B_NodoHeader *header);
21 /** Inserta una clave en el nodo de manera iterativa.
22  * \param idx Índice en donde insertar la clave.
23  * \param clave Clave a insertar.
24  * \param dato Dato a insertar
25  * \param nodo_id Id del nodo en el cual insertar la nueva clave.
26  * \param nodo FIXME Nodo en donde insertar??? No entiendo por que char*.
27  * \param hijo1 Id del nodo hijo de la izquierda del insertado.
28  * \param hijo2 Id del nodo hijo de la derecha del insertado.
29  */
30 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_izq, int hijo_der);
31 /** Inserta en un nodo en el que se sabe positivamente que hay lugar. */
32 static void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_izq, int hijo_der);
33 /** Borra una clave del arbol */
34 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k);
35 /** Le pide al hermano derecho del nodo una clave cuando se eliminan claves */
36 static void b_pedir_clave_derecha(char *, int, char *, int, char *, int, int);
37 /** Le pide al hermano izquierdo una clave cuando se eliminan claves */
38 static void b_pedir_clave_izquierda(char *, int, char *, int, char *, int, int);
39 /** Le pasa al hermano derecho del nodo una clave cuando se insertan claves */
40 static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_NodoEntry);
41 /** Le pasa al hermano izquierdo una clave cuando se insertan claves */
42 static void b_pasar_clave_a_izquierda(INDICE*, char*, int, char*, int, int, B_NodoEntry, int, int);
43 /** Junta 2 nodos y hace uno solo */
44 static void b_fundir_nodo(char *, int, char *, int, char *, int, int);
45                         
46 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo);
47
48 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header);
49 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header);
50
51 void emufs_indice_b_crear(INDICE *idx)
52 {
53         FILE *fp;
54         char *bloque;
55         B_NodoHeader header;
56
57         header.cant = 0;
58         header.nivel = 0;
59         header.padre = -1;
60         header.hijo_izquierdo = -1;
61
62         fp = fopen(idx->filename, "w");
63         if (fp == NULL) {
64                 PERR("Error al crear el archivo");
65                 return;
66         }
67         
68         /* Creo el archivo con el Nodo raiz */
69         bloque = (char *)malloc(idx->tam_bloque);
70         memset(bloque, -1, idx->tam_bloque);
71
72         memcpy(bloque, &header, sizeof(B_NodoHeader));
73
74         fwrite(bloque, idx->tam_bloque, 1, fp);
75         fclose(fp);
76 }
77
78 int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
79 {
80         int i, nodo_id, padre_id;
81         B_NodoHeader header;
82         B_NodoEntry *claves;
83         char *nodo, *padre;
84         INDICE_DATO dummy;
85         
86         /* Leo la raiz */
87         nodo = b_leer_nodo(idx, 0);
88         padre_id = nodo_id = 0;
89         padre = NULL;
90         while (nodo) {
91                 if (padre) free(padre);
92                 padre = nodo;
93                 padre_id = nodo_id;
94                 b_leer_header(nodo, &header);
95                 claves = b_leer_claves(nodo, &header);
96                 i=0;
97                 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
98                 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
99                         if (idx->funcion == IND_PRIMARIO) {
100                                 PERR("Indice primario no puede contener claves duplicadas!");
101                                 PERR(idx->nombre);
102                                 return 0;
103                         }
104                         
105                         /* TODO : Implementar carga de valor en clave duplicada! */
106                         b_insertar_dup_en_pos(idx, claves[i].dato, dato);
107                 
108                         if (idx->tipo_dato == IDX_STRING) {
109                                 /* Tengo que sacar el texto repetido del archivo de textos */
110                                 idx->emu_string->borrar_registro(idx->emu_string, clave);
111                         }
112                         return 1;
113                 } else {
114                         if (i == 0) {
115                                 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
116                                 nodo_id = header.hijo_izquierdo;
117                         } else {
118                                 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
119                                 nodo_id = claves[i-1].hijo_derecho;
120                         }
121                 }
122         }
123
124         if (nodo) free(nodo);
125         nodo = padre;
126         nodo_id = padre_id;
127
128         if (idx->funcion != IND_PRIMARIO) {
129                 /* Agrego el DATO real al archivo de claves repetiras
130                  * y me guardo el ID para poner en el indice
131                  */
132                 dummy.id = -1;
133                 dato.id = b_insertar_dup_en_pos(idx, dummy, dato);
134         }
135
136         b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
137         return 1; /* Agregar OK! */
138 }
139
140 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
141 {
142         int i;
143         INDICE_DATO ret;
144         B_NodoHeader header;
145         B_NodoEntry *claves;
146         char *nodo, *tmp;
147         int nodo_id;
148         
149         /* Leo la raiz */
150         nodo = b_leer_nodo(idx, 0);
151         nodo_id = 0;
152         while (nodo) {
153                 b_leer_header(nodo, &header);
154                 claves = b_leer_claves(nodo, &header);
155                 i=0;
156                 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
157                 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
158                                 ret = claves[i].dato;
159                                 b_grabar_nodo(idx, nodo_id, nodo);
160                                 free(nodo);
161                                 return ret;
162                 } else {
163                         tmp = nodo;
164                         b_grabar_nodo(idx, nodo_id, nodo);
165                         if (i == 0) {
166                                 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
167                                 nodo_id = header.hijo_izquierdo;
168                         } else {
169                                 nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
170                                 nodo_id = claves[i-1].hijo_derecho;
171                         }
172                         free(tmp);
173                 }
174         }
175
176         /* Nodo no encontrado */
177         ret.id = ret.bloque = -1;
178         return ret;
179 }
180
181 int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
182 {
183         /* Busco el nodo que contiene la clave,si es que esta existe */
184         char *nodo;
185         int nodo_id, i;
186         char encontrado=0;
187         B_NodoHeader header;
188         B_NodoEntry *claves;
189
190         nodo_id = 0; /* Tomo la raiz */
191         nodo = b_leer_nodo(idx, nodo_id);
192         while (nodo && !encontrado) {
193                 /* Obtengo los datos del nodo */
194                 b_leer_header(nodo, &header);
195                 claves = b_leer_claves(nodo, &header);
196
197                 i=0;
198                 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
199
200                 if ((emufs_indice_es_igual(idx, claves[i].clave, k)) && (i<header.cant))
201                         encontrado = 1;
202                 else {
203                         if (i==0) {
204                                 free(nodo);
205                                 nodo_id = header.hijo_izquierdo;
206                                 nodo = b_leer_nodo(idx, nodo_id);
207                         } else {
208                                 nodo_id = claves[i-1].hijo_derecho;
209                                 free(nodo);
210                                 nodo = b_leer_nodo(idx, nodo_id);
211                         }
212                 }
213         }
214
215         if (encontrado) {
216                 PERR("Clave encontrada, borrando ...");
217                 fprintf(stderr, "La clave a borrar esta en el nodo %d\n", nodo_id);
218                 b_borrar_clave(idx, nodo, nodo_id, k);
219         } else {
220                 PERR("Clave no encontrada");
221         }
222         return 0;
223 }
224
225 static int b_ultimo_id(INDICE *idx)
226 {
227         int i;
228         FILE *fp;
229         fp = fopen(idx->filename, "r");
230         fseek(fp, 0, SEEK_END);
231         i = ftell(fp)/idx->tam_bloque;
232         fclose(fp);
233
234         return i;
235 }
236
237 static char *b_crear_nodo(INDICE *idx, int *id)
238 {
239         char *bloque;
240         B_NodoHeader header;
241
242         (*id) = b_ultimo_id(idx);
243
244         header.cant = 0;
245         header.nivel = 0;
246         header.hijo_izquierdo = -1;
247         header.padre = -1;
248
249         bloque = (char *)malloc(idx->tam_bloque);
250         memset(bloque, -1, idx->tam_bloque);
251         memcpy(bloque, &header, sizeof(B_NodoHeader));
252
253         b_grabar_nodo(idx, *id, bloque);
254
255         return bloque;
256 }
257
258 char *b_leer_nodo(INDICE *idx, int id)
259 {
260         FILE *fp;
261         char *out;
262         B_NodoHeader header;
263         B_NodoEntry *claves;
264
265         if (id < 0) return NULL;
266
267         fp = fopen(idx->filename, "r");
268         if (fp == NULL) return NULL;
269
270         fseek(fp, id*idx->tam_bloque, SEEK_SET);
271
272         out = (char *)malloc(idx->tam_bloque);
273         if (out == NULL) {
274                 fclose(fp);
275                 return NULL;
276         }
277
278         if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
279                 free(out);
280                 /* No se puso leer el nodo */
281                 fclose(fp);
282                 return NULL;
283         }
284
285         /* Si estoy manejando string tengo que sacar las abreviaturas */
286         if (idx->tipo_dato == IDX_STRING) {
287                 b_leer_header(out, &header);
288                 claves = b_leer_claves(out, &header);
289                 desabreviar_claves(idx, claves, &header);
290         }
291         fclose(fp);
292         return out;
293 }
294
295 static void b_grabar_nodo(INDICE *idx, int id, char *data)
296 {
297         FILE *fp;
298         B_NodoHeader header;
299         B_NodoEntry *claves;
300
301         /* Si las claves son de tipo string debo abreviar antes de guardar */
302         if (idx->tipo_dato == IDX_STRING) {
303                 b_leer_header(data, &header);
304                 claves = b_leer_claves(data, &header);
305                 abreviar_claves(idx, claves, &header);
306         }
307         fp = fopen(idx->filename, "r+");
308         fseek(fp, id*idx->tam_bloque, SEEK_SET);
309         fwrite(data, 1, idx->tam_bloque, fp);
310         fclose(fp);
311 }
312
313 void b_leer_header(char *src, B_NodoHeader *header)
314 {
315         if (!src) return;
316
317         memcpy(header, src, sizeof(B_NodoHeader));
318 }
319
320 static void b_actualizar_header(char *src, B_NodoHeader *header)
321 {
322         if (!src) return;
323         memcpy(src, header, sizeof(B_NodoHeader));
324 }
325
326 B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
327 {
328         return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
329 }
330
331 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
332 {
333         char *padre, *nuevo;
334         int nuevo_id;
335         int i, j;
336         static int rompi=0;
337         char salir = 0;
338         B_NodoHeader nodo_header, nuevo_header;
339         B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
340
341         do {
342                 if (!nodo) {
343                         /* CREAR NODO? */
344                         nodo = b_crear_nodo(idx, &nodo_id);
345                 }
346                 b_leer_header(nodo, &nodo_header);
347                 claves = b_leer_claves(nodo, &nodo_header);
348
349                 padre = b_leer_nodo(idx, nodo_header.padre);
350
351                 if (nodo_header.cant == CANT_HIJOS(idx)) {
352                         int total;
353                         /* TODO: Si es B*, hay que chequear si alguno de los 2
354                          *       nodos hermanos pueden prestarme espacio (y
355                          *       desplazar si es así). Si no pueden, hay que
356                          *       hacer un split de 2 nodos en 3.
357                          *       Si no es B*, hay que hacer lo que sigue:
358                          */
359                         nuevo = b_crear_nodo(idx, &nuevo_id);
360                         i=0;
361                         /* Creo una lista ordenada de los nodos a partir */
362                         tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
363                         total = nodo_header.cant+1;
364                         while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
365                                 tmp_claves[i] = claves[i];
366                                 i++;
367                         }
368                         tmp_claves[i].clave = clave;
369                         tmp_claves[i].dato = dato;
370                         /*tmp_claves[i].hijo_derecho = hijo1;*/
371                         if (i==0) {
372                                 nodo_header.hijo_izquierdo = hijo1;
373                                 tmp_claves[i].hijo_derecho = hijo2;
374                         } else {
375                                 tmp_claves[i-1].hijo_derecho = hijo1;
376                                 tmp_claves[i].hijo_derecho = hijo2;
377                         }
378                         while (i < nodo_header.cant) {
379                                 tmp_claves[i+1] = claves[i];
380                                 i++;
381                         }
382                         
383                         /* Asigno a cada nodo lo que corresponde */
384                         b_leer_header(nuevo, &nuevo_header);
385
386                         nuevo_header.nivel = nodo_header.nivel;
387                         nodo_header.cant = total/2;
388                         nuevo_header.cant = (total-1) - nodo_header.cant;
389
390                         memset(claves, '*', idx->tam_bloque-sizeof(B_NodoHeader));
391                         for(j=0; j<nodo_header.cant; j++)
392                                 claves[j] = tmp_claves[j];
393
394                         claves_nuevo = b_leer_claves(nuevo, &nuevo_header);
395                         memset(claves_nuevo, '*', idx->tam_bloque-sizeof(B_NodoHeader));
396                         for(j=0; j<nuevo_header.cant; j++)
397                                 claves_nuevo[j] = tmp_claves[j+total/2+1];
398
399                         b_actualizar_header(nodo, &nodo_header);
400                         b_actualizar_header(nuevo, &nuevo_header);
401
402                         if (nodo_id != 0) {
403                                 clave = tmp_claves[total/2].clave;
404                                 dato = tmp_claves[total/2].dato;
405
406                                 b_grabar_nodo(idx, nodo_id, nodo);
407                                 b_grabar_nodo(idx, nuevo_id, nuevo);
408                                 free(nodo);
409                                 free(nuevo);
410                                 free(tmp_claves);
411
412                                 hijo1 = nodo_id;
413                                 hijo2 = nuevo_id;
414
415                                 fprintf(stderr, "Nodos espliteados = %d %d\n", hijo1, hijo2);
416                                 nodo = padre;
417                                 nodo_id = nodo_header.padre;
418                         } else {
419                                 /* Oops, parti el raiz, y este debe quedar en 0, lo paso a otro bloque
420                                  * y dejo el padre vacio
421                                  */
422                                 char *tmp_nuevo = b_crear_nodo(idx, &nodo_id);
423                                 memcpy(tmp_nuevo, nodo, idx->tam_bloque);
424                                 free(nodo);
425                                 nodo = tmp_nuevo;
426         
427                                 clave = tmp_claves[total/2].clave;
428                                 dato = tmp_claves[total/2].dato;
429
430                                 b_grabar_nodo(idx, nuevo_id+1, nodo);
431                                 b_grabar_nodo(idx, nuevo_id, nuevo);
432                 
433                                 free(nodo);
434                                 free(nuevo);
435                                 free(tmp_claves);
436
437                                 hijo1 = nuevo_id+1;
438                                 hijo2 = nuevo_id;
439
440                                 fprintf(stderr, "Nodos espliteados = %d %d\n", hijo1, hijo2);
441                                 /* Limpio al padre */
442                                 nuevo = b_leer_nodo(idx, 0);
443
444                                 b_leer_header(nuevo, &nuevo_header);
445                                 nuevo_header.cant = 0;
446                                 nuevo_header.padre = -1;
447                                 nuevo_header.nivel = nodo_header.nivel+1;
448                                 nuevo_header.hijo_izquierdo = -1;
449                                 fprintf(stderr, "root.nivel=%d\n", nuevo_header.nivel);
450                                 memset(nuevo, -1, idx->tam_bloque);
451                                 b_actualizar_header(nuevo, &nuevo_header);
452                                 b_grabar_nodo(idx, 0, nuevo);
453
454                                 nodo_id = 0;
455                                 nodo = nuevo;
456                                 rompi = 1;
457                         }
458                 } else {
459                         /* La clave entra en este nodo!! */
460                         b_insertar_en_nodo_con_lugar(idx, clave, dato, nodo_id, nodo, hijo1, hijo2);
461                         salir = 1;
462                 }
463         } while (!salir);
464 }
465
466 void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_izq, int hijo_der)
467 {
468         int i = 0;
469         B_NodoHeader nodo_header;
470         B_NodoEntry* claves;
471         b_leer_header(nodo, &nodo_header);
472         claves = b_leer_claves(nodo, &nodo_header);
473         if (nodo_header.cant > 0) {
474                 int j;
475                 while ((i < nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
476                 for(j=nodo_header.cant; j > i; j--)
477                         claves[j] = claves[j-1];
478         }
479         nodo_header.cant++;
480         claves[i].clave = clave;
481         claves[i].dato = dato;
482         if (i==0) {
483                 nodo_header.hijo_izquierdo = hijo_izq;
484                 claves[i].hijo_derecho = hijo_der;
485         } else {
486                 claves[i-1].hijo_derecho = hijo_izq;
487                 claves[i].hijo_derecho = hijo_der;
488         }
489         /*b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);*/
490
491         b_actualizar_header(nodo, &nodo_header);
492         b_grabar_nodo(idx, nodo_id, nodo);
493
494         /* Debo actualizar los punteros al padre de los hijos */
495         if (hijo_izq != -1) {
496                 char* nuevo = b_leer_nodo(idx, hijo_izq);
497                 if (nuevo != NULL) {
498                         B_NodoHeader nuevo_header;
499                         fprintf(stderr, "Actualizo padre de %d a %d\n", hijo_izq, nodo_id);
500                         b_leer_header(nuevo, &nuevo_header);
501                         nuevo_header.padre = nodo_id;
502                         b_actualizar_header(nuevo, &nuevo_header);
503                         b_grabar_nodo(idx, hijo_izq, nuevo);
504                         free(nuevo);
505                 } else printf("FUCK! hijo_izq=%d no existe!\n", hijo_izq);
506         }
507         if (hijo_der != -1) {
508                 char* nuevo = b_leer_nodo(idx, hijo_der);
509                 if (nuevo != NULL) {
510                         B_NodoHeader nuevo_header;
511                         fprintf(stderr, "Actualizo padre de %d a %d\n", hijo_der, nodo_id);
512                         b_leer_header(nuevo, &nuevo_header);
513                         nuevo_header.padre = nodo_id;
514                         b_actualizar_header(nuevo, &nuevo_header);
515                         b_grabar_nodo(idx, hijo_der, nuevo);
516                         free(nuevo);
517                 } else printf("FUCK! hijo_der=%d no existe!\n", hijo_der);
518         }
519 }
520
521 void b_insertar_en_nodo_con_lugar_sin_hijo_izq(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_der)
522 {
523         int i = 0;
524         B_NodoHeader nodo_header;
525         B_NodoEntry* claves;
526         b_leer_header(nodo, &nodo_header);
527         claves = b_leer_claves(nodo, &nodo_header);
528         if (nodo_header.cant > 0) {
529                 int j;
530                 while ((i < nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
531                 for(j=nodo_header.cant; j > i; j--)
532                         claves[j] = claves[j-1];
533         }
534         nodo_header.cant++;
535         claves[i].clave = clave;
536         claves[i].dato = dato;
537         claves[i].hijo_derecho = hijo_der;
538
539         b_actualizar_header(nodo, &nodo_header);
540         b_grabar_nodo(idx, nodo_id, nodo);
541
542         /* Debo actualizar el puntero al padre del hijo */
543         if (hijo_der != -1) {
544                 char* nuevo = b_leer_nodo(idx, hijo_der);
545                 if (nuevo != NULL) {
546                         B_NodoHeader nuevo_header;
547                         b_leer_header(nuevo, &nuevo_header);
548                         nuevo_header.padre = nodo_id;
549                         b_actualizar_header(nuevo, &nuevo_header);
550                         b_grabar_nodo(idx, hijo_der, nuevo);
551                         free(nuevo);
552                 } else printf("FUCK! hijo_der=%d no existe!\n", hijo_der);
553         }
554 }
555
556 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
557 {
558         EMUFS_REG_SIZE tam;
559         int error=0;
560         char *leido;
561         CLAVE k;
562         INDICE_DATO dato, *ret;
563
564         /* Si el indice es primario no tiene sentido hacer nada */
565         if (idx->funcion == IND_PRIMARIO) {
566                 *cant = 0;
567                 PERR("INDICE PRIMARIO NO SOPORTA BUSQUEDA MULTIPLE");
568                 return NULL;
569         }
570
571         /* Busco la clave en el arbol */
572         dato = emufs_indice_b_buscar(idx, clave);
573
574         if (dato.id == -1) {
575                 PERR("CLAvE NO ENCONTRADA EN EL ARBOL!");
576         }
577
578         /* Leo el contenido actual */
579         k.i_clave = dato.id;
580         error = 0;
581         leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
582
583         /* Incremento en 1 la cantidad */
584         if (leido != NULL)
585                 (*cant) = *((int *)leido);
586         else
587                 (*cant) = 0;
588
589         ret = malloc(sizeof(INDICE_DATO)*(*cant));
590         memcpy(ret, leido+sizeof(int), (*cant)*sizeof(INDICE_DATO));
591         free(leido);
592         return ret;
593 }
594
595 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
596 {
597         int pos, actual_id, padre_id, i, pos_padre, izquierda_id, derecha_id;
598         B_NodoHeader header, header_actual, header_padre, header_izq, header_der;
599         B_NodoEntry *claves, *claves_actual, *claves_padre;/*, *claves_izq, *claves_der;*/
600         char *actual, *padre, *izq, *der;
601
602         PERR("Borrando clave");
603         b_leer_header(nodo, &header);
604         claves = b_leer_claves(nodo, &header);
605
606         pos = 0;
607         /* Busco la posicion dentro de la lista de claves */
608         PERR("Buscando lugar donde se encuentra la clave");
609         while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
610
611         /* Es el nodo una hoja? */
612         fprintf(stderr, "La clave esta en la pos = %d\n", pos);
613         if (header.hijo_izquierdo != -1) {
614                 PERR("Nodo no es hoja, intercambio");
615                 /* No!, es un nodo intermedio!! */
616                 if (pos == 0)
617                         actual = b_leer_nodo(idx, header.hijo_izquierdo);
618                 else
619                         actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho);
620
621                 b_leer_header(actual, &header_actual);
622                 while (header_actual.hijo_izquierdo != -1) {
623                         actual_id = header_actual.hijo_izquierdo;
624                         free(actual);
625                         actual = b_leer_nodo(idx, actual_id);
626                         b_leer_header(actual, &header_actual);
627                 }
628                 claves_actual = b_leer_claves(actual, &header);
629
630                 claves[pos] = claves_actual[0];
631                 pos = 0;
632                 b_grabar_nodo(idx, nodo_id, nodo);
633                 PERR("Listo");
634         } else {
635                 PERR("Nodo es hoja");
636                 actual = nodo;
637                 header_actual = header;
638                 claves_actual = claves;
639                 actual_id = nodo_id;
640         }
641
642         /* Borro la clave */
643         PERR("Borrando clave");
644         for(i=pos; i < header_actual.cant-1; i++) {
645                 claves_actual[i] = claves_actual[i+1];
646         }
647         PERR("Borrado completo");
648         header_actual.cant--;
649         /* Guardo los cambios */
650         b_actualizar_header(actual, &header_actual);
651         b_grabar_nodo(idx, actual_id, actual);
652
653         /* Se cumple la condicion de hijos? */
654         PERR("Dejo todo consistente");
655         fprintf(stderr, "Condicion : %d >= %d\n", header_actual.cant, MIN_HIJOS(idx));
656         if (header_actual.cant >= MIN_HIJOS(idx)) {
657                 PERR("Borrar completo sin fundir");
658                 return;
659         }
660
661         PERR("Node queda con menos hijos de los posibles!");
662         /* Tengo que pasar datos o fundir nodos :-( */
663         do {
664                 padre_id = header.padre;
665                 padre = b_leer_nodo(idx, padre_id);
666                 b_leer_header(padre, &header_padre);
667                 claves_padre = b_leer_claves(padre, &header_padre);
668                 fprintf(stderr, "ID del padre = %d de nivel %d\n", padre_id, header_padre.nivel);
669                 /* TODO Tengo el hijo_izquierdo para revisar!! XXX */
670                 if (header_padre.hijo_izquierdo == actual_id) {
671                         PERR("Soy el hijo izquierdo de padre");
672                         izquierda_id = -1; /* No tengo hermano izquierdo */
673                         /* Mi hermano derecho es el primer nodo del padre */
674                         derecha_id = claves_padre[0].hijo_derecho;
675                         der = b_leer_nodo(idx, derecha_id);
676                         b_leer_header(der, &header_der);
677                 } else {
678                         PERR("Buscando que hijo soy");
679                         for(pos_padre=0; (claves_padre[pos_padre].hijo_derecho != actual_id); pos_padre++)      {       }
680
681                         if (pos_padre == header_padre.cant) {
682                                 PERR("ERROR GRAVE. Padre no me contiene :-(");
683                         }
684
685                         /* Busco mis hermanos a derecha e izquierda, si es que existen */
686                         PERR("Ya me encontre, busco a mis hermanos");
687                         if (pos_padre >= 0) {
688                                 if (pos_padre == 0)
689                                         izquierda_id = header_padre.hijo_izquierdo;
690                                 else
691                                         izquierda_id = claves_padre[pos_padre-1].hijo_derecho;
692                                 izq = b_leer_nodo(idx, izquierda_id);
693                                 b_leer_header(izq, &header_izq);
694                         } else {
695                                 izquierda_id = -1;
696                         }
697                         if (pos_padre < header_padre.cant) {
698                                 derecha_id = claves_padre[pos_padre+1].hijo_derecho;
699                                 der = b_leer_nodo(idx, derecha_id);
700                                 b_leer_header(der, &header_der);
701                         } else {
702                                 derecha_id = -1;
703                         }
704                 }
705                 /* Intendo pasar una clave desde un hermano hacia mi */
706                 PERR("Ta calcule lo que tengo que hacer");
707                 if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
708                         PERR("Le pido clave a derecha");
709                         fprintf(stderr, "ANTES DE PEDIR DERECHA TENGO %d claves\n", header_actual.cant);
710                         b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
711                         PERR("listo");
712                         b_leer_header(der, &header_der);
713                         b_leer_header(padre, &header_padre);
714                         b_leer_header(actual, &header_actual);
715                         fprintf(stderr, "DESPUES DE PEDIR DERECHA TENGO %d claves\n", header_actual.cant);
716                 } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
717                         PERR("Le pido clave a izquierda");
718                         b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
719                         /* como se modificaron cosas, leo de nuevo los headers */
720                         b_leer_header(izq, &header_izq);
721                         b_leer_header(padre, &header_padre);
722                         b_leer_header(actual, &header_actual);
723                         PERR("Listo");
724                 } else {
725                         /* No pude pasar clave, tengo que fundir :-( */
726                         PERR("Fundo nodos!");
727                         if (derecha_id != -1) {
728                                 b_fundir_nodo(actual, actual_id, padre, padre_id, der, derecha_id, pos_padre);
729                         } else {
730                                 b_fundir_nodo(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
731                         }
732                 }
733
734                 /* TODO que guardo ?, todo ? */
735                 b_grabar_nodo(idx, actual_id, actual);
736                 b_grabar_nodo(idx, izquierda_id, izq);
737                 b_grabar_nodo(idx, derecha_id, der);
738                 b_grabar_nodo(idx, padre_id, padre);
739                 if (actual_id != -1) free(actual);
740                 if (derecha_id != -1) free(der);
741                 if (izquierda_id != -1) free(izq);
742                 actual = padre;
743                 actual_id = padre_id;
744                 b_leer_header(actual, &header_actual);
745                 claves_actual = b_leer_claves(actual, &header_actual);
746         } while ((actual_id != -1) && (actual_id != 0) && (header_actual.cant < MIN_HIJOS(idx)));
747 }
748
749 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
750 {
751         int i;
752         B_NodoHeader h_der, h_padre, h_nodo;
753         B_NodoEntry *c_der, *c_padre, *c_nodo;
754
755         b_leer_header(nodo, &h_nodo);
756         c_nodo = b_leer_claves(nodo, &h_nodo);
757         b_leer_header(der, &h_der);
758         c_der = b_leer_claves(der, &h_der);
759         b_leer_header(padre, &h_padre);
760         c_padre = b_leer_claves(padre, &h_padre);
761
762         c_nodo[h_nodo.cant] = c_padre[pos_clave+1];
763         c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
764
765         c_padre[pos_clave+1] = c_der[0];
766         c_padre[pos_clave+1].hijo_derecho = der_id;
767         
768         /* Muevo las claves de derecho */
769         for(i=0; i<h_der.cant-1; i++) {
770                 c_der[i] = c_der[i+1];
771         }
772         h_der.cant--;
773         h_nodo.cant++;
774
775         b_actualizar_header(der, &h_der);
776         b_actualizar_header(nodo, &h_nodo);
777 }
778
779 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
780 {
781         B_NodoHeader padre_h, der_h;
782         B_NodoEntry* padre_entries;
783         /* Leo claves y cabecera del nodo de la derecha y del padre */
784         b_leer_header(padre, &padre_h);
785         b_leer_header(der, &der_h);
786         padre_entries = b_leer_claves(padre, &padre_h);
787         /* Inserto en el hijo derecho la clave del padre */
788         b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
789                         der_id, der, entry.hijo_derecho, der_h.hijo_izquierdo);
790         /* Reemplazo clave del padre por clave nueva */
791         entry.hijo_derecho = der_id;
792         padre_entries[padre_pos] = entry;
793 }
794
795 void b_pedir_clave_izquierda(char *izq, int izq_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
796 {
797         int i;
798         B_NodoHeader h_izq, h_padre, h_nodo;
799         B_NodoEntry *c_izq, *c_padre, *c_nodo;
800
801         b_leer_header(nodo, &h_nodo);
802         c_nodo = b_leer_claves(nodo, &h_nodo);
803         b_leer_header(izq, &h_izq);
804         c_izq = b_leer_claves(izq, &h_izq);
805         b_leer_header(padre, &h_padre);
806         c_padre = b_leer_claves(padre, &h_padre);
807
808         for(i=h_nodo.cant; i>0;i++)
809                 c_nodo[i] = c_nodo[i-1];
810
811         h_nodo.cant++;
812         c_nodo[0] = c_padre[pos_clave];
813         c_nodo[0].hijo_derecho = -1; /* XXX */
814         c_padre[pos_clave] = c_izq[h_izq.cant-1];
815         c_padre[pos_clave].hijo_derecho = izq_id;
816         h_izq.cant--;
817
818         b_actualizar_header(izq, &h_izq);
819         b_actualizar_header(padre, &h_padre);
820         b_actualizar_header(nodo, &h_nodo);
821 }
822
823 void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry, int id_entry_hijo_izq, int id_entry_nodo)
824 {
825         B_NodoHeader padre_h;
826         B_NodoEntry* padre_entries;
827         /* Leo claves y cabecera del nodo de la izquierda y del padre */
828         b_leer_header(padre, &padre_h);
829         padre_entries = b_leer_claves(padre, &padre_h);
830         /* Inserto en el hijo izquirdo la clave del padre */
831         b_insertar_en_nodo_con_lugar_sin_hijo_izq(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
832                         izq_id, izq, id_entry_hijo_izq);
833         /* Reemplazo clave del padre por clave nueva */
834         entry.hijo_derecho = id_entry_nodo;
835         padre_entries[padre_pos] = entry;
836 }
837
838 static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_clave)
839 {
840 }
841
842 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)
843 {
844         int cant;
845         EMUFS_REG_SIZE tam;
846         int error=0;
847         INDICE_DATO *array;
848         char *leido;
849         CLAVE k;
850
851         /* Leo el contenido actual */
852         k.i_clave = pos.id;
853         error = 0;
854         leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
855
856         /* Incremento en 1 la cantidad */
857         if (leido != NULL)
858                 cant = *((int *)leido);
859         else
860                 cant = 0;
861         cant++;
862
863         /* Obtengo un nuevo lugar para el dato nuevo */
864         /* Aca todo bien, si leido es NULL se compota como malloc */
865         leido = realloc(leido, cant*sizeof(INDICE_DATO)+sizeof(int));
866         array = (INDICE_DATO *)(leido+sizeof(int));
867
868         /* Pongo el dato nuevo */
869         array[cant-1] = nuevo;
870
871         /* Actualizo la cantidad */
872         (*((int *)leido)) = cant;
873
874         /* Salvo */
875         if (k.i_clave == -1) {
876                 /* Creo uno nuevo */
877                 error = 0;
878                 k.i_clave = idx->emu_mult->grabar_registro(idx->emu_mult,
879                         leido,
880                         cant*sizeof(INDICE_DATO)+sizeof(int),
881                         &error
882                 );
883                 if (k.i_clave == -1) PERR("ALGO NO GRABO BIEN!!");
884         } else {
885                 /* Modifico el que ya existia! */
886                 error = 0;
887                 idx->emu_mult->modificar_registro(idx->emu_mult,
888                         k,
889                         leido,
890                         cant*sizeof(INDICE_DATO)+sizeof(int),
891                         &error
892                 );
893         }
894         /* Clean up! */
895         free(leido);
896         return k.i_clave;
897 }
898
899 char *abreviar(char *primera, char *actual, int *iguales)
900 {
901         (*iguales) = 0;
902         while (((*primera) != '\0') && ((*actual) != '\0')) {
903                 if ((*primera) == (*actual)) {
904                         primera++;
905                         actual++;
906                         (*iguales)++;
907                 } else {
908                         /* No coinciden mas! */
909                         break;
910                 }
911         }
912
913         return actual;
914 }
915
916 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
917 {
918         char *primera, *actual, *resto, salvar[100];
919         EMUFS_REG_SIZE size;
920         int error, i;
921         int iguales;
922
923         /* Agarro la primer clave entera como referencia */
924         primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
925         for(i=1; i<header->cant; i++) {
926                 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
927                 if (*actual == '*') {
928                         free(actual);
929                         continue;
930                 }
931                 resto = abreviar(primera, actual, &iguales);
932                 /* Para que tenga sentido abreviar tengo que tener
933                  * mas de 2 letras iguales, si no no gano nada y complica las cosas
934                  */
935                 if (iguales > 1) {
936                         sprintf(salvar, "%d|%s", iguales, resto);
937                         free(actual);
938                         error = 0;
939                         idx->emu_string->modificar_registro(idx->emu_string, array[i].clave, salvar, strlen(salvar)+1, &error);
940                 } else {
941                         free(primera);
942                         primera = actual;
943                 }
944         }
945         
946         free(primera);
947 }
948
949 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
950 {
951         char *primera, *actual, *resto, salvar[100];
952         EMUFS_REG_SIZE size;
953         int error, i;
954         int iguales;
955
956         /* Agarro la primer clave entera como referencia */
957         primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
958         for(i=1; i<header->cant; i++) {
959                 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
960                 if (*actual == '*') {
961                         free(actual);
962                         continue;
963                 }
964                 iguales = strtol(actual, &resto, 10);
965                 if ((iguales > 0) && (*resto == '|')) {
966                         strncpy(salvar, primera, iguales);
967                         salvar[iguales] = '\0';
968                         strcat(salvar, resto+1); /* +1 para saltar el separador */
969                         idx->emu_string->modificar_registro(idx->emu_string, array[i].clave, salvar, strlen(salvar)+1, &error);
970                         free(actual);
971                 } else {
972                         free(primera);
973                         primera = actual;
974                 }
975         }
976         
977         free(primera);
978 }
979