X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/a1146fe4177661c121dddaa5c8d60d9620967949..9593941016d3b3af6ae22e59391ae5bade27fb47:/emufs/indices.h diff --git a/emufs/indices.h b/emufs/indices.h index 543e879..38ab88f 100644 --- a/emufs/indices.h +++ b/emufs/indices.h @@ -48,6 +48,19 @@ 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 */ @@ -60,6 +73,7 @@ typedef struct _indices_h_ { /******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 @@ -77,8 +91,8 @@ 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_isam)(struct _emu_fs_t* emu, CLAVE k); char *nombre; /**< Nombre único de busqueda del indice */ char *filename; /**< nombre del archivo de indice */ @@ -99,6 +113,8 @@ typedef struct _indices_h_ { * pripiamente dicho */ EMUFS *emu_mult; + + /*EMUFS_Estadisticas (*obtener_estadisticas)(struct _indices_h_ *);*/ struct _indices_h_ *sig; /**< Siguiente indice */ } INDICE; @@ -112,6 +128,7 @@ typedef struct _indices_h_ { * \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, 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 *