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