8 #define STRUCT_OFFSET(x, y) ((int)(&(x->y))-(int)(x))
10 typedef struct _emu_fs_t EMUFS;
12 typedef enum {IND_B, IND_B_ASC} INDICE_TIPO;
14 typedef enum {IDX_FLOAT, IDX_INT} INDICE_TIPO_DATO;
16 typedef union _data_ {
21 typedef struct _indices_h_ {
23 INDICE_TIPO_DATO tipo_dato;
25 unsigned int tam_bloque; /* debe ser multiplo de 512! */
27 /** Agrega la clave k de posicion location en el
28 * indice de forma ordenada
30 int (*agregar_entrada)(struct _indices_h_ *idx, CLAVE k, int location);
31 /** Borra del indice la clave k */
32 int (*borrar_entrada)(struct _indices_h_ *idx, CLAVE k);
33 /** Determina si existe la clave k retornando su posicion o -1
36 int (*existe_entrada)(struct _indices_h_ *idx, CLAVE k);
38 char *nombre; /* nombre de busqueda */
39 char *filename; /* nombre del archivo indice */
41 struct _indices_h_ *sig;
44 INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned tam_bloque);
45 void emufs_indice_destruir(EMUFS *emu, INDICE *i);
46 void emufs_indice_agregar(INDICE *primero, char *data, int ubicacion);
48 CLAVE emufs_indice_obtenet_clave(INDICE *idx, char *data);
50 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2);
51 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2);