int i_clave;
} CLAVE;
+/** 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 */
/******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
* pripiamente dicho
*/
EMUFS *emu_mult;
+
+ /*EMUFS_Estadisticas (*obtener_estadisticas)(struct _indices_h_ *);*/
struct _indices_h_ *sig; /**< Siguiente indice */
} INDICE;
* \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
*
/** 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