X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/a499b030d1840a0714721695cd6fcf54bc7dbb68..e42e23b74408ae54e9ae25b7cadadf45d80c34e1:/emufs/indices.c?ds=inline diff --git a/emufs/indices.c b/emufs/indices.c index a099e13..dd72222 100644 --- a/emufs/indices.c +++ b/emufs/indices.c @@ -2,10 +2,9 @@ #include "indices.h" #include "emufs.h" #include "indice_b.h" +#include "common.h" -static CLAVE obtenet_clave(INDICE *idx, char *data); - -INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, 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 len; INDICE *tmp; @@ -27,18 +26,23 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TI tmp->tipo = tipo; tmp->tipo_dato = tipo_dato; tmp->tam_bloque = tam_bloque; + tmp->funcion = funcion; tmp->offset = offset; tmp->sig = NULL; switch (tipo) { case IND_B: + PERR("Creando indice con Arbol B"); emufs_indice_b_crear(tmp); tmp->agregar_entrada = emufs_indice_b_insertar; - tmp->borrar_entrada = NULL; + tmp->borrar_entrada = emufs_indice_b_borrar; tmp->existe_entrada = emufs_indice_b_buscar; + tmp->buscar_entradas = NULL; break; case IND_B_ASC: /* llenar metodos */ + PERR("Creando indice con Arbol B*"); + PERR("AÚN NO IMPLEMENTADO!!!!!!!!"); break; } @@ -54,17 +58,40 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i) free(i); } -void emufs_indice_agregar(INDICE *primero, char *data, int ubicacion) +void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato) { INDICE *iter = primero; - + while (iter) { - iter->agregar_entrada(iter, obtenet_clave(iter, data), ubicacion); + iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato); iter = iter->sig; } } -static CLAVE obtenet_clave(INDICE *idx, char *data) +INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data) +{ + return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data)); +} + +CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data) +{ + CLAVE k; + if (idx == NULL) PERR("NULL INDEX!"); + + PERR("---- 1 ----"); + switch (idx->tipo_dato) { + case IDX_FLOAT: + k.f_clave= *((float *)(data)); + break; + case IDX_INT: + k.i_clave = *((int *)(data)); + } + PERR("---- 2 ----"); + + return k; +} + +CLAVE emufs_indice_generar_clave(INDICE *idx, char *data) { CLAVE k; switch (idx->tipo_dato) {