X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/a499b030d1840a0714721695cd6fcf54bc7dbb68..51ed490d1caf11b5645abef4dd473e5a5b520856:/emufs/indice_b.c diff --git a/emufs/indice_b.c b/emufs/indice_b.c index f3fd08f..5097992 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,7 +15,7 @@ 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); +static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2); const int b_elegir_izquierdo(INDICE *idx, int a, int b); void emufs_indice_b_crear(INDICE *idx) @@ -29,6 +30,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 +47,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 +71,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 +83,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 +103,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; +} +