]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.h
el copy paste me va a mandar a la ruina... bugs corregidos.. ahora si anda todo como...
[z.facultad/75.06/emufs.git] / emufs / indices.h
index 3bcac43f015f9f6e2b35b4cd663caac6564152f5..543e879ffcb3e2d20060ec2f7ae1a16e54eccf12 100644 (file)
@@ -13,14 +13,15 @@ typedef struct _emu_fs_t EMUFS;
 
 /** Dato guardado junto con la clave */
 typedef struct _reg_def_ {
-       unsigned long id;
-       unsigned long bloque;
+       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* */
+       IND_B_ASC, /**< Utilizacion de Arboles B* */
+       IND_B_PLUS
 } INDICE_TIPO;
 
 typedef enum {
@@ -53,14 +54,20 @@ typedef struct _indices_h_ {
        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;
+       /******NICO********/
        /** Agrega la clave k de posicion location en el 
         * indice de forma ordenada
         */
        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);
+       /** Borra del indice la clave k . Si el indice en multiple en dato
+        * se le debe pasar cual de los datos borrar. */
+       int (*borrar_entrada)(struct _indices_h_ *idx, CLAVE k, INDICE_DATO dato);
        /** Determina si existe la clave k retornando su posicion o -1
         * en caso fallido
         */
@@ -68,6 +75,11 @@ typedef struct _indices_h_ {
        
        INDICE_DATO *(*buscar_entradas)(struct _indices_h_ *idx, CLAVE k, int *cant);
 
+       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);
+
        char *nombre;   /**< Nombre único de busqueda del indice */
        char *filename; /**< nombre del archivo de indice */
 
@@ -99,7 +111,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_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);
 
 /** Destruye un indice
  *
@@ -118,14 +130,18 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i);
  */
 void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato);
 
+void emufs_indice_borrar(INDICE *primero, CLAVE k, 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);
+void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst);
+
 /** Compara 2 claves de la forma c1 < c2 */
 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
-