]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
bufford andando.
[z.facultad/75.06/emufs.git] / emufs / indices.c
index c570894b2259694e30353351d624fc46627a9512..f7a0ff2f03b7b009cb275d769fcc2457fac04787 100644 (file)
@@ -72,6 +72,7 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
                        break;
                case IND_B_PLUS:
                        /* llenar metodos */
                        break;
                case IND_B_PLUS:
                        /* llenar metodos */
+                       /* hacer que la cantidad de claves quede par o impar, no me acuerdo (SAGAR)!!!*/
                        PERR("Creando indice con Arbol B+");
                        tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
                        tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
                        PERR("Creando indice con Arbol B+");
                        tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
                        tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
@@ -87,8 +88,12 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i)
 {
        /* TODO Sacar el indice de la lista en EMUFS */
 
 {
        /* TODO Sacar el indice de la lista en EMUFS */
 
+       if (!i) return;
+
        if (i->tipo == IDX_STRING)
                emufs_destruir(i->emu_string);
        if (i->tipo == IDX_STRING)
                emufs_destruir(i->emu_string);
+       if (i->funcion != IND_PRIMARIO)
+               emufs_destruir(i->emu_mult);
        free(i->filename);
        free(i->nombre);
        free(i);
        free(i->filename);
        free(i->nombre);
        free(i);
@@ -130,12 +135,12 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
                        error = 0;
                        /* Le agrego un * para diferenciarla, porque no la tengo abreviada! */
                        /* Hack feo :-D */
                        error = 0;
                        /* Le agrego un * para diferenciarla, porque no la tengo abreviada! */
                        /* Hack feo :-D */
-                       sprintf(salvar, "*%s", data);
+                       sprintf(salvar, "%s", data);
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
-                                                                               salvar,
-                                                                               strlen(salvar)+1,
-                                                                               &error
-                                                                       );
+                               salvar,
+                               strlen(salvar)+1,
+                               &error
+                       );
        }
 
        return k;
        }
 
        return k;
@@ -155,11 +160,13 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
                break;
                case IDX_STRING:
                        error = 0;
                break;
                case IDX_STRING:
                        error = 0;
+                       PERR(idx->nombre);
+                       PERR(data+idx->offset);
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
-                                                                               data+idx->offset,
-                                                                               strlen(data+idx->offset)+1,
-                                                                               &error
-                                                                       );
+                               data+idx->offset,
+                               strlen(data+idx->offset)+1,
+                               &error
+                       );
        }
 
        return k;
        }
 
        return k;
@@ -177,13 +184,15 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
                case IDX_INT:
                        return c1.i_clave < c2.i_clave;
                case IDX_STRING:
                case IDX_INT:
                        return c1.i_clave < c2.i_clave;
                case IDX_STRING:
+                       error = 0;
                        sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
                        sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       error = 0;
                        sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
                        /* Salteo el caracter que indica si la clave en temporal */
                        a = b = 0;
                        if (*sc1 == '*') a = 1;
                        if (*sc2 == '*') b = 1;
                        sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
                        /* Salteo el caracter que indica si la clave en temporal */
                        a = b = 0;
                        if (*sc1 == '*') a = 1;
                        if (*sc2 == '*') b = 1;
-                       error = (strcmp(sc1+a, sc2+b) < 0);
+                       error = (strcmp(sc1, sc2) < 0);
                        free(sc1);
                        free(sc2);
                        return error;
                        free(sc1);
                        free(sc2);
                        return error;
@@ -211,7 +220,7 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
                        a = b = 0;
                        if (*sc1 == '*') a=1;
                        if (*sc2 == '*') b=1;
                        a = b = 0;
                        if (*sc1 == '*') a=1;
                        if (*sc2 == '*') b=1;
-                       error = (strcmp(sc1+a, sc2+b) == 0);
+                       error = (strcmp(sc1, sc2) == 0);
                        free(sc1);
                        free(sc2);
                        return error;
                        free(sc1);
                        free(sc2);
                        return error;
@@ -240,3 +249,13 @@ void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst)
        }
 }
 
        }
 }
 
+
+void emufs_indice_borrar(INDICE *primero, CLAVE k, INDICE_DATO dato)
+{
+       INDICE *iter = primero;
+
+       while (iter) {
+               iter->borrar_entrada(iter, k, dato);
+               iter = iter->sig;
+       }
+}