X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/0d75fdcfc4e5b282b99b0ace29304e365dac5c79..ec7edba15ba5510149162d9998bc1b7146ca249d:/emufs/indices.c?ds=inline diff --git a/emufs/indices.c b/emufs/indices.c index bc01df7..2fcf1c4 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -25,7 +25,6 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND strcpy(tmp->nombre, nombre); tmp->tipo = tipo; - tmp->tipo_dato = tipo_dato; switch (tipo_dato) { case IDX_STRING: @@ -39,6 +38,16 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND 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; @@ -49,13 +58,18 @@ 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 */ PERR("Creando indice con Arbol B*"); PERR("AÚN NO IMPLEMENTADO!!!!!!!!"); break; + case IND_B_PLUS: + /* llenar metodos */ + PERR("Creando indice con Arbol B+"); + PERR("AÚN NO IMPLEMENTADO!!!!!!!!"); + break; } return tmp; @@ -89,7 +103,9 @@ INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data) CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data) { + int error; CLAVE k; + char salvar[100]; if (idx == NULL) PERR("NULL INDEX!"); switch (idx->tipo_dato) { @@ -98,15 +114,20 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data) break; case IDX_INT: k.i_clave = *((int *)(data)); + break; 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??? + /* TODO : Esto deja basura en el archivo. + * Ver de borrarla despues de usarla */ + error = 0; + /* Le agrego un * para diferenciarla, porque no la tengo abreviada! */ + /* Hack feo :-D */ + sprintf(salvar, "*%s", data); + k.i_clave = idx->emu_string->grabar_registro(idx->emu_string, + salvar, + strlen(salvar)+1, + &error + ); } return k; @@ -125,6 +146,7 @@ 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, @@ -139,7 +161,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, a, b; switch (idx->tipo_dato) { case IDX_FLOAT: @@ -149,7 +171,11 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2) case IDX_STRING: sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error); sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error); - error = (strcmp(sc1, sc2) < 0); + /* 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); free(sc1); free(sc2); return error; @@ -161,7 +187,7 @@ 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; + int error, a, b; switch (idx->tipo_dato) { case IDX_FLOAT: @@ -169,13 +195,18 @@ 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; 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); - error = (strcmp(sc1, sc2) == 0); + /* 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); free(sc1); free(sc2); return error; } return 0; } -