]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
se acerca el momento que el arbol se empiece a armar
authorNicolás Dimov <ndimov@gmail.com>
Thu, 20 May 2004 04:09:57 +0000 (04:09 +0000)
committerNicolás Dimov <ndimov@gmail.com>
Thu, 20 May 2004 04:09:57 +0000 (04:09 +0000)
emufs/b_plus.c
emufs/b_plus.h

index 757d6c60e0fe22288a080097a48d031563ab269b..737825c82bea381ce54af7d1aef8e387488a7d59 100644 (file)
@@ -20,6 +20,7 @@ int get_new_block_number()
 NODO_B_PLUS *b_plus_crearnodo(INDEXSPECS *idx) {
        
        NODO_B_PLUS *nodo = (NODO_B_PLUS*)malloc(sizeof(NODO_B_PLUS));
+       if (nodo == NULL) return NULL;
        nodo->nivel = 0;
        nodo->cant_claves = 0;
 
@@ -60,6 +61,12 @@ int emufs_b_plus_crear(INDEXSPECS *idx) {
        return error;
 }
 
+/* Inserta un nuevo nodo y reestructura el arbol para que quede como debe */
+int b_plus_actualizar(NODO_B_PLUS *padre, NODO_B_PLUS *new_nodo)
+{
+       return 0;
+}
+
 /** 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) {
 
@@ -128,6 +135,24 @@ int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query) {
                        /* guardo el bloque anterior porque me pase.. */
                        if ( i == 0 ){ 
                                /*CREAR UN NODO NUEVO PARA METER UNA CLAVE MENOR A TODAS */
+                               /* EL NUEVO NODO VA A SER UNA HOJA */
+                               NODO_B_PLUS *new_nodo = b_plus_crearnodo(idx);
+                               if (new_nodo == NULL){
+                                       PERR("NO SE PUDO CREAR EL NUEVO NODO");
+                                       return -1;
+                               }
+                               /* aumento la cantidad de claves */
+                               new_nodo.cant_claves++;
+                               /* inserto la clave en el nuevo nodo (es la primera)*/
+                               new_nodo.claves[0] = query->clave.i_clave;
+                               /* inserto la referencia al nuevo bloque, con un n */
+                               new_nodo.hijos[0] = query->num_nuevo_bloque;
+                               /* no le cambio el nivel porque es hoja ( por default == 0)*/
+                               /* Aca viene la papota.. hay que hacer una funcion que meta un nodo 
+                                * en el arbol y lo reestructure correctamente.
+                                * Ademas hay que grabar el registro en el .dat*/
+                               b_plus_actualizar(curnode, new_nodo);  /* le mando el padre.. seguro que lo voy a necesitar */
+                               return 0;
                        } else {
                                query->num_bloque = curnode->hijos[i-1];
                                free(curnode);
index 564c3ae304a9a30d5f24eac396df322bf513d4c3..838fd97eb4b7a9fb76ae00a474e8d07d51eb31fb 100644 (file)
@@ -19,6 +19,7 @@ typedef struct _indexspecs_ {
 
 typedef struct _index_dat_ {
        EMUFS_BLOCK_ID num_bloque;
+       EMUFS_BLOCK_ID num_nuevo_bloque;
        CLAVE clave;
 } INDEX_DAT;