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