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;
44 PERR("Creando indice con Arbol B*");
45 PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
52 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
54 /* TODO Sacar el indice de la lista en EMUFS */
61 void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato)
63 INDICE *iter = primero;
66 iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato);
71 INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
73 return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data));
76 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
79 if (idx == NULL) PERR("NULL INDEX!");
82 switch (idx->tipo_dato) {
84 k.f_clave= *((float *)(data));
87 k.i_clave = *((int *)(data));
94 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
97 switch (idx->tipo_dato) {
99 k.f_clave= *((float *)(data+idx->offset));
102 k.i_clave = *((int *)(data+idx->offset));
108 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
110 switch (idx->tipo_dato) {
112 return c1.f_clave < c2.f_clave;
114 return c1.i_clave < c2.i_clave;
119 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
121 switch (idx->tipo_dato) {
123 return c1.f_clave == c2.f_clave;
125 return c1.i_clave == c2.i_clave;