4 /* Private prototypes */
5 int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node);
6 NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node);
7 NODO_B_PLUS *b_plus_crearnodo(INDEXSPECS *idx);
10 /** Crea un nuevo nodo y lo inicializa */
11 NODO_B_PLUS *b_plus_crearnodo(INDEXSPECS *idx) {
13 NODO_B_PLUS *nodo = (NODO_B_PLUS*)malloc(sizeof(NODO_B_PLUS));
15 nodo->cant_claves = 0;
17 /* Calculamos lo que ocupan las cadenas de bytes claves + hijos */
18 nodo->claves = (int*)malloc(idx->size_claves);
19 nodo->hijos = (int*)malloc(idx->size_hijos);
20 memset(nodo->claves,-1,idx->size_claves);
21 memset(nodo->hijos,-1,idx->size_hijos);
26 /** Crea el archivo indice B+ */
27 int emufs_b_plus_crear(INDEXSPECS *idx) {
33 /* Creamos el archivo que contendra el indice */
34 fp = fopen(idx->filename, "w");
35 PERR("Creando indice con nodo raiz");
37 PERR("Error al crear el archivo");
42 /* Creamos el nodo raiz y lo guardamos el en indice */
43 raiz = b_plus_crearnodo(idx);
44 error = b_plus_grabar_nodo(idx,raiz,0);
46 /* Liberamos areas de memoria reservadas */
54 /** Busca el nro de bloque donde se debe guardar un reg con clave X */
55 int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query) {
59 /* Comienzo leyendo la raiz, entry point de toda funcion */
60 printf ("Buscando donde insertar clave: %i\n\n",query->clave.i_clave);
61 curnode = b_plus_leer_nodo(idx,0);
62 if (curnode == NULL) return -1;
64 /* Mientras no encontre la hoja con la clave, busco.. */
65 while ((curnode->nivel > 0) && curnode)
75 NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) {
79 NODO_B_PLUS *memnode = b_plus_crearnodo(idx);
80 char *disknode = (char*)malloc(idx->tam_bloque);
82 if (disknode == NULL) return NULL;
83 if (memnode == NULL) return NULL;
86 fp = fopen(idx->filename, "r+");
93 /* Intentamos leer un nodo, sino podemos error! */
94 fseek(fp, num_node*idx->tam_bloque, SEEK_SET);
95 if (fread(disknode, idx->tam_bloque, 1, fp) != 1) {
102 /* Pudimos leer un nodo de disco, ahora lo transformamos a nodo mem */
103 memcpy(memnode,disknode,SIZE_B_PLUS_HEADER);
104 memcpy(memnode->claves,disknode+SIZE_B_PLUS_HEADER,idx->size_claves);
105 memcpy(memnode->hijos,disknode+SIZE_B_PLUS_HEADER+idx->size_claves,idx->size_hijos);
108 printf("Dumping Node_%i\n",num_node);
109 printf("Nivel: %i Cant Claves: %i\n",memnode->nivel,memnode->cant_claves);
111 for (i = 0; i < idx->size_claves/sizeof(int); ++i) printf(" %i",memnode->claves[i]);
113 for (i = 0; i < idx->size_hijos/sizeof(int); ++i) printf(" %i",memnode->hijos[i]);
114 printf("\nEnd Dump\n");
120 int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node)
124 fp = fopen(idx->filename, "r+");
125 if (fp == NULL) return -1;
127 fseek(fp,num_node*sizeof(NODO_B_PLUS),SEEK_SET);
128 fwrite(nodo,SIZE_B_PLUS_HEADER,1,fp);
129 fwrite(nodo->claves,idx->size_claves,1,fp);
130 fwrite(nodo->hijos,idx->size_hijos,1,fp);