]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/indices.c
* BUGFIX : un error de orden de condiciones hacia que las claves multiples
[z.facultad/75.06/emufs.git] / emufs / indices.c
1
2 #include "indices.h"
3 #include "emufs.h"
4 #include "indice_b.h"
5 #include "common.h"
6
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)
8 {
9         int len;
10         INDICE *tmp;
11         char string_file[255];
12         tmp = (INDICE *)malloc(sizeof(INDICE));
13         if (tmp == NULL) return NULL;
14
15         len = strlen(emu->nombre);
16         len += strlen(nombre);
17
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");
23
24         tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
25         strcpy(tmp->nombre, nombre);
26
27         tmp->tipo = tipo;
28         tmp->tipo_dato = tipo_dato;
29         switch (tipo_dato) {
30                 case IDX_STRING:
31                         sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "string");
32                         tmp->emu_string = emufs_crear(string_file, T2, 0, 0);
33                 break;
34                 case IDX_FLOAT:
35                 case IDX_INT:
36                         tmp->emu_string = NULL;
37         }
38
39         tmp->tam_bloque = tam_bloque;
40         tmp->funcion = funcion;
41         switch (funcion) {
42                 case IND_PRIMARIO:
43                         tmp->emu_mult = NULL;
44                 break;
45                 case IND_SELECCION:
46                 case IND_EXAHUSTIVO:
47                         sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "multiples");
48                         tmp->emu_mult = emufs_crear(string_file, T2, 0, 0);
49         }
50
51         tmp->offset = offset;
52         tmp->sig = NULL;
53
54         switch (tipo) {
55                 case IND_B:
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 = emufs_indice_b_buscar_muchos;
62                 break;
63                 case IND_B_ASC:
64                         /* llenar metodos */
65                         PERR("Creando indice con Arbol B*");
66                         PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
67                         break;
68         }
69
70         return tmp;
71 }
72
73 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
74 {
75         /* TODO Sacar el indice de la lista en EMUFS */
76
77         if (i->tipo == IDX_STRING)
78                 emufs_destruir(i->emu_string);
79         free(i->filename);
80         free(i->nombre);
81         free(i);
82 }
83
84 void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato)
85 {
86         INDICE *iter = primero;
87
88         while (iter) {
89                 iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato);
90                 iter = iter->sig;
91         }
92 }
93
94 INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
95 {
96         return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data));
97 }
98
99 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
100 {
101         CLAVE k;
102         if (idx == NULL) PERR("NULL INDEX!");
103
104         switch (idx->tipo_dato) {
105                 case IDX_FLOAT:
106                         k.f_clave= *((float *)(data));
107                 break;
108                 case IDX_INT:
109                         k.i_clave = *((int *)(data));
110                 case IDX_STRING:
111                         k = k;
112                         /* XXX Y DE QUE COLOR NOS PINTAMOS ACA?
113                          *
114                          * ESTA EL PROBLEMA DE QUE ESTO SE GENERA ON THE FLY
115                          * Y NOSOTROS TENEMOS COSAS EN UN ARCHIVO DE TIPO2
116                          *
117                          * COMO GENERAMOS LA CLAVE???
118                          */
119         }
120
121         return k;
122 }
123
124 CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
125 {
126         CLAVE k;
127         int error;
128
129         switch (idx->tipo_dato) {
130                 case IDX_FLOAT:
131                         k.f_clave= *((float *)(data+idx->offset));
132                 break;
133                 case IDX_INT:
134                         k.i_clave = *((int *)(data+idx->offset));
135                 break;
136                 case IDX_STRING:
137                         error = 0;
138                         k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
139                                                                                 data+idx->offset,
140                                                                                 strlen(data+idx->offset)+1,
141                                                                                 &error
142                                                                         );
143                         fprintf(stderr, "Grabe String en ID = %d\n", k.i_clave);
144         }
145
146         return k;
147 }
148
149 int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
150 {
151         char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
152         EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
153         int error=0;
154
155         switch (idx->tipo_dato) {
156                 case IDX_FLOAT:
157                         return c1.f_clave < c2.f_clave;
158                 case IDX_INT:
159                         return c1.i_clave < c2.i_clave;
160                 case IDX_STRING:
161                         fprintf(stderr, "--- 1 ---\n");
162                         fprintf(stderr, "--> %d\n", c1.i_clave);
163                         sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
164                         fprintf(stderr, "--- 2 ---\n");
165                         fprintf(stderr, "--> %d\n", c2.i_clave);
166                         sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
167                         fprintf(stderr, "--- 3 ---\n");
168                         error = (strcmp(sc1, sc2) < 0);
169                         free(sc1);
170                         free(sc2);
171                         return error;
172         }
173         return 0;
174 }
175
176 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
177 {
178         char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
179         EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
180         int error;
181
182         switch (idx->tipo_dato) {
183                 case IDX_FLOAT:
184                         return c1.f_clave == c2.f_clave;
185                 case IDX_INT:
186                         return c1.i_clave == c2.i_clave;
187                 case IDX_STRING:
188                         error = 0;
189                         fprintf(stderr, "--> %d\n", c1.i_clave);
190                         sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
191                         error = 0;
192                         fprintf(stderr, "--> %d\n", c2.i_clave);
193                         sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
194                         error = (strcmp(sc1, sc2) == 0);
195                         free(sc1);
196                         free(sc2);
197                         return error;
198         }
199         return 0;
200 }
201