X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/8951c2e20b0c34527d99cb25146418b0c0b1e57b..1103650bf8099a104304d123a1e36c30d537e462:/emufs/indices.h?ds=sidebyside diff --git a/emufs/indices.h b/emufs/indices.h index 9d40d51..2928b14 100644 --- a/emufs/indices.h +++ b/emufs/indices.h @@ -5,20 +5,43 @@ #include #include +#include "common.h" + #define STRUCT_OFFSET(x, y) ((int)(&(x->y))-(int)(x)) typedef struct _emu_fs_t EMUFS; +/** Dato guardado junto con la clave */ +typedef struct _reg_def_ { + long id; + long bloque; +} INDICE_DATO; + /** Tipos de Indices conocidos */ typedef enum { IND_B, /**< Utilizacion de Arboles B */ IND_B_ASC /**< Utilizacion de Arboles B* */ } INDICE_TIPO; +typedef enum { + IND_PRIMARIO, + IND_SELECCION, + IND_EXAHUSTIVO +} INDICE_FUNCION; + /** Tipos de datos soportados para las claves */ -typedef enum {IDX_FLOAT, IDX_INT} INDICE_TIPO_DATO; +typedef enum { + IDX_FLOAT, + IDX_INT, + IDX_STRING +} INDICE_TIPO_DATO; -/** Clave de indice */ +/** Clave de indice + * + * Si el tipo de clave es IDX_STRING se utiliza + * i_clave y representa el ID en un EMUFS Tipo2 + * sin indices donde esta el texto de la clave + */ typedef union _data_ { float f_clave; int i_clave; @@ -28,23 +51,42 @@ typedef union _data_ { typedef struct _indices_h_ { INDICE_TIPO tipo; /**< Tipo de indice */ INDICE_TIPO_DATO tipo_dato; /**< Tipo de dato a manejar */ + INDICE_FUNCION funcion; /**< Funcion del indice */ int offset; /**< Offset desde el inicio del dato hasta el lugar donde esta la clave */ unsigned int tam_bloque; /**< Tamaño del bloque (nodo). Deber set multiplo de 512! */ /** Agrega la clave k de posicion location en el * indice de forma ordenada */ - int (*agregar_entrada)(struct _indices_h_ *idx, CLAVE k, int location); + int (*agregar_entrada)(struct _indices_h_ *idx, CLAVE k, INDICE_DATO dato); /** Borra del indice la clave k */ int (*borrar_entrada)(struct _indices_h_ *idx, CLAVE k); /** Determina si existe la clave k retornando su posicion o -1 * en caso fallido */ - int (*existe_entrada)(struct _indices_h_ *idx, CLAVE k); + INDICE_DATO (*existe_entrada)(struct _indices_h_ *idx, CLAVE k); + + INDICE_DATO *(*buscar_entradas)(struct _indices_h_ *idx, CLAVE k, int *cant); char *nombre; /**< Nombre único de busqueda del indice */ char *filename; /**< nombre del archivo de indice */ + EMUFS *emu_string; /**< EMUFS Tipo2 donde se guardan las claves de tipo string */ + + /** EMUFS Donde se guardan INDICE_DATO de multiples claves con repeticion + * + * La forma de guardar es la siguiente : + * \code + * +------+---------//---------+ + * | CANT | DATA \\ | + * +------+---------//---------+ + * \endcode + * + * Donde CANT es un entero (int) y DATA es un array + * de INDICE_DATO que apunta al archivo de datos + * pripiamente dicho + */ + EMUFS *emu_mult; struct _indices_h_ *sig; /**< Siguiente indice */ } INDICE; @@ -57,7 +99,7 @@ typedef struct _indices_h_ { * \param offset Desplazamiento de la clave dentro del dato * \param tam_bloque Tamaño del bloque (nodo) del arbol */ -INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned 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 tam_bloque); /** Destruye un indice * @@ -74,8 +116,12 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i); * \param data Array de datos desde donde tomar las claves * \param ubicacion Dato a guardar asociado a la clave */ -void emufs_indice_agregar(INDICE *primero, char *data, int ubicacion); +void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato); + +INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data); +CLAVE emufs_indice_generar_clave(INDICE *idx, char *data); +CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data); /** Compara 2 claves de la forma c1 < c2 */ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2);