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 char string_file[255];
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);
34 sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "multiples");
35 tmp->emu_mult = emufs_crear(string_file, T2, 0, 0);
38 tmp->tipo_dato = tipo_dato;
41 sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "string");
42 tmp->emu_string = emufs_crear(string_file, T2, 0, 0);
46 tmp->emu_string = NULL;
49 tmp->tam_bloque = tam_bloque;
50 tmp->funcion = funcion;
56 PERR("Creando indice con Arbol B");
57 emufs_indice_b_crear(tmp);
58 tmp->agregar_entrada = emufs_indice_b_insertar;
59 tmp->borrar_entrada = emufs_indice_b_borrar;
60 tmp->existe_entrada = emufs_indice_b_buscar;
61 tmp->buscar_entradas = NULL;
65 PERR("Creando indice con Arbol B*");
66 PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
73 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
75 /* TODO Sacar el indice de la lista en EMUFS */
77 if (i->tipo == IDX_STRING)
78 emufs_destruir(i->emu_string);
84 void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato)
86 INDICE *iter = primero;
89 iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato);
94 INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
96 return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data));
99 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
102 if (idx == NULL) PERR("NULL INDEX!");
104 switch (idx->tipo_dato) {
106 k.f_clave= *((float *)(data));
109 k.i_clave = *((int *)(data));
112 /* XXX Y DE QUE COLOR NOS PINTAMOS ACA?
114 * ESTA EL PROBLEMA DE QUE ESTO SE GENERA ON THE FLY
115 * Y NOSOTROS TENEMOS COSAS EN UN ARCHIVO DE TIPO2
117 * COMO GENERAMOS LA CLAVE???
124 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
129 switch (idx->tipo_dato) {
131 k.f_clave= *((float *)(data+idx->offset));
134 k.i_clave = *((int *)(data+idx->offset));
137 k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
139 strlen(data+idx->offset)+1,
147 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
149 char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
150 EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
153 switch (idx->tipo_dato) {
155 return c1.f_clave < c2.f_clave;
157 return c1.i_clave < c2.i_clave;
159 sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
160 sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
161 error = (strcmp(sc1, sc2) < 0);
169 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
171 char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
172 EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
175 switch (idx->tipo_dato) {
177 return c1.f_clave == c2.f_clave;
179 return c1.i_clave == c2.i_clave;
181 sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
182 sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
183 error = (strcmp(sc1, sc2) == 0);