/** Arbol B+ */
#include "b_plus.h"
+/* Private prototypes */
+int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node);
+NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node);
+NODO_B_PLUS *b_plus_crearnodo(INDEXSPECS *idx);
+
+
/** Crea un nuevo nodo y lo inicializa */
-NODO_B_PLUS emufs_b_plus_crearnodo(INDICE *idx, int es_hoja) {
-
- NODO_B_PLUS nodo;
- int nonheader_bytes = 0;
- int size_claves = 0;
- int size_hijos = 0;
+NODO_B_PLUS *b_plus_crearnodo(INDEXSPECS *idx) {
- nodo.es_hoja = es_hoja;
- nodo.nivel = 0;
- nodo.cant_claves = 0;
+ 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 */
- nonheader_bytes = idx->tam_bloque - sizeof(int)*3;
- size_claves = (nonheader_bytes - sizeof(int))/2;
- size_hijos = size_claves + sizeof(int);
- nodo.claves = (int*) malloc(size_claves);
- nodo.hijos = (int*) malloc(size_hijos);
- memset(nodo.claves,'1',size_claves);
- memset(nodo.hijos,'9',size_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(INDICE *idx) {
+int emufs_b_plus_crear(INDEXSPECS *idx) {
FILE *fp;
- NODO_B_PLUS raiz;
- int size_claves = (idx->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(int))/2;
- int size_hijos = size_claves + sizeof(int);
+ NODO_B_PLUS *raiz;
+ int error = 0;
/* Creamos el archivo que contendra el indice */
fp = fopen(idx->filename, "w");
- PERR("Creando indice");
- fprintf(stderr, "Archivo = (%s)\n", idx->filename);
+ PERR("Creando indice con nodo raiz");
if (fp == NULL) {
PERR("Error al crear el archivo");
return -1;
}
+ fclose(fp);
/* Creamos el nodo raiz y lo guardamos el en indice */
- raiz = emufs_b_plus_crearnodo(idx,0);
- fwrite(&raiz,SIZE_B_PLUS_HEADER,1,fp);
- fwrite(raiz.claves,size_claves,1,fp);
- fwrite(raiz.hijos,size_hijos,1,fp);
- fclose(fp);
+ raiz = b_plus_crearnodo(idx);
+ error = b_plus_grabar_nodo(idx,raiz,0);
+
+ /* Liberamos areas de memoria reservadas */
+ free(raiz->claves);
+ free(raiz->hijos);
+ free(raiz);
+
+ return error;
+}
+
+/** 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\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)
+ {
+
+ }
- /* Liberamos areas de memoria reservadas para claves e hijos */
- free(raiz.claves);
- free(raiz.hijos);
+ free(curnode);
return 0;
}
-/** Inserta una clave en el arbol */
-INDEX_DAT emufs_b_plus_insertar(CLAVE clave)
+NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) {
+
+ int i = 0;
+ FILE *fp;
+ NODO_B_PLUS *memnode = b_plus_crearnodo(idx);
+ char *disknode = (char*)malloc(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_claves,idx->size_hijos);
+ free(disknode);
+
+ printf("Dumping Node_%i\n",num_node);
+ 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;
+
+}
+
+int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node)
{
- INDEX_DAT insertado;
+ FILE *fp;
+
+ fp = fopen(idx->filename, "r+");
+ if (fp == NULL) return -1;
+
+ fseek(fp,num_node*sizeof(NODO_B_PLUS),SEEK_SET);
+ fwrite(nodo,SIZE_B_PLUS_HEADER,1,fp);
+ fwrite(nodo->claves,idx->size_claves,1,fp);
+ fwrite(nodo->hijos,idx->size_hijos,1,fp);
+ fclose(fp);
+
+ return 0;
+}