X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/d4c259b024d7aa4b64f8727e619a65688d43c798..9da17243492426daba1cf11c353f4216e7e34ca1:/emufs/indices.c?ds=inline diff --git a/emufs/indices.c b/emufs/indices.c index 01f0314..1cf7f66 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -25,14 +25,29 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND strcpy(tmp->nombre, nombre); tmp->tipo = tipo; - if (tipo == IDX_STRING) { - sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "string"); - tmp->emu_string = emufs_crear(string_file, T2, 0, 0); + 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->tipo_dato = tipo_dato; 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; @@ -43,7 +58,7 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND tmp->agregar_entrada = emufs_indice_b_insertar; tmp->borrar_entrada = emufs_indice_b_borrar; 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 */ @@ -119,11 +134,13 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) 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; @@ -133,7 +150,7 @@ 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; + int error=0; switch (idx->tipo_dato) { case IDX_FLOAT: @@ -141,8 +158,13 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2) 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); @@ -163,7 +185,11 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2) 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);