X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/78ff3129342b5ae75673aac710820805fe5e3f41..f8a441d3986f96851c8201fe82c5ce328b582d05:/emufs/indices.c diff --git a/emufs/indices.c b/emufs/indices.c index c7235d9..c570894 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -2,7 +2,7 @@ #include "indices.h" #include "emufs.h" #include "indice_b.h" -#include "common.h" +#include "indice_bplus.h" INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque) { @@ -50,6 +50,8 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND tmp->offset = offset; tmp->sig = NULL; + tmp->size_claves = 0; + tmp->size_hijos = 0; switch (tipo) { case IND_B: @@ -59,12 +61,23 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND tmp->borrar_entrada = emufs_indice_b_borrar; tmp->existe_entrada = emufs_indice_b_buscar; tmp->buscar_entradas = emufs_indice_b_buscar_muchos; + tmp->obtener_menor_clave = emufs_indice_b_obtener_menor_clave; + tmp->obtener_mayor_clave = emufs_indice_b_obtener_mayor_clave; + tmp->obtener_sig_clave = emufs_indice_b_obtener_sig_clave; 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+"); + tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2; + tmp->size_hijos = tmp->size_claves + sizeof(CLAVE); + emufs_b_plus_crear(tmp); + PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!"); + break; } return tmp; @@ -100,6 +113,7 @@ 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) { @@ -114,13 +128,14 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data) * Ver de borrarla despues de usarla */ error = 0; - PERR("VOY A GRABAR TEXTO EN ARCHIVO"); + /* 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, - data, - strlen(data)+1, + salvar, + strlen(salvar)+1, &error ); - fprintf(stderr, "GENERE CLAVE CON (%s) y estoy en ID=%d\n", data, k.i_clave); } return k; @@ -154,7 +169,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=0; + int error=0, a, b; switch (idx->tipo_dato) { case IDX_FLOAT: @@ -164,7 +179,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; @@ -176,7 +195,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: @@ -188,11 +207,36 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2) 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); - if (sc1) free(sc1); - if (sc2) free(sc2); + /* 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; } +void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst) +{ + int error; + char *leido; + EMUFS_REG_SIZE dummy; + + switch (idx->tipo_dato) { + case IDX_FLOAT: + (*((float *)dst)) = k.f_clave; + break; + case IDX_INT: + (*((int *)dst)) = k.f_clave; + break; + case IDX_STRING: + error = 0; + leido = idx->emu_string->leer_registro(idx->emu_string, k, &dummy, &error); + strcpy((char *)dst, leido); + free(leido); + } +} +