]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.h
Bugfix
[z.facultad/75.06/emufs.git] / emufs / indices.h
index 543e879ffcb3e2d20060ec2f7ae1a16e54eccf12..38ab88f0f99d25756ce90c1690360d47e98d9bae 100644 (file)
@@ -48,6 +48,19 @@ typedef union _data_ {
        int i_clave;
 } CLAVE;
 
        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 */
 /** 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;
        /******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
        /******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_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);
+       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 */
 
        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;
         *  pripiamente dicho
         */
        EMUFS *emu_mult;
+
+       /*EMUFS_Estadisticas (*obtener_estadisticas)(struct _indices_h_ *);*/
        struct _indices_h_ *sig; /**< Siguiente indice */
 } INDICE;
 
        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);
  *  \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
  *
 
 /** Destruye un indice
  *