]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.h
* Integro Indice B con EMUFS e Indice
[z.facultad/75.06/emufs.git] / emufs / indices.h
index 935bc6edb0bb2860cb44bf83a9dfefdfdc951bd5..7e3d70af42581bcc6b4eea3936c07994616b4bcc 100644 (file)
@@ -5,9 +5,11 @@
 #include <stdlib.h>
 #include <string.h>
 
+#define STRUCT_OFFSET(x, y) ((int)(&(x->y))-(int)(x))
+
 typedef struct _emu_fs_t EMUFS;
 
-typedef enum {IND_B_MAS, IND_B_ASC} INDICE_TIPO;
+typedef enum {IND_B, IND_B_ASC} INDICE_TIPO;
 
 typedef enum {IDX_FLOAT, IDX_INT} INDICE_TIPO_DATO;
 
@@ -20,6 +22,7 @@ typedef struct _indices_h_ {
        INDICE_TIPO tipo;
        INDICE_TIPO_DATO tipo_dato;
        int offset;
+       unsigned int tam_bloque; /* debe ser multiplo de 512! */
 
        /** Agrega la clave k de posicion location en el 
         * indice de forma ordenada
@@ -38,9 +41,13 @@ typedef struct _indices_h_ {
        struct _indices_h_ *sig;
 } INDICE;
 
-INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset);
+INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned tam_bloque);
 void emufs_indice_destruir(EMUFS *emu, INDICE *i);
+void emufs_indice_agregar(INDICE *primero, char *data, int ubicacion);
 
 CLAVE emufs_indice_obtenet_clave(INDICE *idx, char *data);
+
+int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2);
+int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2);
 #endif