6 static CLAVE obtenet_clave(INDICE *idx, char *data);
8 INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
12 tmp = (INDICE *)malloc(sizeof(INDICE));
13 if (tmp == NULL) return NULL;
15 len = strlen(emu->nombre);
16 len += strlen(nombre);
18 tmp->filename = (char *)malloc(sizeof(char)*(len+6));
19 strcpy(tmp->filename, emu->nombre);
20 strcat(tmp->filename, "_");
21 strcat(tmp->filename, nombre);
22 strcat(tmp->filename, ".idx");
24 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
25 strcpy(tmp->nombre, nombre);
28 tmp->tipo_dato = tipo_dato;
29 tmp->tam_bloque = tam_bloque;
35 emufs_indice_b_crear(tmp);
36 tmp->agregar_entrada = emufs_indice_b_insertar;
37 tmp->borrar_entrada = NULL;
38 tmp->existe_entrada = emufs_indice_b_buscar;
48 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
50 /* TODO Sacar el indice de la lista en EMUFS */
57 void emufs_indice_agregar(INDICE *primero, char *data, int ubicacion)
59 INDICE *iter = primero;
62 iter->agregar_entrada(iter, obtenet_clave(iter, data), ubicacion);
67 static CLAVE obtenet_clave(INDICE *idx, char *data)
70 switch (idx->tipo_dato) {
72 k.f_clave= *((float *)(data+idx->offset));
75 k.i_clave = *((int *)(data+idx->offset));
81 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
83 switch (idx->tipo_dato) {
85 return c1.f_clave < c2.f_clave;
87 return c1.i_clave < c2.i_clave;
92 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
94 switch (idx->tipo_dato) {
96 return c1.f_clave == c2.f_clave;
98 return c1.i_clave == c2.i_clave;