]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
Modifico el arbol b porque lo estaba haciendo mal (mal manejo de los datos y los...
authorRicardo Markiewicz <gazer.arg@gmail.com>
Thu, 13 May 2004 19:37:31 +0000 (19:37 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Thu, 13 May 2004 19:37:31 +0000 (19:37 +0000)
emufs/indice_b.c
emufs/indice_b.h
emufs_gui/articulos.c

index 2e0ff5d64f543cd62aa173a67bb200298394c693..9a9e9fe4bf73886cab0094037c4c58854bba6beb 100644 (file)
@@ -71,21 +71,11 @@ int emufs_indice_b_insertar(INDICE *idx, CLAVE clave, INDICE_DATO dato)
                        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].dato.bloque);
-                                       nodo_id = claves[i-1].dato.bloque;
-                               } else {
-                                       nodo = NULL;
-                                       nodo_id = -1;
-                               }
+                               nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
+                               nodo_id = claves[i-1].hijo_derecho;
                        }
                }
        }
                        }
                }
        }
@@ -121,7 +111,7 @@ INDICE_DATO 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].dato.bloque);
+                               nodo = b_leer_nodo(idx, claves[i-1].hijo_derecho);
                        }
                        free(tmp);
                }
                        }
                        free(tmp);
                }
@@ -272,6 +262,8 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int n
                        }
                        tmp_claves[i].clave = clave;
                        tmp_claves[i].dato = dato;
                        }
                        tmp_claves[i].clave = clave;
                        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++;
@@ -298,7 +290,7 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int n
 
                        if (nodo_id != 0) {
                                clave = tmp_claves[total/2].clave;
 
                        if (nodo_id != 0) {
                                clave = tmp_claves[total/2].clave;
-                               dato.bloque = 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);
@@ -321,7 +313,7 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int n
                                nodo = tmp_nuevo;
        
                                clave = tmp_claves[total/2].clave;
                                nodo = tmp_nuevo;
        
                                clave = tmp_claves[total/2].clave;
-                               dato.bloque = 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);
@@ -359,7 +351,8 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int n
                        nodo_header.cant++;
                        claves[i].clave = clave;
                        claves[i].dato = dato;
                        nodo_header.cant++;
                        claves[i].clave = clave;
                        claves[i].dato = dato;
-                       nodo_header.hijo_izquierdo = b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);
+                       claves[i].hijo_derecho = hijo2;
+                       nodo_header.hijo_izquierdo = hijo1; /*b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);*/
 
                        b_actualizar_header(nodo, &nodo_header);
                        b_grabar_nodo(idx, nodo_id, nodo);
 
                        b_actualizar_header(nodo, &nodo_header);
                        b_grabar_nodo(idx, nodo_id, nodo);
index 4385c61e2f886e5652101b215d9c932bacc72f53..7093de2a080eb9de11955fe73bfe358d2f13bbc8 100644 (file)
@@ -21,7 +21,6 @@ typedef struct _b_nodo_header_ {
 } B_NodoHeader;
 
 typedef struct _b_nodo_entry_ {
 } B_NodoHeader;
 
 typedef struct _b_nodo_entry_ {
-       /* FIXME usar tipo CLAVE */
        CLAVE clave;
        /* Si el nivel del nodo == 0, quiere decir que es el 
         * bloque del archivo de datos donde esta el registro.
        CLAVE clave;
        /* Si el nivel del nodo == 0, quiere decir que es el 
         * bloque del archivo de datos donde esta el registro.
@@ -29,6 +28,8 @@ typedef struct _b_nodo_entry_ {
         * del archivo de indice donde buscar
         */
        INDICE_DATO dato;
         * del archivo de indice donde buscar
         */
        INDICE_DATO dato;
+       /* El ID de la hoja de depliega a la derecha */
+       int hijo_derecho;
 } B_NodoEntry;
 
 /* Crea un arbol */
 } B_NodoEntry;
 
 /* Crea un arbol */
index 50219f8d622f4bfce66b78b6d2f1a135df941bdf..59a3f35cc0d72c817c3066905fb874a09a8c4319 100644 (file)
@@ -214,29 +214,23 @@ t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
        if (lst == NULL) lst = lst_articulos;
        if (lst == NULL) return NULL;
 
        if (lst == NULL) lst = lst_articulos;
        if (lst == NULL) return NULL;
 
-       fprintf(stderr, "Me piden que busque en el indice el codigo=%d\n", numero);
        (*id) = -1; /* XXX Ver que se hacia con esto */
        art = (t_Articulo *)malloc(sizeof(t_Articulo));
        /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
        error = 0;
        (*id) = -1; /* XXX Ver que se hacia con esto */
        art = (t_Articulo *)malloc(sizeof(t_Articulo));
        /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
        error = 0;
-       PERR("Genero clave");
        k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
        k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
-       PERR("Buscando en archivo");
        tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
        tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
-       PERR("Lo encontre?");
        if (error) {
                free(art);
                return NULL;
        }
 
        if (error) {
                free(art);
                return NULL;
        }
 
-       printf("SI LO ENCONTRE!!!!");
        if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
                free(art);
                free(tmp);
                return NULL;
        }
 
        if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
                free(art);
                free(tmp);
                return NULL;
        }
 
-       printf("RETORNANDO el articulo procesado");
        free(tmp);
        return art;
 }
        free(tmp);
        return art;
 }
@@ -379,11 +373,12 @@ void art_agregar(char *s)
        WINDOW *win;
        t_Form *form;
        t_Articulo art;
        WINDOW *win;
        t_Form *form;
        t_Articulo art;
-       t_Reg_Articulo *nuevo;
        void *save;
        int error = 0, existe;
        EMUFS_REG_SIZE size;
        EMUFS_REG_ID id;
        void *save;
        int error = 0, existe;
        EMUFS_REG_SIZE size;
        EMUFS_REG_ID id;
+       INDICE_DATO dato;
+       CLAVE k;
 
        win = newwin(9, COLS-2, 13, 1);
        box(win, 0, 0);
 
        win = newwin(9, COLS-2, 13, 1);
        box(win, 0, 0);
@@ -401,15 +396,11 @@ void art_agregar(char *s)
        
        art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
        existe = 0;
        
        art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
        existe = 0;
-       nuevo = lst_articulos->primero;
-       while (nuevo) {
-               if (art.numero == nuevo->numero) {
-                       existe = 1;
-                       break;
-               }
-               nuevo = nuevo->sig;
-       }
-       
+       /* Me dijo que no existe el codigo */
+       k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&art.numero);
+       dato = lst_articulos->fp->indices->existe_entrada(lst_articulos->fp->indices, k);
+       if (dato.id != -1) existe = 1;
+
        if (!existe) {
                strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
                strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
        if (!existe) {
                strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
                strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
@@ -429,8 +420,6 @@ void art_agregar(char *s)
                                wattroff(win, COLOR_PAIR(COLOR_YELLOW));
                                wrefresh(win);
                                getch();
                                wattroff(win, COLOR_PAIR(COLOR_YELLOW));
                                wrefresh(win);
                                getch();
-                       } else {
-                               agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
                        }
                        free(save);
                }
                        }
                        free(save);
                }