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