7 INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
11 tmp = (INDICE *)malloc(sizeof(INDICE));
12 if (tmp == NULL) return NULL;
14 len = strlen(emu->nombre);
15 len += strlen(nombre);
17 tmp->filename = (char *)malloc(sizeof(char)*(len+6));
18 strcpy(tmp->filename, emu->nombre);
19 strcat(tmp->filename, "_");
20 strcat(tmp->filename, nombre);
21 strcat(tmp->filename, ".idx");
23 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
24 strcpy(tmp->nombre, nombre);
27 tmp->tipo_dato = tipo_dato;
28 tmp->tam_bloque = tam_bloque;
29 tmp->funcion = funcion;
35 PERR("Creando indice con Arbol B");
36 emufs_indice_b_crear(tmp);
37 tmp->agregar_entrada = emufs_indice_b_insertar;
38 tmp->borrar_entrada = emufs_indice_b_borrar;
39 tmp->existe_entrada = emufs_indice_b_buscar;
40 tmp->buscar_entradas = NULL;
50 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
52 /* TODO Sacar el indice de la lista en EMUFS */
59 void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato)
61 INDICE *iter = primero;
64 iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato);
69 INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
71 return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data));
74 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
77 if (idx == NULL) PERR("NULL INDEX!");
80 switch (idx->tipo_dato) {
82 k.f_clave= *((float *)(data));
85 k.i_clave = *((int *)(data));
92 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
95 switch (idx->tipo_dato) {
97 k.f_clave= *((float *)(data+idx->offset));
100 k.i_clave = *((int *)(data+idx->offset));
106 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
108 switch (idx->tipo_dato) {
110 return c1.f_clave < c2.f_clave;
112 return c1.i_clave < c2.i_clave;
117 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
119 switch (idx->tipo_dato) {
121 return c1.f_clave == c2.f_clave;
123 return c1.i_clave == c2.i_clave;