5 /* Cantidad de claves por nodo */
6 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
7 #define CANT_NODOS(x) (CANT_HIJOS(x)+1)
8 #define MIN_HIJOS(x) (CANT_HIJOS(x)/2)
11 static void b_grabar_nodo(INDICE *idx, int id, char *data);
12 static int b_ultimo_id(INDICE *idx);
13 static char *b_leer_nodo(INDICE *idx, int id);
14 static char *b_crear_nodo(INDICE *idx, int *i);
15 static void b_leer_header(char *src, B_NodoHeader *header);
16 static void b_actualizar_header(char *src, B_NodoHeader *header);
17 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
18 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
19 const int b_elegir_izquierdo(INDICE *idx, int a, int b);
21 void emufs_indice_b_crear(INDICE *idx)
30 header.hijo_izquierdo = -1;
32 fp = fopen(idx->filename, "w");
33 PERR("Creando indice");
34 fprintf(stderr, "Archivo = (%s)\n", idx->filename);
36 PERR("Error al crear el archivo");
40 /* Creo el archivo con el Nodo raiz */
41 bloque = (char *)malloc(idx->tam_bloque);
42 memset(bloque, -1, idx->tam_bloque);
44 memcpy(bloque, &header, sizeof(B_NodoHeader));
46 fwrite(bloque, idx->tam_bloque, 1, fp);
50 int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
52 int i, nodo_id, padre_id;
58 nodo = b_leer_nodo(idx, 0);
59 padre_id = nodo_id = 0;
62 if (padre) free(padre);
65 b_leer_header(nodo, &header);
66 claves = b_leer_claves(nodo, &header);
68 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
69 if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, clave))) {
70 /* CLAVE DUPLICADA! */
74 if (header.nivel != 0) {
75 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
76 nodo_id = header.hijo_izquierdo;
82 if (header.nivel != 0) {
83 nodo = b_leer_nodo(idx, claves[i-1].dato.bloque);
84 nodo_id = claves[i-1].dato.bloque;
96 b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
97 return 1; /* Agregar OK! */
100 INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
109 nodo = b_leer_nodo(idx, 0);
111 b_leer_header(nodo, &header);
112 claves = b_leer_claves(nodo, &header);
114 while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
115 if (emufs_indice_es_igual(idx, claves[i].clave, clave)) {
116 ret = claves[i].dato;
122 nodo = b_leer_nodo(idx, header.hijo_izquierdo);
124 nodo = b_leer_nodo(idx, claves[i-1].dato.bloque);
130 /* Nodo no encontrado */
131 ret.id = ret.bloque = -1;
135 static int b_ultimo_id(INDICE *idx)
139 fp = fopen(idx->filename, "r");
140 fseek(fp, 0, SEEK_END);
141 i = ftell(fp)/idx->tam_bloque;
147 static char *b_crear_nodo(INDICE *idx, int *id)
152 (*id) = b_ultimo_id(idx);
156 header.hijo_izquierdo = -1;
159 bloque = (char *)malloc(idx->tam_bloque);
160 memset(bloque, -1, idx->tam_bloque);
161 memcpy(bloque, &header, sizeof(B_NodoHeader));
163 b_grabar_nodo(idx, *id, bloque);
168 static char *b_leer_nodo(INDICE *idx, int id)
173 if (id < 0) return NULL;
175 fp = fopen(idx->filename, "r");
176 if (fp == NULL) return NULL;
178 fseek(fp, id*idx->tam_bloque, SEEK_SET);
180 out = (char *)malloc(idx->tam_bloque);
186 if (fread(out, 1, idx->tam_bloque, fp) != idx->tam_bloque) {
188 /* No se puso leer el nodo */
197 static void b_grabar_nodo(INDICE *idx, int id, char *data)
201 /* if (id > b_ultimo_id()) {
202 printf("AGREGANDO AL FINAL\n");
203 fp = fopen(FILENAME, "a");
205 _("No se pudo abrir archivo\n");
209 fp = fopen(FILENAME, "w");
211 _("No se pudo abrir archivo\n");
214 fseek(fp, id*BLOCK_SIZE, SEEK_SET);
215 printf("SOLO GUARDO DATA\n");
218 fp = fopen(idx->filename, "r+");
219 fseek(fp, id*idx->tam_bloque, SEEK_SET);
220 fwrite(data, 1, idx->tam_bloque, fp);
224 static void b_leer_header(char *src, B_NodoHeader *header)
228 memcpy(header, src, sizeof(B_NodoHeader));
231 static void b_actualizar_header(char *src, B_NodoHeader *header)
234 memcpy(src, header, sizeof(B_NodoHeader));
237 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
239 return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
242 static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
249 B_NodoHeader nodo_header, nuevo_header;
250 B_NodoEntry *claves, *tmp_claves, *claves_nuevo;
255 nodo = b_crear_nodo(idx, &nodo_id);
257 b_leer_header(nodo, &nodo_header);
258 claves = b_leer_claves(nodo, &nodo_header);
260 padre = b_leer_nodo(idx, nodo_header.padre);
262 if (nodo_header.cant == CANT_HIJOS(idx)) {
264 nuevo = b_crear_nodo(idx, &nuevo_id);
266 /* Creo una lista ordenada de los nodos a partir */
267 tmp_claves = (B_NodoEntry *)malloc(sizeof(B_NodoEntry)*(nodo_header.cant+1));
268 total = nodo_header.cant;
269 while ((i<nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) {
270 tmp_claves[i] = claves[i];
273 tmp_claves[i].clave = clave;
274 tmp_claves[i].dato = dato;
275 while (i < nodo_header.cant) {
276 tmp_claves[i+1] = claves[i];
280 /* Asigno a cada nodo lo que corresponde */
281 b_leer_header(nuevo, &nuevo_header);
283 nuevo_header.nivel = nodo_header.nivel;
284 nodo_header.cant = total/2;
285 nuevo_header.cant = total - nodo_header.cant;
287 memset(claves, '*', idx->tam_bloque-sizeof(B_NodoHeader));
288 for(j=0; j<nodo_header.cant; j++)
289 claves[j] = tmp_claves[j];
291 claves_nuevo = b_leer_claves(nuevo, &nuevo_header);
292 memset(claves_nuevo, '*', idx->tam_bloque-sizeof(B_NodoHeader));
293 for(j=0; j<nuevo_header.cant; j++)
294 claves_nuevo[j] = tmp_claves[j+total/2+1];
296 b_actualizar_header(nodo, &nodo_header);
297 b_actualizar_header(nuevo, &nuevo_header);
300 clave = tmp_claves[total/2].clave;
301 dato.bloque = nuevo_id;
303 b_grabar_nodo(idx, nodo_id, nodo);
304 b_grabar_nodo(idx, nuevo_id, nuevo);
313 nodo_id = nodo_header.padre;
315 /* Oops, parti el raiz, y este debe quedar en 0, lo paso a otro bloque
316 * y dejo el padre vacio
318 char *tmp_nuevo = b_crear_nodo(idx, &nodo_id);
319 memcpy(tmp_nuevo, nodo, idx->tam_bloque);
323 clave = tmp_claves[total/2].clave;
324 dato.bloque = nuevo_id;
326 b_grabar_nodo(idx, nuevo_id+1, nodo);
327 b_grabar_nodo(idx, nuevo_id, nuevo);
336 /* Limpio al padre */
337 nuevo = b_leer_nodo(idx, 0);
339 b_leer_header(nuevo, &nuevo_header);
340 nuevo_header.cant = 0;
341 nuevo_header.padre = -1;
342 nuevo_header.nivel = nodo_header.nivel+1;
343 memset(nuevo, -1, idx->tam_bloque);
344 b_actualizar_header(nuevo, &nuevo_header);
345 b_grabar_nodo(idx, 0, nuevo);
352 /* La clave entra en este nodo!! */
354 if (nodo_header.cant > 0) {
355 while ((emufs_indice_es_menor(idx, claves[i].clave, clave)) && (i < nodo_header.cant)) i++;
356 for(j=nodo_header.cant; j > i; j--)
357 claves[j] = claves[j-1];
360 claves[i].clave = clave;
361 claves[i].dato = dato;
362 nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
364 b_actualizar_header(nodo, &nodo_header);
365 b_grabar_nodo(idx, nodo_id, nodo);
367 /* Debo actualizar los punteros al padre de los hijos */
369 nuevo = b_leer_nodo(idx, hijo1);
371 b_leer_header(nuevo, &nuevo_header);
372 nuevo_header.padre = nodo_id;
373 b_actualizar_header(nuevo, &nuevo_header);
374 b_grabar_nodo(idx, hijo1, nuevo);
376 } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
379 nuevo = b_leer_nodo(idx, hijo2);
381 b_leer_header(nuevo, &nuevo_header);
382 nuevo_header.padre = nodo_id;
383 b_actualizar_header(nuevo, &nuevo_header);
384 b_grabar_nodo(idx, hijo2, nuevo);
386 } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
393 const int b_elegir_izquierdo(INDICE *idx, int a, int b)
397 B_NodoHeader header1, header2;
398 B_NodoEntry *claves1, *claves2;
403 nodo1 = b_leer_nodo(idx, a);
404 nodo2 = b_leer_nodo(idx, b);
406 b_leer_header(nodo1, &header1);
407 b_leer_header(nodo2, &header2);
409 claves1 = b_leer_claves(nodo1, &header1);
410 claves2 = b_leer_claves(nodo2, &header2);
412 if (emufs_indice_es_menor(idx, claves1[0].clave, claves2[0].clave))
422 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
424 /* Si el indice es primario no tiene sentido hacer nada */
425 if (idx->funcion == IND_PRIMARIO) {
430 /* TODO Implementar indices con repeticion */