X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/0e7dc53e78dfe5d9f9d6b14eee33caf6c52a76bc..c247394a18d8d486fcf05d3492eb53a72230e0ab:/emufs/indices.c diff --git a/emufs/indices.c b/emufs/indices.c index 680e01a..ccb782a 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -21,6 +21,7 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND strcat(tmp->filename, nombre); strcat(tmp->filename, ".idx"); + tmp->padre = emu; tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1)); strcpy(tmp->nombre, nombre); @@ -115,7 +116,7 @@ INDICE *emufs_indice_abrir(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1)); strcpy(tmp->nombre, nombre); - + tmp->padre = emu; tmp->tipo = tipo; tmp->tipo_dato = tipo_dato; switch (tipo_dato) { @@ -270,11 +271,18 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) c = idx->str_offset; while (c) { - if ((*ptr) == '\0') c--; - ptr++; + if ((*ptr) == '\0') { + c--; + /* Salteo los \0 seguidos */ + if (idx->padre->tipo == T3) + while ((*ptr) == '\0') ptr++; + else + ptr++; + } else + ptr++; } error = 0; - fprintf(stderr, "%s: ========> %s\n", idx->nombre, ptr); + fprintf(stderr, "%s: ========> %s (%d)\n", idx->nombre, ptr, strlen(ptr)+1); k.i_clave = idx->emu_string->grabar_registro(idx->emu_string, ptr, strlen(ptr)+1,