]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/b_plus.c
insertar ordenado por la mitad para tipo1, despues copio y pego para tipo3, deberia...
[z.facultad/75.06/emufs.git] / emufs / b_plus.c
index 20eac04c47192926ba7673fb807a13fec062e51e..462a237482a4a43550ba500bec6a1235f7b8f38a 100644 (file)
@@ -221,6 +221,10 @@ NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num_node) {
        NODO_B_PLUS *memnode = b_plus_crearnodo(idx);   
        char *disknode = (char*)malloc(idx->tam_bloque);
        
        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;
        
@@ -287,6 +291,7 @@ int b_plus_split_child(INDEXSPECS *idx, int numparent, NODO_B_PLUS *parent, int
 {
        /* locals */
        int minclaves = ceil(idx->size_hijos/sizeof(int)/2)-1;
 {
        /* locals */
        int minclaves = ceil(idx->size_hijos/sizeof(int)/2)-1;
+       int maxhijos = idx->size_hijos/sizeof(int);
        int numbrother,j = 0;
        int es_interno = 1;
        
        int numbrother,j = 0;
        int es_interno = 1;
        
@@ -305,15 +310,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 +336,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;
 }
 
@@ -340,34 +347,38 @@ int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDE
     int i, num_nodo_hijo;
     NODO_B_PLUS *hijo;
     
     int i, num_nodo_hijo;
     NODO_B_PLUS *hijo;
     
-    i = nodo->cant_claves;
+    i = nodo->cant_claves-1; 
     if ( nodo->nivel == 0 ){
     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->claves[i+1] = nodo->claves[i];
+                       nodo->hijos[i+1] = nodo->hijos[i];
             i--;
         }
         nodo->claves[i+1] = query->clave.i_clave;
             i--;
         }
         nodo->claves[i+1] = query->clave.i_clave;
+               nodo->hijos[i+1] = query->num_bloque;
         nodo->cant_claves++;
         nodo->cant_claves++;
-        b_plus_destruir_nodo(nodo);
         b_plus_grabar_nodo(idx, nodo, num_nodo);
     } else { 
         b_plus_grabar_nodo(idx, nodo, num_nodo);
     } else { 
-        while ( i >= 1 && query->clave.i_clave < nodo->claves[i] ) 
+        while ( i >= 0 && query->clave.i_clave < nodo->claves[i] ) 
             i--;
         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) ) {
         hijo = b_plus_leer_nodo(idx, num_nodo_hijo);
         if ( hijo->cant_claves == idx->size_claves/sizeof(int) ) {
-            b_plus_split_child(idx, 9999, nodo, i, hijo);
+            b_plus_split_child(idx, num_nodo, nodo, i, hijo);
             if ( query->clave.i_clave > nodo->claves[i] )
                 i++;
         }
             if ( query->clave.i_clave > nodo->claves[i] )
                 i++;
         }
-        b_plus_insert_nonfull(idx, hijo, num_nodo_hijo, query);
+               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);
+               if (hijo) b_plus_destruir_nodo(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;
     
@@ -380,11 +391,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 
        {
                b_plus_insert_nonfull(idx, raiz, 0, query);
     } else 
        {
                b_plus_insert_nonfull(idx, raiz, 0, query);
-               printf ("Entre maaaaaallll\n");
        }
        }
+       
+       b_plus_destruir_nodo(raiz);
     
     return 0;
 }
     
     return 0;
 }