X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/997a97b5e42afccbc75f2e2dde61f1e74856cb86..8ed872279800f018aa1dfa690d646428d68820c1:/emufs/indices.c?ds=inline diff --git a/emufs/indices.c b/emufs/indices.c index c767d64..aab487a 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,11 +49,14 @@ 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; + tmp->keybucket = NULL; - switch (tipo) { + fprintf(stderr, "TIPO ARBOL= %d\n", tmp->tipo); + switch (tmp->tipo) { case IND_B: PERR("Creando indice con Arbol B"); emufs_indice_b_crear(tmp); @@ -68,7 +71,14 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND case IND_B_ASC: /* llenar metodos */ PERR("Creando indice con Arbol B*"); - PERR("AÚN NO IMPLEMENTADO!!!!!!!!"); + emufs_indice_b_crear(tmp); + tmp->agregar_entrada = emufs_indice_b_asc_insertar; + 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_PLUS: /* llenar metodos */ @@ -77,6 +87,8 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND 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); + tmp->obtener_menor_clave = emufs_b_plus_obtener_menor_clave; + tmp->obtener_mayor_clave = emufs_b_plus_obtener_mayor_clave; PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!"); break; } @@ -88,8 +100,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 +149,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 +162,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 +173,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 +235,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; @@ -255,3 +285,24 @@ void emufs_indice_borrar(INDICE *primero, CLAVE k, INDICE_DATO dato) iter = iter->sig; } } + +int emufs_indice_es_clave_nula(INDICE *idx, CLAVE k) +{ + char *sc1; + EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */ + int error=0; + + switch (idx->tipo_dato) { + case IDX_FLOAT: + return k.f_clave == -1 ; + case IDX_INT: + return k.i_clave == -1; + case IDX_STRING: + error = 0; + sc1 = idx->emu_string->leer_registro(idx->emu_string, k, &dummy, &error); + error = strlen(sc1); + free(sc1); + return error==0; + } + return 0; +}