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