X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/a499b030d1840a0714721695cd6fcf54bc7dbb68..40435bfb0df998d2d97ec9010535ca9a6cdffcd3:/emufs/indice_b.c?ds=sidebyside diff --git a/emufs/indice_b.c b/emufs/indice_b.c index f3fd08f..96ada55 100644 --- a/emufs/indice_b.c +++ b/emufs/indice_b.c @@ -1,5 +1,6 @@ #include "indice_b.h" +#include "common.h" /* Cantidad de claves por nodo */ #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry)) @@ -14,8 +15,9 @@ static char *b_crear_nodo(INDICE *idx, int *i); static void b_leer_header(char *src, B_NodoHeader *header); static void b_actualizar_header(char *src, B_NodoHeader *header); static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header); -static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo_id, char *nodo, int hijo1, int hijo2); -const int b_elegir_izquierdo(INDICE *idx, int a, int b); +static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2); +static int b_elegir_izquierdo(INDICE *idx, int a, int b); +static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k); void emufs_indice_b_crear(INDICE *idx) { @@ -29,6 +31,12 @@ void emufs_indice_b_crear(INDICE *idx) header.hijo_izquierdo = -1; fp = fopen(idx->filename, "w"); + PERR("Creando indice"); + fprintf(stderr, "Archivo = (%s)\n", idx->filename); + if (fp == NULL) { + PERR("Error al crear el archivo"); + return; + } /* Creo el archivo con el Nodo raiz */ bloque = (char *)malloc(idx->tam_bloque); @@ -40,7 +48,7 @@ void emufs_indice_b_crear(INDICE *idx) fclose(fp); } -int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, int ubicacion) +int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato) { int i, nodo_id, padre_id; B_NodoHeader header; @@ -64,21 +72,11 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, int ubicacion) return 0; } else { if (i == 0) { - if (header.nivel != 0) { - nodo = b_leer_nodo(idx, header.hijo_izquierdo); - nodo_id = header.hijo_izquierdo; - } else { - nodo = NULL; - nodo_id = -1; - } + nodo = b_leer_nodo(idx, header.hijo_izquierdo); + nodo_id = header.hijo_izquierdo; } else { - if (header.nivel != 0) { - nodo = b_leer_nodo(idx, claves[i-1].ubicacion); - nodo_id = claves[i-1].ubicacion; - } else { - nodo = NULL; - nodo_id = -1; - } + nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho); + nodo_id = claves[i-1].hijo_derecho; } } } @@ -86,13 +84,14 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, int ubicacion) if (nodo) free(nodo); nodo = padre; nodo_id = padre_id; - b_insertar_en_nodo(idx, clave, ubicacion, nodo_id, nodo, -1, -1); + b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1); return 1; /* Agregar OK! */ } -int emufs_indice_b_buscar(INDICE *idx, CLAVE clave) +INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave) { - int i, ret; + int i; + INDICE_DATO ret; B_NodoHeader header; B_NodoEntry *claves; char *nodo, *tmp; @@ -105,7 +104,7 @@ int emufs_indice_b_buscar(INDICE *idx, CLAVE clave) i=0; while ((ifuncion == IND_PRIMARIO) { + *cant = 0; + return NULL; + } + + /* TODO Implementar indices con repeticion */ + return NULL; +} + +static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k) +{ + int pos, actual_id, i; + B_NodoHeader header, header_actual; + B_NodoEntry *claves, *claves_actual; + char *actual; + + b_leer_header(nodo, &header); + claves = b_leer_claves(nodo, &header); + + pos = 0; + /* Busco la posicion dentro de la lista de claves */ + while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++; + + /* Es el nodo una hoja? */ + if (header.hijo_izquierdo != -1) { + /* No!, es un nodo intermedio!! */ + if (pos == 0) + actual = b_leer_nodo(idx, header.hijo_izquierdo); + else + actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho); + + b_leer_header(actual, &header_actual); + while (header_actual.hijo_izquierdo != -1) { + actual_id = header_actual.hijo_izquierdo; + free(actual); + actual = b_leer_nodo(idx, actual_id); + b_leer_header(actual, &header_actual); + } + claves_actual = b_leer_claves(actual, &header); + + claves[pos] = claves_actual[0]; + pos = 0; + b_grabar_nodo(idx, nodo_id, nodo); + } else { + actual = nodo; + } + + /* Borro la clave */ + for(i=pos; i < header_actual.cant; i++) { + claves_actual[i] = claves_actual[i+1]; + } + header_actual.cant--; + /* Guardo los cambios */ + b_actualizar_header(actual, &header_actual); + b_grabar_nodo(idx, actual_id, actual); + + /* Se cumple la condicion de hijos? */ + if (header_actual.cant >= MIN_HIJOS(idx)) { + PERR("Borrar completo sin fundir"); + return; + } + + /* Tengo que pasar datos o fundir nodos :-( */ + PERR("TODO : FUNDIR NODOS!!!!\n"); +} +