5 #include "indice_bplus.h"
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, int str_offset)
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);
28 tmp->tipo_dato = tipo_dato;
31 sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "string");
32 tmp->emu_string = emufs_crear(string_file, T2, 0, 0);
36 tmp->emu_string = NULL;
39 tmp->tam_bloque = tam_bloque;
40 tmp->funcion = funcion;
47 sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "multiples");
48 tmp->emu_mult = emufs_crear(string_file, T2, 0, 0);
52 tmp->str_offset = str_offset;
59 PERR("Creando indice con Arbol B");
60 emufs_indice_b_crear(tmp);
61 tmp->agregar_entrada = emufs_indice_b_insertar;
62 tmp->borrar_entrada = emufs_indice_b_borrar;
63 tmp->existe_entrada = emufs_indice_b_buscar;
64 tmp->buscar_entradas = emufs_indice_b_buscar_muchos;
65 tmp->obtener_menor_clave = emufs_indice_b_obtener_menor_clave;
66 tmp->obtener_mayor_clave = emufs_indice_b_obtener_mayor_clave;
67 tmp->obtener_sig_clave = emufs_indice_b_obtener_sig_clave;
71 PERR("Creando indice con Arbol B*");
72 PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
76 /* hacer que la cantidad de claves quede par o impar, no me acuerdo (SAGAR)!!!*/
77 PERR("Creando indice con Arbol B+");
78 tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
79 tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
80 emufs_b_plus_crear(tmp);
81 PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!");
88 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
90 /* TODO Sacar el indice de la lista en EMUFS */
94 if (i->tipo == IDX_STRING)
95 emufs_destruir(i->emu_string);
96 if (i->funcion != IND_PRIMARIO)
97 emufs_destruir(i->emu_mult);
103 void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato)
105 INDICE *iter = primero;
108 iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato);
113 INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
115 return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data));
118 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
123 if (idx == NULL) PERR("NULL INDEX!");
125 switch (idx->tipo_dato) {
127 k.f_clave= *((float *)(data));
130 k.i_clave = *((int *)(data));
133 /* TODO : Esto deja basura en el archivo.
134 * Ver de borrarla despues de usarla
137 /* Le agrego un * para diferenciarla, porque no la tengo abreviada! */
139 sprintf(salvar, "%s", data);
140 k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
150 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
157 switch (idx->tipo_dato) {
159 k.f_clave= *((float *)(data+idx->offset));
162 k.i_clave = *((int *)(data+idx->offset));
165 /* Tengo que buscar donde empieza el campo */
166 ptr = data + idx->offset;
170 if ((*ptr) == '\0') c--;
174 fprintf(stderr, "%s: ========> %s\n", idx->nombre, ptr);
175 k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
185 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
187 char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
188 EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
191 switch (idx->tipo_dato) {
193 return c1.f_clave < c2.f_clave;
195 return c1.i_clave < c2.i_clave;
198 sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
200 sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
201 /* Salteo el caracter que indica si la clave en temporal */
203 if (*sc1 == '*') a = 1;
204 if (*sc2 == '*') b = 1;
205 error = (strcmp(sc1, sc2) < 0);
213 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
215 char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
216 EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
219 switch (idx->tipo_dato) {
221 return c1.f_clave == c2.f_clave;
223 return c1.i_clave == c2.i_clave;
226 sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
227 if (sc1 == NULL) return 0;
229 sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
234 /* Salteo el caracter que indica si la clave en temporal */
236 if (*sc1 == '*') a=1;
237 if (*sc2 == '*') b=1;
238 error = (strcmp(sc1, sc2) == 0);
246 void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst)
250 EMUFS_REG_SIZE dummy;
252 switch (idx->tipo_dato) {
254 (*((float *)dst)) = k.f_clave;
257 (*((int *)dst)) = k.f_clave;
261 leido = idx->emu_string->leer_registro(idx->emu_string, k, &dummy, &error);
262 strcpy((char *)dst, leido);
268 void emufs_indice_borrar(INDICE *primero, CLAVE k, INDICE_DATO dato)
270 INDICE *iter = primero;
273 iter->borrar_entrada(iter, k, dato);