]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
* Un poco de doc
[z.facultad/75.06/emufs.git] / emufs / indices.c
index 8766054017aa16eca145e708fd9a72bc1659344f..28c1340c42720269d044b4a918c300d93df7ecf0 100644 (file)
@@ -1,11 +1,14 @@
 
 #include "indices.h"
 #include "emufs.h"
+#include "indice_b.h"
+#include "common.h"
 
-INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset)
+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 len;
        INDICE *tmp;
+       char string_file[255];
        tmp = (INDICE *)malloc(sizeof(INDICE));
        if (tmp == NULL) return NULL;
 
@@ -22,16 +25,45 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TI
        strcpy(tmp->nombre, nombre);
 
        tmp->tipo = tipo;
+       switch (tipo) {
+               case IND_PRIMARIO:
+                       tmp->emu_mult = NULL;
+               break;
+               case IND_SELECCION:
+               case IND_EXAHUSTIVO:
+                       sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "multiples");
+                       tmp->emu_mult = emufs_crear(string_file, T2, 0, 0);
+       }
+
        tmp->tipo_dato = tipo_dato;
+       switch (tipo_dato) {
+               case IDX_STRING:
+                       sprintf(string_file, "%s_%s_%s", emu->nombre, nombre, "string");
+                       tmp->emu_string = emufs_crear(string_file, T2, 0, 0);
+               break;
+               case IDX_FLOAT:
+               case IDX_INT:
+                       tmp->emu_string = NULL;
+       }
 
+       tmp->tam_bloque = tam_bloque;
+       tmp->funcion = funcion;
        tmp->offset = offset;
        tmp->sig = NULL;
 
        switch (tipo) {
-               case IND_B_MAS:
-                       /* llenar metodos */
+               case IND_B:
+                       PERR("Creando indice con Arbol B");
+                       emufs_indice_b_crear(tmp);
+                       tmp->agregar_entrada = emufs_indice_b_insertar;
+                       tmp->borrar_entrada = emufs_indice_b_borrar;
+                       tmp->existe_entrada = emufs_indice_b_buscar;
+                       tmp->buscar_entradas = NULL;
+               break;
                case IND_B_ASC:
                        /* llenar metodos */
+                       PERR("Creando indice con Arbol B*");
+                       PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
                        break;
        }
 
@@ -41,24 +73,118 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TI
 void emufs_indice_destruir(EMUFS *emu, INDICE *i)
 {
        /* TODO Sacar el indice de la lista en EMUFS */
-       
+
+       if (i->tipo == IDX_STRING)
+               emufs_destruir(i->emu_string);
        free(i->filename);
        free(i->nombre);
        free(i);
 }
 
+void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato)
+{
+       INDICE *iter = primero;
+
+       while (iter) {
+               iter->agregar_entrada(iter, emufs_indice_generar_clave(iter, data), dato);
+               iter = iter->sig;
+       }
+}
+
+INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
+{
+       return primero->existe_entrada(primero, emufs_indice_generar_clave_desde_valor(primero, data));
+}
+
+CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
+{
+       CLAVE k;
+       if (idx == NULL) PERR("NULL INDEX!");
+
+       switch (idx->tipo_dato) {
+               case IDX_FLOAT:
+                       k.f_clave= *((float *)(data));
+               break;
+               case IDX_INT:
+                       k.i_clave = *((int *)(data));
+               case IDX_STRING:
+                       k = k;
+                       /* XXX Y DE QUE COLOR NOS PINTAMOS ACA?
+                        *
+                        * ESTA EL PROBLEMA DE QUE ESTO SE GENERA ON THE FLY
+                        * Y NOSOTROS TENEMOS COSAS EN UN ARCHIVO DE TIPO2
+                        *
+                        * COMO GENERAMOS LA CLAVE???
+                        */
+       }
+
+       return k;
+}
 
-CLAVE emufs_indice_obtenet_clave(INDICE *idx, char *data)
+CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
 {
        CLAVE k;
+       int error;
+
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
                        k.f_clave= *((float *)(data+idx->offset));
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data+idx->offset));
+               break;
+               case IDX_STRING:
+                       k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
+                                                                               data+idx->offset,
+                                                                               strlen(data+idx->offset)+1,
+                                                                               &error
+                                                                       );
        }
 
        return k;
 }
 
+int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
+{
+       char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
+       EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
+       int error;
+
+       switch (idx->tipo_dato) {
+               case IDX_FLOAT:
+                       return c1.f_clave < c2.f_clave;
+               case IDX_INT:
+                       return c1.i_clave < c2.i_clave;
+               case IDX_STRING:
+                       sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
+                       error = (strcmp(sc1, sc2) < 0);
+                       free(sc1);
+                       free(sc2);
+                       return error;
+       }
+       return 0;
+}
+
+int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
+{
+       char *sc1, *sc2; /* Si es IDX_STRING aca pongo los strings leidos */
+       EMUFS_REG_SIZE dummy; /* No me interesa el tamaño del string aca! */
+       int error;
+
+       switch (idx->tipo_dato) {
+               case IDX_FLOAT:
+                       return c1.f_clave == c2.f_clave;
+               case IDX_INT:
+                       return c1.i_clave == c2.i_clave;
+               case IDX_STRING:
+                       sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
+                       error = (strcmp(sc1, sc2) == 0);
+                       free(sc1);
+                       free(sc2);
+                       return error;
+       }
+       return 0;
+}
+