X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/f8ff8588ebc1bc31ede57fc99fb988be80d7c1b6..a53aa4647b26ef8543a45f1410f42123717d447f:/emufs/b_plus.c?ds=sidebyside diff --git a/emufs/b_plus.c b/emufs/b_plus.c index 51a77e9..bb4e564 100644 --- a/emufs/b_plus.c +++ b/emufs/b_plus.c @@ -1,4 +1,116 @@ /** Arbol B+ */ #include "b_plus.h" +/* Private prototypes */ +NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node); +NODO_B_PLUS *emufs_b_plus_crearnodo(INDEXSPECS *idx); +/** Crea un nuevo nodo y lo inicializa */ +NODO_B_PLUS *emufs_b_plus_crearnodo(INDEXSPECS *idx) { + + NODO_B_PLUS *nodo = (NODO_B_PLUS*)malloc(sizeof(NODO_B_PLUS)); + nodo->nivel = 0; + nodo->cant_claves = 0; + + /* Calculamos lo que ocupan las cadenas de bytes claves + hijos */ + nodo->claves = (int*)malloc(idx->size_claves); + nodo->hijos = (int*)malloc(idx->size_hijos); + memset(nodo->claves,-1,idx->size_claves); + memset(nodo->hijos,-1,idx->size_hijos); + + return nodo; +} + +/** Crea el archivo indice B+ */ +int emufs_b_plus_crear(INDEXSPECS *idx) { + + FILE *fp; + NODO_B_PLUS *raiz; + + /* Creamos el archivo que contendra el indice */ + 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 -1; + } + + /* Creamos el nodo raiz y lo guardamos el en indice */ + raiz = emufs_b_plus_crearnodo(idx); + fwrite(raiz,SIZE_B_PLUS_HEADER,1,fp); + fwrite(raiz->claves,idx->size_claves,1,fp); + fwrite(raiz->hijos,idx->size_hijos,1,fp); + fclose(fp); + + /* Liberamos areas de memoria reservadas */ + free(raiz->claves); + free(raiz->hijos); + free(raiz); + + return 0; +} + +/** Busca el nro de bloque donde se debe guardar un reg con clave X */ +int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query) { + + NODO_B_PLUS *curnode; + + /* Comienzo leyendo la raiz, entry point de toda funcion */ + printf ("Buscando donde insertar clave: %i\n",query->clave.i_clave); + curnode = b_plus_leer_nodo(idx,0); + if (curnode == NULL) return -1; + + /* Mientras no encontre la hoja con la clave, busco.. */ + while ((curnode->nivel > 0) && curnode) + { + + } + + return 0; +} + +NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) { + + int i = 0; + FILE *fp; + NODO_B_PLUS *memnode = (NODO_B_PLUS*)malloc(sizeof(NODO_B_PLUS)); + char *disknode = (char*)malloc(sizeof(idx->tam_bloque)); + + if (disknode == NULL) return NULL; + if (memnode == NULL) return NULL; + + /* Open up file */ + fp = fopen(idx->filename, "r"); + if (fp == NULL) { + free(disknode); + free(memnode); + return NULL; + } + + /* Intentamos leer un nodo, sino podemos error! */ + fseek(fp, num_node*idx->tam_bloque, SEEK_SET); + if (fread(disknode, idx->tam_bloque, 1, fp) != 1) { + free(disknode); + fclose(fp); + return NULL; + } + fclose(fp); + + /* Pudimos leer un nodo de disco, ahora lo transformamos a nodo mem */ + memcpy(memnode,disknode,SIZE_B_PLUS_HEADER); + memcpy(memnode->claves,disknode+SIZE_B_PLUS_HEADER,idx->size_claves); + memcpy(memnode->hijos,disknode+SIZE_B_PLUS_HEADER,idx->size_hijos); + free(disknode); + + printf("Dumping nodo leido...\n"); + printf("Nivel: %i Cant Claves: %i\n",memnode->nivel,memnode->cant_claves); + printf("Claves:"); + for (i = 0; i < idx->size_claves/sizeof(int); ++i) printf(" %i",memnode->claves[i]); + printf("\nHijos:"); + for (i = 0; i < idx->size_hijos/sizeof(int); ++i) printf(" %i",memnode->hijos[i]); + printf("\nEnd Dump\n"); + + return memnode; + +}