]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/indice_b.c
Saco funcion repetida (obtener_clave) y reemplazo llamada con
[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(INDICE *,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, p;
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 /*              if (pos == 0) {
616                         actual = b_leer_nodo(idx, nodo_header.hijo_izquierdo);
617                 else*/
618                 actual = b_leer_nodo(idx, claves[pos].hijo_derecho);
619                 actual_id = claves[pos].hijo_derecho;
620                 p = claves[pos].hijo_derecho;
621
622                 b_leer_header(actual, &header_actual);
623                 while (header_actual.hijo_izquierdo != -1) {
624                         actual_id = header_actual.hijo_izquierdo;
625                         free(actual);
626                         actual = b_leer_nodo(idx, actual_id);
627                         b_leer_header(actual, &header_actual);
628                 }
629                 claves_actual = b_leer_claves(actual, &header_actual);
630
631                 claves[pos] = claves_actual[0];
632                 claves[pos].hijo_derecho = p;
633                 pos = 0;
634                 b_grabar_nodo(idx, nodo_id, nodo);
635                 PERR("Listo");
636         } else {
637                 PERR("Nodo es hoja");
638                 actual = nodo;
639                 header_actual = header;
640                 claves_actual = claves;
641                 actual_id = nodo_id;
642         }
643
644         /* Borro la clave */
645         PERR("Borrando clave");
646         for(i=pos; i < header_actual.cant-1; i++) {
647                 claves_actual[i] = claves_actual[i+1];
648         }
649         PERR("Borrado completo");
650         header_actual.cant--;
651         /* Guardo los cambios */
652         b_actualizar_header(actual, &header_actual);
653         b_grabar_nodo(idx, actual_id, actual);
654
655         /* Se cumple la condicion de hijos? */
656         PERR("Dejo todo consistente");
657         fprintf(stderr, "Condicion : %d >= %d\n", header_actual.cant, MIN_HIJOS(idx));
658         if (header_actual.cant >= MIN_HIJOS(idx)) {
659                 PERR("Borrar completo sin fundir");
660                 return;
661         }
662
663         PERR("Node queda con menos hijos de los posibles!");
664         /* Tengo que pasar datos o fundir nodos :-( */
665         do {
666                 padre_id = header.padre;
667                 padre = b_leer_nodo(idx, padre_id);
668                 b_leer_header(padre, &header_padre);
669                 claves_padre = b_leer_claves(padre, &header_padre);
670                 fprintf(stderr, "ID del padre = %d de nivel %d\n", padre_id, header_padre.nivel);
671                 /* TODO Tengo el hijo_izquierdo para revisar!! XXX */
672                 if (header_padre.hijo_izquierdo == actual_id) {
673                         PERR("Soy el hijo izquierdo de padre");
674                         izquierda_id = -1; /* No tengo hermano izquierdo */
675                         /* Mi hermano derecho es el primer nodo del padre */
676                         derecha_id = claves_padre[0].hijo_derecho;
677                         der = b_leer_nodo(idx, derecha_id);
678                         b_leer_header(der, &header_der);
679                 } else {
680                         PERR("Buscando que hijo soy");
681                         for(pos_padre=0; (claves_padre[pos_padre].hijo_derecho != actual_id); pos_padre++)      {       }
682
683                         if (pos_padre == header_padre.cant) {
684                                 PERR("ERROR GRAVE. Padre no me contiene :-(");
685                         }
686
687                         /* Busco mis hermanos a derecha e izquierda, si es que existen */
688                         PERR("Ya me encontre, busco a mis hermanos");
689                         if (pos_padre >= 0) {
690                                 if (pos_padre == 0)
691                                         izquierda_id = header_padre.hijo_izquierdo;
692                                 else
693                                         izquierda_id = claves_padre[pos_padre-1].hijo_derecho;
694                                 izq = b_leer_nodo(idx, izquierda_id);
695                                 b_leer_header(izq, &header_izq);
696                         } else {
697                                 izquierda_id = -1;
698                         }
699                         if (pos_padre < header_padre.cant) {
700                                 derecha_id = claves_padre[pos_padre+1].hijo_derecho;
701                                 der = b_leer_nodo(idx, derecha_id);
702                                 b_leer_header(der, &header_der);
703                         } else {
704                                 derecha_id = -1;
705                         }
706                 }
707                 /* Intendo pasar una clave desde un hermano hacia mi */
708                 PERR("Ta calcule lo que tengo que hacer");
709                 if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
710                         PERR("Le pido clave a derecha");
711                         fprintf(stderr, "ANTES DE PEDIR DERECHA TENGO %d claves\n", header_actual.cant);
712                         b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
713                         PERR("listo");
714                         b_leer_header(der, &header_der);
715                         b_leer_header(padre, &header_padre);
716                         b_leer_header(actual, &header_actual);
717                         fprintf(stderr, "DESPUES DE PEDIR DERECHA TENGO %d claves\n", header_actual.cant);
718                 } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
719                         PERR("Le pido clave a izquierda");
720                         b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre);
721                         /* como se modificaron cosas, leo de nuevo los headers */
722                         b_leer_header(izq, &header_izq);
723                         b_leer_header(padre, &header_padre);
724                         b_leer_header(actual, &header_actual);
725                         PERR("Listo");
726                 } else {
727                         /* No pude pasar clave, tengo que fundir :-( */
728                         PERR("Fundo nodos!");
729                         if (derecha_id != -1) {
730                                 b_fundir_nodo(idx, actual, actual_id, padre, padre_id, der, derecha_id, pos_padre);
731                         } else {
732                                 b_fundir_nodo(idx, izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre);
733                         }
734                 }
735
736                 /* TODO que guardo ?, todo ? */
737                 b_grabar_nodo(idx, actual_id, actual);
738                 if (izquierda_id != -1) b_grabar_nodo(idx, izquierda_id, izq);
739                 if (derecha_id != -1) b_grabar_nodo(idx, derecha_id, der);
740                 if (padre_id != -1) b_grabar_nodo(idx, padre_id, padre);
741                 if (actual_id != -1) free(actual);
742                 if (derecha_id != -1) free(der);
743                 if (izquierda_id != -1) free(izq);
744                 actual = padre;
745                 actual_id = padre_id;
746                 b_leer_header(actual, &header_actual);
747                 claves_actual = b_leer_claves(actual, &header_actual);
748         } while ((actual_id != -1) && (actual_id != 0) && (header_actual.cant < MIN_HIJOS(idx)));
749 }
750
751 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
752 {
753         int i;
754         B_NodoHeader h_der, h_padre, h_nodo;
755         B_NodoEntry *c_der, *c_padre, *c_nodo;
756
757         b_leer_header(nodo, &h_nodo);
758         c_nodo = b_leer_claves(nodo, &h_nodo);
759         b_leer_header(der, &h_der);
760         c_der = b_leer_claves(der, &h_der);
761         b_leer_header(padre, &h_padre);
762         c_padre = b_leer_claves(padre, &h_padre);
763
764         c_nodo[h_nodo.cant] = c_padre[pos_clave+1];
765         c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
766
767         c_padre[pos_clave+1] = c_der[0];
768         c_padre[pos_clave+1].hijo_derecho = der_id;
769         
770         /* Muevo las claves de derecho */
771         for(i=0; i<h_der.cant-1; i++) {
772                 c_der[i] = c_der[i+1];
773         }
774         h_der.cant--;
775         h_nodo.cant++;
776
777         b_actualizar_header(der, &h_der);
778         b_actualizar_header(nodo, &h_nodo);
779 }
780
781 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
782 {
783         B_NodoHeader padre_h, der_h;
784         B_NodoEntry* padre_entries;
785         /* Leo claves y cabecera del nodo de la derecha y del padre */
786         b_leer_header(padre, &padre_h);
787         b_leer_header(der, &der_h);
788         padre_entries = b_leer_claves(padre, &padre_h);
789         /* Inserto en el hijo derecho la clave del padre */
790         b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
791                         der_id, der, entry.hijo_derecho, der_h.hijo_izquierdo);
792         /* Reemplazo clave del padre por clave nueva */
793         entry.hijo_derecho = der_id;
794         padre_entries[padre_pos] = entry;
795 }
796
797 void b_pedir_clave_izquierda(char *izq, int izq_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
798 {
799         int i;
800         B_NodoHeader h_izq, h_padre, h_nodo;
801         B_NodoEntry *c_izq, *c_padre, *c_nodo;
802
803         b_leer_header(nodo, &h_nodo);
804         c_nodo = b_leer_claves(nodo, &h_nodo);
805         b_leer_header(izq, &h_izq);
806         c_izq = b_leer_claves(izq, &h_izq);
807         b_leer_header(padre, &h_padre);
808         c_padre = b_leer_claves(padre, &h_padre);
809
810         PERR("Muevo las claves");
811         for(i=h_nodo.cant; i>0;i--)
812                 c_nodo[i] = c_nodo[i-1];
813
814         h_nodo.cant++;
815         PERR("Paso clave de padre a nodo");
816         c_nodo[0] = c_padre[pos_clave];
817         c_nodo[0].hijo_derecho = -1; /* XXX */
818         PERR("Paso clave de izquierda a padre");
819         c_padre[pos_clave] = c_izq[h_izq.cant-1];
820         c_padre[pos_clave].hijo_derecho = nodo_id;
821         h_izq.cant--;
822
823         PERR("ACTUALIZO")
824         b_actualizar_header(izq, &h_izq);
825         b_actualizar_header(padre, &h_padre);
826         b_actualizar_header(nodo, &h_nodo);
827         PERR("Salgo");
828 }
829
830 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)
831 {
832         B_NodoHeader padre_h;
833         B_NodoEntry* padre_entries;
834         /* Leo claves y cabecera del nodo de la izquierda y del padre */
835         b_leer_header(padre, &padre_h);
836         padre_entries = b_leer_claves(padre, &padre_h);
837         /* Inserto en el hijo izquirdo la clave del padre */
838         b_insertar_en_nodo_con_lugar_sin_hijo_izq(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
839                         izq_id, izq, id_entry_hijo_izq);
840         /* Reemplazo clave del padre por clave nueva */
841         entry.hijo_derecho = id_entry_nodo;
842         padre_entries[padre_pos] = entry;
843 }
844
845 static void b_fundir_nodo(INDICE *idx, char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_padre)
846 {
847         int i;
848         B_NodoHeader h_izq, h_padre, h_der;
849         B_NodoEntry *c_izq, *c_padre, *c_der;
850
851         b_leer_header(der, &h_der);
852         c_der = b_leer_claves(der, &h_der);
853         b_leer_header(izq, &h_izq);
854         c_izq = b_leer_claves(izq, &h_izq);
855         b_leer_header(padre, &h_padre);
856         c_padre = b_leer_claves(padre, &h_padre);
857
858         c_izq[h_izq.cant] = c_padre[pos_padre];
859         h_padre.cant--;
860         for(i=pos_padre; i<h_padre.cant; i++)
861                 c_padre[i] = c_padre[i+1];
862         h_izq.cant++;
863         for(i=0; i<h_der.cant; i++)
864                 c_izq[h_izq.cant+i] = c_der[i];
865
866         h_izq.cant += h_der.cant;
867         
868         b_actualizar_header(izq, &h_izq);
869         b_actualizar_header(padre, &h_padre);
870
871         /* TODO Aca queda libre el nodo der, ver de recuperar! */
872         memset(der, 'X', idx->tam_bloque);
873         b_grabar_nodo(idx, der_id, der);
874 }
875
876 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)
877 {
878         int cant;
879         EMUFS_REG_SIZE tam;
880         int error=0;
881         INDICE_DATO *array;
882         char *leido;
883         CLAVE k;
884
885         /* Leo el contenido actual */
886         k.i_clave = pos.id;
887         error = 0;
888         leido = (char *)idx->emu_mult->leer_registro(idx->emu_mult, k, &tam, &error);
889
890         /* Incremento en 1 la cantidad */
891         if (leido != NULL)
892                 cant = *((int *)leido);
893         else
894                 cant = 0;
895         cant++;
896
897         /* Obtengo un nuevo lugar para el dato nuevo */
898         /* Aca todo bien, si leido es NULL se compota como malloc */
899         leido = realloc(leido, cant*sizeof(INDICE_DATO)+sizeof(int));
900         array = (INDICE_DATO *)(leido+sizeof(int));
901
902         /* Pongo el dato nuevo */
903         array[cant-1] = nuevo;
904
905         /* Actualizo la cantidad */
906         (*((int *)leido)) = cant;
907
908         /* Salvo */
909         if (k.i_clave == -1) {
910                 /* Creo uno nuevo */
911                 error = 0;
912                 k.i_clave = idx->emu_mult->grabar_registro(idx->emu_mult,
913                         leido,
914                         cant*sizeof(INDICE_DATO)+sizeof(int),
915                         &error
916                 );
917                 if (k.i_clave == -1) PERR("ALGO NO GRABO BIEN!!");
918         } else {
919                 /* Modifico el que ya existia! */
920                 error = 0;
921                 idx->emu_mult->modificar_registro(idx->emu_mult,
922                         k,
923                         leido,
924                         cant*sizeof(INDICE_DATO)+sizeof(int),
925                         &error
926                 );
927         }
928         /* Clean up! */
929         free(leido);
930         return k.i_clave;
931 }
932
933 char *abreviar(char *primera, char *actual, int *iguales)
934 {
935         (*iguales) = 0;
936         while (((*primera) != '\0') && ((*actual) != '\0')) {
937                 if ((*primera) == (*actual)) {
938                         primera++;
939                         actual++;
940                         (*iguales)++;
941                 } else {
942                         /* No coinciden mas! */
943                         break;
944                 }
945         }
946
947         return actual;
948 }
949
950 static void abreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
951 {
952         char *primera, *actual, *resto, salvar[100];
953         EMUFS_REG_SIZE size;
954         int error, i;
955         int iguales;
956
957         /* Agarro la primer clave entera como referencia */
958         primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
959         for(i=1; i<header->cant; i++) {
960                 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
961                 if (*actual == '*') {
962                         free(actual);
963                         continue;
964                 }
965                 resto = abreviar(primera, actual, &iguales);
966                 /* Para que tenga sentido abreviar tengo que tener
967                  * mas de 2 letras iguales, si no no gano nada y complica las cosas
968                  */
969                 if (iguales > 1) {
970                         sprintf(salvar, "%d|%s", iguales, resto);
971                         free(actual);
972                         error = 0;
973                         idx->emu_string->modificar_registro(idx->emu_string, array[i].clave, salvar, strlen(salvar)+1, &error);
974                 } else {
975                         free(primera);
976                         primera = actual;
977                 }
978         }
979         
980         free(primera);
981 }
982
983 static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *header)
984 {
985         char *primera, *actual, *resto, salvar[100];
986         EMUFS_REG_SIZE size;
987         int error, i;
988         int iguales;
989
990         /* Agarro la primer clave entera como referencia */
991         primera = (char *)idx->emu_string->leer_registro(idx->emu_string, array[0].clave, &size, &error);
992         for(i=1; i<header->cant; i++) {
993                 actual = (char *)idx->emu_string->leer_registro(idx->emu_string, array[i].clave, &size, &error);
994                 if (*actual == '*') {
995                         free(actual);
996                         continue;
997                 }
998                 iguales = strtol(actual, &resto, 10);
999                 if ((iguales > 0) && (*resto == '|')) {
1000                         strncpy(salvar, primera, iguales);
1001                         salvar[iguales] = '\0';
1002                         strcat(salvar, resto+1); /* +1 para saltar el separador */
1003                         idx->emu_string->modificar_registro(idx->emu_string, array[i].clave, salvar, strlen(salvar)+1, &error);
1004                         free(actual);
1005                 } else {
1006                         free(primera);
1007                         primera = actual;
1008                 }
1009         }
1010         
1011         free(primera);
1012 }
1013