X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/997a97b5e42afccbc75f2e2dde61f1e74856cb86..7ccae609792550a7d81d2496742def35f003bf26:/emufs/indices.h?ds=sidebyside diff --git a/emufs/indices.h b/emufs/indices.h index 0a83bc3..ff2e41e 100644 --- a/emufs/indices.h +++ b/emufs/indices.h @@ -48,17 +48,32 @@ typedef union _data_ { int i_clave; } CLAVE; +/** Estructura utilizada para querys del B_PLUS */ +typedef struct _index_dat_ { + int num_bloque; + CLAVE clave; +} INDEX_DAT; + +/** Bucket de keys en bloque para B+ */ +typedef struct _keybucket_ { + int cant_keys; + int current_key; + CLAVE *claves; +} B_PLUS_KEYBUCKET; + /** Manejo de Indices independiente */ 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 */ + int str_offset; /**< Si el campo es de string, aca va el numero de \0 que me tengo que saltar */ unsigned int tam_bloque; /**< Tamaño del bloque (nodo). Deber set multiplo de 512! */ /******NICO********/ unsigned int size_claves; unsigned int size_hijos; + B_PLUS_KEYBUCKET *keybucket; /**< Usado por B+ para implementar el obtener_sig_clave. Posee keys de un bloque */ /******NICO********/ /** Agrega la clave k de posicion location en el * indice de forma ordenada @@ -76,8 +91,7 @@ typedef struct _indices_h_ { CLAVE (*obtener_menor_clave)(struct _indices_h_ *idx); CLAVE (*obtener_mayor_clave)(struct _indices_h_ *idx); - - CLAVE (*obtener_sig_clave)(struct _indices_h_ *idx, CLAVE k); + CLAVE (*obtener_sig_clave)(struct _indices_h_ *idx, CLAVE k); char *nombre; /**< Nombre único de busqueda del indice */ char *filename; /**< nombre del archivo de indice */ @@ -87,17 +101,20 @@ typedef struct _indices_h_ { /** 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; + + EMUFS *padre; + /*EMUFS_Estadisticas (*obtener_estadisticas)(struct _indices_h_ *);*/ struct _indices_h_ *sig; /**< Siguiente indice */ } INDICE; @@ -110,7 +127,8 @@ 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_FUNCION funcion, 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, int str_offset); +INDICE *emufs_indice_abrir(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); /** Destruye un indice * @@ -142,4 +160,5 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2); /** Compara 2 claves de la forma c1 == c2 */ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2); +int emufs_indice_es_clave_nula(INDICE *idx, CLAVE k); #endif