]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indice_b.c
Borro files en 0 bytes
[z.facultad/75.06/emufs.git] / emufs / indice_b.c
index f3fd08f0fa205d4813137c0873fc3c93fda18661..96ada554ae0cab8d68ae2509c9bb9889a16e34e1 100644 (file)
@@ -1,5 +1,6 @@
 
 #include "indice_b.h"
 
 #include "indice_b.h"
+#include "common.h"
 
 /* Cantidad de claves por nodo */
 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
 
 /* Cantidad de claves por nodo */
 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
@@ -14,8 +15,9 @@ static char *b_crear_nodo(INDICE *idx, int *i);
 static void b_leer_header(char *src, B_NodoHeader *header);
 static void b_actualizar_header(char *src, B_NodoHeader *header);
 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
 static void b_leer_header(char *src, B_NodoHeader *header);
 static void b_actualizar_header(char *src, B_NodoHeader *header);
 static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
-static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo_id, char *nodo, int hijo1, int hijo2);
-const int b_elegir_izquierdo(INDICE *idx, int a, int b);
+static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
+static int b_elegir_izquierdo(INDICE *idx, int a, int b);
+static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k);
 
 void emufs_indice_b_crear(INDICE *idx)
 {
 
 void emufs_indice_b_crear(INDICE *idx)
 {
@@ -29,6 +31,12 @@ void emufs_indice_b_crear(INDICE *idx)
        header.hijo_izquierdo = -1;
 
        fp = fopen(idx->filename, "w");
        header.hijo_izquierdo = -1;
 
        fp = fopen(idx->filename, "w");
+       PERR("Creando indice");
+       fprintf(stderr, "Archivo = (%s)\n", idx->filename);
+       if (fp == NULL) {
+               PERR("Error al crear el archivo");
+               return;
+       }
        
        /* Creo el archivo con el Nodo raiz */
        bloque = (char *)malloc(idx->tam_bloque);
        
        /* Creo el archivo con el Nodo raiz */
        bloque = (char *)malloc(idx->tam_bloque);
@@ -40,7 +48,7 @@ void emufs_indice_b_crear(INDICE *idx)
        fclose(fp);
 }
 
        fclose(fp);
 }
 
-int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, int ubicacion)
+int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
 {
        int i, nodo_id, padre_id;
        B_NodoHeader header;
 {
        int i, nodo_id, padre_id;
        B_NodoHeader header;
@@ -64,21 +72,11 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, int ubicacion)
                        return 0;
                } else {
                        if (i == 0) {
                        return 0;
                } else {
                        if (i == 0) {
-                               if (header.nivel != 0) {
-                                       nodo = b_leer_nodo(idx, header.hijo_izquierdo);
-                                       nodo_id = header.hijo_izquierdo;
-                               } else {
-                                       nodo = NULL;
-                                       nodo_id = -1;
-                               }
+                               nodo = b_leer_nodo(idx, header.hijo_izquierdo);
+                               nodo_id = header.hijo_izquierdo;
                        } else {
                        } else {
-                               if (header.nivel != 0) {
-                                       nodo = b_leer_nodo(idx, claves[i-1].ubicacion);
-                                       nodo_id = claves[i-1].ubicacion;
-                               } else {
-                                       nodo = NULL;
-                                       nodo_id = -1;
-                               }
+                               nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
+                               nodo_id = claves[i-1].hijo_derecho;
                        }
                }
        }
                        }
                }
        }
@@ -86,13 +84,14 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, int ubicacion)
        if (nodo) free(nodo);
        nodo = padre;
        nodo_id = padre_id;
        if (nodo) free(nodo);
        nodo = padre;
        nodo_id = padre_id;
-       b_insertar_en_nodo(idx, clave, ubicacion, nodo_id, nodo, -1, -1);
+       b_insertar_en_nodo(idx, clave, dato, nodo_id, nodo, -1, -1);
        return 1; /* Agregar OK! */
 }
 
        return 1; /* Agregar OK! */
 }
 
-int emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
+INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
 {
 {
-       int i, ret;
+       int i;
+       INDICE_DATO ret;
        B_NodoHeader header;
        B_NodoEntry *claves;
        char *nodo, *tmp;
        B_NodoHeader header;
        B_NodoEntry *claves;
        char *nodo, *tmp;
@@ -105,7 +104,7 @@ int emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
                i=0;
                while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
                if (emufs_indice_es_igual(idx, claves[i].clave, clave)) {
                i=0;
                while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
                if (emufs_indice_es_igual(idx, claves[i].clave, clave)) {
-                               ret = claves[i].ubicacion;
+                               ret = claves[i].dato;
                                free(nodo);
                                return ret;
                } else {
                                free(nodo);
                                return ret;
                } else {
@@ -113,14 +112,59 @@ int emufs_indice_b_buscar(INDICE *idx, CLAVE clave)
                        if (i == 0) {
                                nodo = b_leer_nodo(idx, header.hijo_izquierdo);
                        } else {
                        if (i == 0) {
                                nodo = b_leer_nodo(idx, header.hijo_izquierdo);
                        } else {
-                               nodo = b_leer_nodo(idx, claves[i-1].ubicacion);
+                               nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
                        }
                        free(tmp);
                }
        }
 
        /* Nodo no encontrado */
                        }
                        free(tmp);
                }
        }
 
        /* Nodo no encontrado */
-       return -1;
+       ret.id = ret.bloque = -1;
+       return ret;
+}
+
+int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
+{
+       /* Busco el nodo que contiene la clave,si es que esta existe */
+       char *nodo;
+       int nodo_id, i;
+       char encontrado=0;
+       B_NodoHeader header;
+       B_NodoEntry *claves;
+
+       nodo_id = 0; /* Tomo la raiz */
+       nodo = b_leer_nodo(idx, nodo_id);
+       PERR("Buscando clave a borrar");
+       while (nodo && !encontrado) {
+               /* Obtengo los datos del nodo */
+               b_leer_header(nodo, &header);
+               claves = b_leer_claves(nodo, &header);
+
+               i=0;
+               while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
+
+               if ((emufs_indice_es_igual(idx, claves[i].clave, k)) && (i<header.cant))
+                       encontrado = 1;
+               else {
+                       if (i==0) {
+                               free(nodo);
+                               nodo_id = header.hijo_izquierdo;
+                               nodo = b_leer_nodo(idx, nodo_id);
+                       } else {
+                               nodo_id = claves[i-1].hijo_derecho;
+                               free(nodo);
+                               nodo = b_leer_nodo(idx, nodo_id);
+                       }
+               }
+       }
+
+       if (encontrado) {
+               PERR("Clave encontrada, borrando ...");
+               b_borrar_clave(idx, nodo, nodo_id, k);
+       } else {
+               PERR("Clave no encontrada");
+       }
+       return 0;
 }
 
 static int b_ultimo_id(INDICE *idx)
 }
 
 static int b_ultimo_id(INDICE *idx)
@@ -230,7 +274,7 @@ static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
        return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
 }
 
        return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
 }
 
-static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo_id, char *nodo, int hijo1, int hijo2)
+static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
 {
        char *padre, *nuevo;
        int nuevo_id;
 {
        char *padre, *nuevo;
        int nuevo_id;
@@ -262,7 +306,9 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo
                                i++;
                        }
                        tmp_claves[i].clave = clave;
                                i++;
                        }
                        tmp_claves[i].clave = clave;
-                       tmp_claves[i].ubicacion = ubicacion;
+                       tmp_claves[i].dato = dato;
+                       tmp_claves[i].hijo_derecho = hijo1;
+                       tmp_claves[i+1].hijo_derecho = hijo2;
                        while (i < nodo_header.cant) {
                                tmp_claves[i+1] = claves[i];
                                i++;
                        while (i < nodo_header.cant) {
                                tmp_claves[i+1] = claves[i];
                                i++;
@@ -289,7 +335,7 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo
 
                        if (nodo_id != 0) {
                                clave = tmp_claves[total/2].clave;
 
                        if (nodo_id != 0) {
                                clave = tmp_claves[total/2].clave;
-                               ubicacion = nuevo_id;
+                               /* XXX dato.bloque = nuevo_id; */
 
                                b_grabar_nodo(idx, nodo_id, nodo);
                                b_grabar_nodo(idx, nuevo_id, nuevo);
 
                                b_grabar_nodo(idx, nodo_id, nodo);
                                b_grabar_nodo(idx, nuevo_id, nuevo);
@@ -312,7 +358,7 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo
                                nodo = tmp_nuevo;
        
                                clave = tmp_claves[total/2].clave;
                                nodo = tmp_nuevo;
        
                                clave = tmp_claves[total/2].clave;
-                               ubicacion = nuevo_id;
+                               /* XXX dato.bloque = nuevo_id; */
 
                                b_grabar_nodo(idx, nuevo_id+1, nodo);
                                b_grabar_nodo(idx, nuevo_id, nuevo);
 
                                b_grabar_nodo(idx, nuevo_id+1, nodo);
                                b_grabar_nodo(idx, nuevo_id, nuevo);
@@ -349,7 +395,8 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo
                        }
                        nodo_header.cant++;
                        claves[i].clave = clave;
                        }
                        nodo_header.cant++;
                        claves[i].clave = clave;
-                       claves[i].ubicacion = ubicacion;
+                       claves[i].dato = dato;
+                       claves[i].hijo_derecho = hijo2;
                        nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
 
                        b_actualizar_header(nodo, &nodo_header);
                        nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
 
                        b_actualizar_header(nodo, &nodo_header);
@@ -381,7 +428,7 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, int ubicacion, int nodo
        } while (!salir);
 }
 
        } while (!salir);
 }
 
-const int b_elegir_izquierdo(INDICE *idx, int a, int b)
+static int b_elegir_izquierdo(INDICE *idx, int a, int b)
 {
        int cual;
        char *nodo1, *nodo2;
 {
        int cual;
        char *nodo1, *nodo2;
@@ -410,3 +457,72 @@ const int b_elegir_izquierdo(INDICE *idx, int a, int b)
        return cual;
 }
 
        return cual;
 }
 
+INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant)
+{
+       /* Si el indice es primario no tiene sentido hacer nada */
+       if (idx->funcion == IND_PRIMARIO) {
+               *cant = 0;
+               return NULL;
+       }
+
+       /* TODO Implementar indices con repeticion */
+       return NULL;
+}
+
+static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
+{
+       int pos, actual_id, i;
+       B_NodoHeader header, header_actual;
+       B_NodoEntry *claves, *claves_actual;
+       char *actual;
+
+       b_leer_header(nodo, &header);
+       claves = b_leer_claves(nodo, &header);
+
+       pos = 0;
+       /* Busco la posicion dentro de la lista de claves */
+       while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
+
+       /* Es el nodo una hoja? */
+       if (header.hijo_izquierdo != -1) {
+               /* No!, es un nodo intermedio!! */
+               if (pos == 0)
+                       actual = b_leer_nodo(idx, header.hijo_izquierdo);
+               else
+                       actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho);
+
+               b_leer_header(actual, &header_actual);
+               while (header_actual.hijo_izquierdo != -1) {
+                       actual_id = header_actual.hijo_izquierdo;
+                       free(actual);
+                       actual = b_leer_nodo(idx, actual_id);
+                       b_leer_header(actual, &header_actual);
+               }
+               claves_actual = b_leer_claves(actual, &header);
+
+               claves[pos] = claves_actual[0];
+               pos = 0;
+               b_grabar_nodo(idx, nodo_id, nodo);
+       } else {
+               actual = nodo;
+       }
+
+       /* Borro la clave */
+       for(i=pos; i < header_actual.cant; i++) {
+               claves_actual[i] = claves_actual[i+1];
+       }
+       header_actual.cant--;
+       /* Guardo los cambios */
+       b_actualizar_header(actual, &header_actual);
+       b_grabar_nodo(idx, actual_id, actual);
+
+       /* Se cumple la condicion de hijos? */
+       if (header_actual.cant >= MIN_HIJOS(idx)) {
+               PERR("Borrar completo sin fundir");
+               return;
+       }
+
+       /* Tengo que pasar datos o fundir nodos :-( */
+       PERR("TODO : FUNDIR NODOS!!!!\n");
+}
+