X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3d7c873614ca81c1590a4cbb7e786ffda64755d6..2470cecbf9f0f40714b9f50d9a76d187abe336e6:/emufs/indices.c diff --git a/emufs/indices.c b/emufs/indices.c index 34d347e..33b6f7d 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -4,7 +4,7 @@ #include "indice_b.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) +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, int str_offset) { int len; INDICE *tmp; @@ -49,6 +49,7 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND } tmp->offset = offset; + tmp->str_offset = str_offset; tmp->sig = NULL; tmp->size_claves = 0; tmp->size_hijos = 0; @@ -88,8 +89,12 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i) { /* TODO Sacar el indice de la lista en EMUFS */ + if (!i) return; + 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); @@ -133,10 +138,10 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data) /* Hack feo :-D */ sprintf(salvar, "%s", data); k.i_clave = idx->emu_string->grabar_registro(idx->emu_string, - salvar, - strlen(salvar)+1, - &error - ); + salvar, + strlen(salvar)+1, + &error + ); } return k; @@ -146,6 +151,8 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) { CLAVE k; int error; + int c; + char *ptr; switch (idx->tipo_dato) { case IDX_FLOAT: @@ -155,14 +162,21 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) k.i_clave = *((int *)(data+idx->offset)); break; case IDX_STRING: + /* Tengo que buscar donde empieza el campo */ + ptr = data + idx->offset; + c = idx->str_offset; + + while (c) { + if ((*ptr) == '\0') c--; + ptr++; + } error = 0; - PERR(idx->nombre); - PERR(data+idx->offset); + fprintf(stderr, "%s: ========> %s\n", idx->nombre, ptr); k.i_clave = idx->emu_string->grabar_registro(idx->emu_string, - data+idx->offset, - strlen(data+idx->offset)+1, - &error - ); + ptr, + strlen(ptr)+1, + &error + ); } return k; @@ -210,8 +224,13 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2) case IDX_STRING: error = 0; sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error); + if (sc1 == NULL) return 0; error = 0; sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error); + if (sc2 == NULL) { + free(sc2); + return 0; + } /* Salteo el caracter que indica si la clave en temporal */ a = b = 0; if (*sc1 == '*') a=1; @@ -244,3 +263,14 @@ void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst) free(leido); } } + + +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; + } +}