]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
* BUGFIX : un error de orden de condiciones hacia que las claves multiples
[z.facultad/75.06/emufs.git] / emufs / indices.c
index fa999032cff055e343483746ca9bbfb36c153c25..1cf7f662539343161aa33940a6d67c27d7a8c156 100644 (file)
@@ -8,6 +8,7 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
 {
        int len;
        INDICE *tmp;
 {
        int len;
        INDICE *tmp;
+       char string_file[255];
        tmp = (INDICE *)malloc(sizeof(INDICE));
        if (tmp == NULL) return NULL;
 
        tmp = (INDICE *)malloc(sizeof(INDICE));
        if (tmp == NULL) return NULL;
 
@@ -25,8 +26,28 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
 
        tmp->tipo = tipo;
        tmp->tipo_dato = tipo_dato;
 
        tmp->tipo = tipo;
        tmp->tipo_dato = tipo_dato;
+       switch (tipo_dato) {
+               case IDX_STRING:
+                       sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "string");
+                       tmp->emu_string = emufs_crear(string_file, T2, 0, 0);
+               break;
+               case IDX_FLOAT:
+               case IDX_INT:
+                       tmp->emu_string = NULL;
+       }
+
        tmp->tam_bloque = tam_bloque;
        tmp->funcion = funcion;
        tmp->tam_bloque = tam_bloque;
        tmp->funcion = funcion;
+       switch (funcion) {
+               case IND_PRIMARIO:
+                       tmp->emu_mult = NULL;
+               break;
+               case IND_SELECCION:
+               case IND_EXAHUSTIVO:
+                       sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "multiples");
+                       tmp->emu_mult = emufs_crear(string_file, T2, 0, 0);
+       }
+
        tmp->offset = offset;
        tmp->sig = NULL;
 
        tmp->offset = offset;
        tmp->sig = NULL;
 
@@ -35,12 +56,14 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
                        PERR("Creando indice con Arbol B");
                        emufs_indice_b_crear(tmp);
                        tmp->agregar_entrada = emufs_indice_b_insertar;
                        PERR("Creando indice con Arbol B");
                        emufs_indice_b_crear(tmp);
                        tmp->agregar_entrada = emufs_indice_b_insertar;
-                       tmp->borrar_entrada = NULL;
+                       tmp->borrar_entrada = emufs_indice_b_borrar;
                        tmp->existe_entrada = emufs_indice_b_buscar;
                        tmp->existe_entrada = emufs_indice_b_buscar;
-                       tmp->buscar_entradas = NULL;
+                       tmp->buscar_entradas = emufs_indice_b_buscar_muchos;
                break;
                case IND_B_ASC:
                        /* llenar metodos */
                break;
                case IND_B_ASC:
                        /* llenar metodos */
+                       PERR("Creando indice con Arbol B*");
+                       PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
                        break;
        }
 
                        break;
        }
 
@@ -50,7 +73,9 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
 {
        /* TODO Sacar el indice de la lista en EMUFS */
 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
 {
        /* TODO Sacar el indice de la lista en EMUFS */
-       
+
+       if (i->tipo == IDX_STRING)
+               emufs_destruir(i->emu_string);
        free(i->filename);
        free(i->nombre);
        free(i);
        free(i->filename);
        free(i->nombre);
        free(i);
@@ -76,15 +101,22 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
        CLAVE k;
        if (idx == NULL) PERR("NULL INDEX!");
 
        CLAVE k;
        if (idx == NULL) PERR("NULL INDEX!");
 
-       PERR("---- 1 ----");
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        k.f_clave= *((float *)(data));
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data));
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        k.f_clave= *((float *)(data));
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data));
+               case IDX_STRING:
+                       k = k;
+                       /* XXX Y DE QUE COLOR NOS PINTAMOS ACA?
+                        *
+                        * ESTA EL PROBLEMA DE QUE ESTO SE GENERA ON THE FLY
+                        * Y NOSOTROS TENEMOS COSAS EN UN ARCHIVO DE TIPO2
+                        *
+                        * COMO GENERAMOS LA CLAVE???
+                        */
        }
        }
-       PERR("---- 2 ----");
 
        return k;
 }
 
        return k;
 }
@@ -92,12 +124,23 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
 {
        CLAVE k;
 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
 {
        CLAVE k;
+       int error;
+
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        k.f_clave= *((float *)(data+idx->offset));
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data+idx->offset));
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        k.f_clave= *((float *)(data+idx->offset));
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data+idx->offset));
+               break;
+               case IDX_STRING:
+                       error = 0;
+                       k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
+                                                                               data+idx->offset,
+                                                                               strlen(data+idx->offset)+1,
+                                                                               &error
+                                                                       );
+                       fprintf(stderr, "Grabe String en ID = %d\n", k.i_clave);
        }
 
        return k;
        }
 
        return k;
@@ -105,22 +148,53 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
 
 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
 {
 
 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
 {
+       char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
+       EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
+       int error=0;
+
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        return c1.f_clave < c2.f_clave;
                case IDX_INT:
                        return c1.i_clave < c2.i_clave;
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        return c1.f_clave < c2.f_clave;
                case IDX_INT:
                        return c1.i_clave < c2.i_clave;
+               case IDX_STRING:
+                       fprintf(stderr, "--- 1 ---\n");
+                       fprintf(stderr, "--> %d\n", c1.i_clave);
+                       sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       fprintf(stderr, "--- 2 ---\n");
+                       fprintf(stderr, "--> %d\n", c2.i_clave);
+                       sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
+                       fprintf(stderr, "--- 3 ---\n");
+                       error = (strcmp(sc1, sc2) < 0);
+                       free(sc1);
+                       free(sc2);
+                       return error;
        }
        return 0;
 }
 
 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
 {
        }
        return 0;
 }
 
 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
 {
+       char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
+       EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
+       int error;
+
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        return c1.f_clave == c2.f_clave;
                case IDX_INT:
                        return c1.i_clave == c2.i_clave;
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        return c1.f_clave == c2.f_clave;
                case IDX_INT:
                        return c1.i_clave == c2.i_clave;
+               case IDX_STRING:
+                       error = 0;
+                       fprintf(stderr, "--> %d\n", c1.i_clave);
+                       sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       error = 0;
+                       fprintf(stderr, "--> %d\n", c2.i_clave);
+                       sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
+                       error = (strcmp(sc1, sc2) == 0);
+                       free(sc1);
+                       free(sc2);
+                       return error;
        }
        return 0;
 }
        }
        return 0;
 }