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