]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/b_plus.c
Minor Bug fix en insertar_non_full, plus agregado de funcion recursiva get_bloque...
[z.facultad/75.06/emufs.git] / emufs / b_plus.c
index f061515c5b506c1afc6f5a74c0db1ec8b69ef96c..863f07046a8571e102da4acbd169bd6dea9f6b91 100644 (file)
@@ -1,7 +1,6 @@
 /** Arbol B+ */
 #include "b_plus.h"
 /** Arbol B+ */
 #include "b_plus.h"
-#include <math.h>
-
+#define INDEXSPECS INDICE
 /**#*#*#*#*#**#*#*#*#*#* Private prototypes*#*#*#*#*#**#*#*#*#*#**#*#*#*/
 /* numerando los bloques */
 int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node);
 /**#*#*#*#*#**#*#*#*#*#* Private prototypes*#*#*#*#*#**#*#*#*#*#**#*#*#*/
 /* numerando los bloques */
 int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node);
@@ -126,101 +125,58 @@ int b_plus_insertar_clave(INDEXSPECS *idx, INDEX_DAT *query)
        return 0;
 }
 
        return 0;
 }
 
-/** Busca el nro de bloque donde se debe guardar un reg con clave X */
-/** Si la clave entra en la raiz, la guarda, si no, busca el nodo hoja
-    donde debe ir y devuelve el bloque (en query) pero no graba la clave */
-/** Devuelve -1 si no hay un bloque donde insertar la nueva clave */
-int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query) {
+/** Busca el nro de bloque donde se debe guardar un reg con clave X.
+ *  Posibilidades: return 0 - Encontro un bloque potencial
+ *                 return -1 - No hay clave, inserto clave de nuevo bloques
+ *                 return 1 - Hubo falla de lectura de un nodo, Abortar
+ */
+int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query, int num_node) {
 
 
-    NODO_B_PLUS *curnode;
-       int i, prox_nodo;
-       /* 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;
-       /* Me fijo si la raiz esta vacia */
-       if ( curnode->cant_claves == 0 ){ /* entra la clave en la raiz */ 
-               /* ojo que este es un caso muy particular */
-               /* aumento la cant de claves*/
-               curnode->cant_claves++;
-               /* inserto la clave en el nodo, como es la primera no hace falta ordenar nada*/
-               *(curnode->claves) = query->clave.i_clave;
-               /* En query->num_bloque viene un numero de bloque nuevo valido..*/
-               /* Le asigno al nodo del arbol el mismo numero que venia en query*/
-               *(curnode->hijos) = query->num_bloque;
-               /* Cargado el query salgo de la func, luego habra que actualizar el .dat */
-               /*grabo el nodo en el archivo*/
-               b_plus_grabar_nodo(idx, curnode, 0);
-               /* librero el nodo */
-               b_plus_destruir_nodo(curnode);
-               return 0;
-       } 
-       PERR("TENGO LA HOJA");  
-       /* Mientras no encontre la hoja con la clave, busco.. */
-       /* RECORDAR QUE LAS CLAVES DEBEN ESTAR ORDENADAS PARA QUE ESTO FUNCIONE !! */ 
-       while (curnode->nivel > 0 && curnode){  
-               /*recorro las claves hasta encontrar la primera mayor a la que quiero insertar*/
-               for(i=0; i<curnode->cant_claves; i++){ 
-                       /* me fijo que si es mayor */
-                       if ( (query->clave.i_clave > curnode->claves[i])) {
-                               if ( curnode->cant_claves != i ) /* si no es la ultima clave del nodo */
-                                       continue; /*paso a la siguiente*/
-                               else {  /* si era la ultima, la clave deberia ir ahi */
-                                       /*cargo el proximo nodo*/
-                                       prox_nodo = curnode->hijos[i+1];
-                                       break; /*salgo del for*/
-                               }
-                       } else {  /*si no es mayor o igual es menor*/
-                               prox_nodo = curnode->hijos[i];
-                               break;
-                       }
-               }
-               b_plus_destruir_nodo(curnode);
-               curnode = b_plus_leer_nodo(idx, prox_nodo);
-       } 
+       NODO_B_PLUS *nodo;
+       nodo = b_plus_leer_nodo(idx,num_node);
+       if (nodo == NULL) return 1;
+       int i = nodo->cant_claves - 1;
+       int exitcode = 0;
        
        
-       /*cuando salgo de aca deberia tener cargado en curnode el nodo hoja que busque*/
-       for (i=0; i<curnode->cant_claves-1; i++){
-               if ( query->clave.i_clave >= curnode->claves[i] ){
-                       if ( curnode->cant_claves != i ) /* si no es la ultima clave */
-                               continue;
-                       else {   /* si era la ultima */
-                               /* Cargo en query el numero del bloque donde deberia ir la nueva clave */
-                               query->num_bloque = curnode->hijos[i];
-                               b_plus_destruir_nodo(curnode);
-                               return 0;
-                       }
-               } else {  /* si no era mayor, era menor */
-                       if ( i == 0 ){ 
-                                                               
-                               /* ACA PODRIAMOS RETORNAR -1 COMO CODIGO DE ERROR QUE INFORMARIA QUE NO EXISTE 
-                                  UN NODO DONDE QUEPA LA CLAVE, ENTONCES HABRIA QUE LLAMAR A LA FUNCION QUE
-                                  ACTUALIZA EL ARBOL Y SE ENCARGA DE ARGREGAR LA CLAVE Y HACER EL SPLIT DE SER 
-                                  NECESARIO */
-                               /* Llamo a la funcion que mete una clave nueva en el arbol y le paso el bloque a donde 
-                                  tiene que apuntar */
-                               b_plus_insertar_clave(idx, query);
-                               b_plus_destruir_nodo(curnode);
-                               return 1; /* SE INSERTO NODO NUEVO */
-                       } else {
-                               query->num_bloque = curnode->hijos[i-1];
-                               b_plus_destruir_nodo(curnode);
-                               return 0;
-                       }
+       /* Si es un hoja, busco dentro de la hoja, otherwise, busco la hoja */
+       if (nodo->nivel == 0) {
+        /* Vemos en que bloque deberia ir */
+               while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ) i--;
+               if (i < 0) {
+                       /* La clave es menor que todas, debo insertarla */
+                       b_plus_destruir_nodo(nodo);                     
+                       emufs_b_plus_insertar(idx,query);                       
+                       return -1;
+               }
+               else {
+                       /* Encontre un bloque potencial */
+                       query->num_bloque = nodo->hijos[i];
+                       b_plus_destruir_nodo(nodo);                     
+                       return 0;
                }
        }
                }
        }
-
-       if (curnode) b_plus_destruir_nodo(curnode);
-       return 0;
+       else {
+               /* Buscamos por donde descender al siguiente nivel */
+               while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ) i--;
+        i++;
+        num_node = nodo->hijos[i];
+               b_plus_destruir_nodo(nodo);
+               exitcode = emufs_b_plus_get_bloque(idx,query,num_node);
+               return exitcode;                
+       }
 }
 
 NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) {
 
 }
 
 NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) {
 
-       int i = 0;
+       /*int i = 0;*/
        FILE *fp;
        NODO_B_PLUS *memnode = b_plus_crearnodo(idx);   
        char *disknode = (char*)malloc(idx->tam_bloque);
        
        FILE *fp;
        NODO_B_PLUS *memnode = b_plus_crearnodo(idx);   
        char *disknode = (char*)malloc(idx->tam_bloque);
        
+       if (num_node < 0) {
+               PERR("Se intento leer nodo negativo!!\n");
+               exit(1);
+       }
        if (disknode == NULL) return NULL;
        if (memnode == NULL) return NULL;
        
        if (disknode == NULL) return NULL;
        if (memnode == NULL) return NULL;
        
@@ -247,13 +203,13 @@ NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) {
        memcpy(memnode->hijos,disknode+SIZE_B_PLUS_HEADER+idx->size_claves,idx->size_hijos);
        free(disknode);
        
        memcpy(memnode->hijos,disknode+SIZE_B_PLUS_HEADER+idx->size_claves,idx->size_hijos);
        free(disknode);
        
-       printf("Dumping Node_%i\n",num_node);
+       /*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("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"); 
+       printf("\nEnd Dump\n"); */
        
        return memnode;
        
        
        return memnode;
        
@@ -305,15 +261,15 @@ int b_plus_split_child(INDEXSPECS *idx, int numparent, NODO_B_PLUS *parent, int
        for (j = 0; j < brother->cant_claves; ++j)
                brother->claves[j] = fullnode->claves[j+minclaves+es_interno];
        
        for (j = 0; j < brother->cant_claves; ++j)
                brother->claves[j] = fullnode->claves[j+minclaves+es_interno];
        
-       /* Copio los hijos ya sea para hoja o no hoja. Copia Chain Also! */
+       /* Copio los hijos ya sea para hoja o no hoja. */
        for (j = 0; j < brother->cant_claves+1; ++j)
                brother->hijos[j] = fullnode->hijos[j+minclaves+es_interno];
        
        /* Ahora me ocupo del nodo que se partio */
        fullnode->cant_claves = minclaves;
        for (j = 0; j < brother->cant_claves+1; ++j)
                brother->hijos[j] = fullnode->hijos[j+minclaves+es_interno];
        
        /* Ahora me ocupo del nodo que se partio */
        fullnode->cant_claves = minclaves;
-       /* Obtengo numero de nodo para brother, para encadenar */
+       /* Obtengo numero de nodo para brother y encadeno si es hoja */
        numbrother = b_plus_get_num_nodo(idx);
        numbrother = b_plus_get_num_nodo(idx);
-       fullnode->hijos[idx->size_hijos/sizeof(int)-1] = numbrother;
+       if (fullnode->nivel == 0) fullnode->hijos[minclaves] = numbrother;
        
        /* Ahora fixeamos el padre, apuntando al nuevo hijo */
        for (j = parent->cant_claves; j > ithchild; --j)
        
        /* Ahora fixeamos el padre, apuntando al nuevo hijo */
        for (j = parent->cant_claves; j > ithchild; --j)
@@ -331,6 +287,8 @@ int b_plus_split_child(INDEXSPECS *idx, int numparent, NODO_B_PLUS *parent, int
        b_plus_grabar_nodo(idx,brother,numbrother);
        b_plus_grabar_nodo(idx,parent,numparent);
        
        b_plus_grabar_nodo(idx,brother,numbrother);
        b_plus_grabar_nodo(idx,parent,numparent);
        
+       b_plus_destruir_nodo(brother);
+       
        return 0;
 }
 
        return 0;
 }
 
@@ -344,6 +302,7 @@ int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDE
     if ( nodo->nivel == 0 ){
         while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ){
             nodo->claves[i+1] = nodo->claves[i];
     if ( nodo->nivel == 0 ){
         while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ){
             nodo->claves[i+1] = nodo->claves[i];
+                       nodo->hijos[i+2] = nodo->hijos[i+1];
                        nodo->hijos[i+1] = nodo->hijos[i];
             i--;
         }
                        nodo->hijos[i+1] = nodo->hijos[i];
             i--;
         }
@@ -351,8 +310,6 @@ int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDE
                nodo->hijos[i+1] = query->num_bloque;
         nodo->cant_claves++;
         b_plus_grabar_nodo(idx, nodo, num_nodo);
                nodo->hijos[i+1] = query->num_bloque;
         nodo->cant_claves++;
         b_plus_grabar_nodo(idx, nodo, num_nodo);
-               b_plus_destruir_nodo(nodo);             
-               printf("Pero men yo grabee..\n");
     } else { 
         while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ) 
             i--;
     } else { 
         while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ) 
             i--;
@@ -364,16 +321,16 @@ int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDE
             if ( query->clave.i_clave > nodo->claves[i] )
                 i++;
         }
             if ( query->clave.i_clave > nodo->claves[i] )
                 i++;
         }
-               b_plus_destruir_nodo(hijo);
+               if (hijo) b_plus_destruir_nodo(hijo);
                hijo = b_plus_leer_nodo(idx, nodo->hijos[i]);
         b_plus_insert_nonfull(idx, hijo, nodo->hijos[i], query);
                hijo = b_plus_leer_nodo(idx, nodo->hijos[i]);
         b_plus_insert_nonfull(idx, hijo, nodo->hijos[i], query);
-               b_plus_destruir_nodo(hijo);     
+               if (hijo) b_plus_destruir_nodo(hijo);   
     }
        
        return 0;
 }    
 
     }
        
        return 0;
 }    
 
-int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query)
+int emufs_b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query)
 {
     NODO_B_PLUS *raiz;
     
 {
     NODO_B_PLUS *raiz;
     
@@ -386,11 +343,13 @@ int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query)
         b_plus_grabar_nodo(idx, new_root, 0);
            b_plus_split_child(idx, 0, new_root, 0, raiz);
         b_plus_insert_nonfull(idx, new_root, 0, query);
         b_plus_grabar_nodo(idx, new_root, 0);
            b_plus_split_child(idx, 0, new_root, 0, raiz);
         b_plus_insert_nonfull(idx, new_root, 0, query);
+               b_plus_destruir_nodo(new_root);
     } else 
        {
     } else 
        {
-               printf ("Entre maaaaaallll\n");
                b_plus_insert_nonfull(idx, raiz, 0, query);
        }
                b_plus_insert_nonfull(idx, raiz, 0, query);
        }
+       
+       b_plus_destruir_nodo(raiz);
     
     return 0;
 }
     
     return 0;
 }