]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/b_plus.c
* BUGFIX : Habia un error al borrar claves que no estaban en las hojas.
[z.facultad/75.06/emufs.git] / emufs / b_plus.c
index 757a2573da50d05d558d356425953a75be3b1ba9..f061515c5b506c1afc6f5a74c0db1ec8b69ef96c 100644 (file)
@@ -1,5 +1,6 @@
 /** Arbol B+ */
 #include "b_plus.h"
+#include <math.h>
 
 /**#*#*#*#*#**#*#*#*#*#* Private prototypes*#*#*#*#*#**#*#*#*#*#**#*#*#*/
 /* numerando los bloques */
@@ -8,9 +9,10 @@ int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node);
 NODO_B_PLUS *b_plus_crearnodo(INDEXSPECS *idx);
 int b_plus_destruir_nodo(NODO_B_PLUS *nodo);
 /*int b_plus_insertar_clave(INDEXSPECS *idx, INDEX_DAT *query);*/
-int b_plus_split_child(INDEXSPECS *idx, NODO_B_PLUS *parent, int ithchild, NODO_B_PLUS *fullnode);
+int b_plus_split_child(INDEXSPECS *idx, int numparent, NODO_B_PLUS *parent, int ithchild, NODO_B_PLUS *fullnode);
 int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDEX_DAT *query);
 int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query);
+int b_plus_get_num_nodo(INDEXSPECS *idx);
 /**#*#*#*#*#**#*#*#*#*#*FIN PROTOTYPES*#*#*#*#*#**#*#*#*#*#**#*#*#*#*#*/
 
 /** Crea un nuevo nodo y lo inicializa */
@@ -61,8 +63,9 @@ int emufs_b_plus_crear(INDEXSPECS *idx) {
 /* Inserta una nueva clave y reestructura el arbol para que quede como debe */
 int b_plus_insertar_clave(INDEXSPECS *idx, INDEX_DAT *query)
 {
-       NODO_B_PLUS *curnode, *padre, *new_nodo;
-       int i,j, prox_nodo;
+       NODO_B_PLUS *curnode, *padre;
+       int i,j, prox_nodo = 0;
+       
        /* Comienzo leyendo la raiz, entry point de toda funcion */
        curnode = b_plus_leer_nodo(idx,0);      
        if (curnode == NULL) return -1;
@@ -110,6 +113,7 @@ int b_plus_insertar_clave(INDEXSPECS *idx, INDEX_DAT *query)
                free(curnode->hijos);
                curnode->claves = claves_aux;
                curnode->hijos = hijos_aux;
+               printf ("Prox Nodo es: %i\n",prox_nodo);
                b_plus_grabar_nodo(idx, curnode, prox_nodo);
                b_plus_destruir_nodo(curnode);
        }
@@ -262,7 +266,7 @@ int b_plus_grabar_nodo(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_node)
        fp = fopen(idx->filename, "r+");
        if (fp == NULL) return -1;
                
-       fseek(fp,num_node*sizeof(NODO_B_PLUS),SEEK_SET);        
+       fseek(fp,num_node*(SIZE_B_PLUS_HEADER+idx->size_claves+idx->size_hijos),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);
@@ -279,11 +283,11 @@ int b_plus_destruir_nodo(NODO_B_PLUS *nodo)
        return 0;
 }
 
-int b_plus_split_child(INDEXSPECS *idx, NODO_B_PLUS *parent, int ithchild, NODO_B_PLUS *fullnode)
+int b_plus_split_child(INDEXSPECS *idx, int numparent, NODO_B_PLUS *parent, int ithchild, NODO_B_PLUS *fullnode)
 {
        /* locals */
        int minclaves = ceil(idx->size_hijos/sizeof(int)/2)-1;
-       int j = 0;
+       int numbrother,j = 0;
        int es_interno = 1;
        
        NODO_B_PLUS *brother = b_plus_crearnodo(idx);
@@ -309,7 +313,7 @@ int b_plus_split_child(INDEXSPECS *idx, NODO_B_PLUS *parent, int ithchild, NODO_
        fullnode->cant_claves = minclaves;
        /* Obtengo numero de nodo para brother, para encadenar */
        numbrother = b_plus_get_num_nodo(idx);
-       fullnode->hijos[idx->cant_claves+1] = numbrother;
+       fullnode->hijos[idx->size_hijos/sizeof(int)-1] = numbrother;
        
        /* Ahora fixeamos el padre, apuntando al nuevo hijo */
        for (j = parent->cant_claves; j > ithchild; --j)
@@ -320,6 +324,14 @@ int b_plus_split_child(INDEXSPECS *idx, NODO_B_PLUS *parent, int ithchild, NODO_
        for (j = parent->cant_claves-1; j >= ithchild; --j)
                parent->claves[j+1] = parent->claves[j];
        parent->claves[ithchild] = fullnode->claves[minclaves];
+       parent->cant_claves++;
+       
+       /* Grabo los nodos en disco */
+       b_plus_grabar_nodo(idx,fullnode,parent->hijos[ithchild]);
+       b_plus_grabar_nodo(idx,brother,numbrother);
+       b_plus_grabar_nodo(idx,parent,numparent);
+       
+       return 0;
 }
 
 
@@ -328,31 +340,37 @@ int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDE
     int i, num_nodo_hijo;
     NODO_B_PLUS *hijo;
     
-    i = nodo->cant_claves;
+    i = nodo->cant_claves-1; 
     if ( nodo->nivel == 0 ){
-        while ( i >= 1 && query->clave.i_clave < nodo->claves[i] ){
+        while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ){
             nodo->claves[i+1] = nodo->claves[i];
+                       nodo->hijos[i+1] = nodo->hijos[i];
             i--;
         }
         nodo->claves[i+1] = query->clave.i_clave;
+               nodo->hijos[i+1] = query->num_bloque;
         nodo->cant_claves++;
-        b_plus_destruir_nodo(nodo);
         b_plus_grabar_nodo(idx, nodo, num_nodo);
+               b_plus_destruir_nodo(nodo);             
+               printf("Pero men yo grabee..\n");
     } else { 
-        while ( i >= 1 && query->clave.i_clave < nodo->claves[i] ) 
+        while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ) 
             i--;
         i++;
-        num_nodo_hijo = nodo->hijos[i-1];
+        num_nodo_hijo = nodo->hijos[i];
         hijo = b_plus_leer_nodo(idx, num_nodo_hijo);
         if ( hijo->cant_claves == idx->size_claves/sizeof(int) ) {
-            b_plus_split_child(idx, nodo, i, hijo);
+            b_plus_split_child(idx, num_nodo, nodo, i, hijo);
             if ( query->clave.i_clave > nodo->claves[i] )
                 i++;
         }
-        b_plus_insert_nonfull(idx, hijo, num_nodo_hijo, query);
+               b_plus_destruir_nodo(hijo);
+               hijo = b_plus_leer_nodo(idx, nodo->hijos[i]);
+        b_plus_insert_nonfull(idx, hijo, nodo->hijos[i], query);
+               b_plus_destruir_nodo(hijo);     
     }
-    b_plus_destruir_nodo(hijo);
-    return 0;
+       
+       return 0;
 }    
 
 int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query)
@@ -366,27 +384,27 @@ int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query)
         new_root->hijos[0] = b_plus_get_num_nodo(idx);
         b_plus_grabar_nodo(idx, raiz, new_root->hijos[0]);
         b_plus_grabar_nodo(idx, new_root, 0);
-        b_plus_split_child(idx, new_root, 1, raiz);
+           b_plus_split_child(idx, 0, new_root, 0, raiz);
         b_plus_insert_nonfull(idx, new_root, 0, query);
-    } else b_plus_insert_nonfull(idx, raiz, 0, query);
+    } else 
+       {
+               printf ("Entre maaaaaallll\n");
+               b_plus_insert_nonfull(idx, raiz, 0, query);
+       }
     
     return 0;
 }
 
-int b_plus_split_child(INDEXSPECS *idx, NODO_B_PLUS *new_root, int i, NODO_B_PLUS* raiz)
-{
-    return 0;
-}
-
 int b_plus_get_num_nodo(INDEXSPECS *idx)
 {
        FILE *fp;
        int num;
        
-       fp = fopen(idx->filename, "r+");
+       fp = fopen(idx->filename, "ab");
        if (fp == NULL) return -1;
     
-    num = ftell(fp)/sizeof(NODO_B_PLUS);
+    num = ftell(fp)/(SIZE_B_PLUS_HEADER+idx->size_claves+idx->size_hijos);
+       printf("Num Nodo Nuevo: %i\n",num);
     fclose(fp);
     return num;
 }