]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
Arreglo el problema de nico
[z.facultad/75.06/emufs.git] / emufs / indices.c
index 1728d1984c45b8fa401461c442ee4540ec4685b1..83dd5f6536a3eeba47b2deeeab28c97b1999dbe3 100644 (file)
@@ -2,9 +2,9 @@
 #include "indices.h"
 #include "emufs.h"
 #include "indice_b.h"
-#include "common.h"
+#include "indice_bplus.h"
 
-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)
+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)
 {
        int len;
        INDICE *tmp;
@@ -49,9 +49,13 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
        }
 
        tmp->offset = offset;
+       tmp->str_offset = str_offset;
        tmp->sig = NULL;
+       tmp->size_claves = 0;
+       tmp->size_hijos = 0;
 
-       switch (tipo) {
+       fprintf(stderr, "TIPO ARBOL= %d\n", tmp->tipo);
+       switch (tmp->tipo) {
                case IND_B:
                        PERR("Creando indice con Arbol B");
                        emufs_indice_b_crear(tmp);
@@ -59,11 +63,30 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
                        tmp->borrar_entrada = emufs_indice_b_borrar;
                        tmp->existe_entrada = emufs_indice_b_buscar;
                        tmp->buscar_entradas = emufs_indice_b_buscar_muchos;
+                       tmp->obtener_menor_clave = emufs_indice_b_obtener_menor_clave;
+                       tmp->obtener_mayor_clave = emufs_indice_b_obtener_mayor_clave;
+                       tmp->obtener_sig_clave = emufs_indice_b_obtener_sig_clave;
                break;
                case IND_B_ASC:
                        /* llenar metodos */
                        PERR("Creando indice con Arbol B*");
-                       PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
+                       emufs_indice_b_crear(tmp);
+                       tmp->agregar_entrada = emufs_indice_b_asc_insertar;
+                       tmp->borrar_entrada = emufs_indice_b_borrar;
+                       tmp->existe_entrada = emufs_indice_b_buscar;
+                       tmp->buscar_entradas = emufs_indice_b_buscar_muchos;
+                       tmp->obtener_menor_clave = emufs_indice_b_obtener_menor_clave;
+                       tmp->obtener_mayor_clave = emufs_indice_b_obtener_mayor_clave;
+                       tmp->obtener_sig_clave = emufs_indice_b_obtener_sig_clave;
+                       break;
+               case IND_B_PLUS:
+                       /* llenar metodos */
+                       /* hacer que la cantidad de claves quede par o impar, no me acuerdo (SAGAR)!!!*/
+                       PERR("Creando indice con Arbol B+");
+                       tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
+                       tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
+                       emufs_b_plus_crear(tmp);
+                       PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!");
                        break;
        }
 
@@ -74,8 +97,12 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i)
 {
        /* TODO Sacar el indice de la lista en EMUFS */
 
+       if (!i) return;
+
        if (i->tipo == IDX_STRING)
                emufs_destruir(i->emu_string);
+       if (i->funcion != IND_PRIMARIO)
+               emufs_destruir(i->emu_mult);
        free(i->filename);
        free(i->nombre);
        free(i);
@@ -117,12 +144,12 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
                        error = 0;
                        /* Le agrego un * para diferenciarla, porque no la tengo abreviada! */
                        /* Hack feo :-D */
-                       sprintf(salvar, "*%s", data);
+                       sprintf(salvar, "%s", data);
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
-                                                                               salvar,
-                                                                               strlen(salvar)+1,
-                                                                               &error
-                                                                       );
+                               salvar,
+                               strlen(salvar)+1,
+                               &error
+                       );
        }
 
        return k;
@@ -132,6 +159,8 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
 {
        CLAVE k;
        int error;
+       int c;
+       char *ptr;
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
@@ -141,12 +170,21 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
                        k.i_clave = *((int *)(data+idx->offset));
                break;
                case IDX_STRING:
+                       /* Tengo que buscar donde empieza el campo */
+                       ptr = data + idx->offset;
+                       c = idx->str_offset;
+
+                       while (c) {
+                               if ((*ptr) == '\0') c--;
+                               ptr++;
+                       }
                        error = 0;
+                       fprintf(stderr, "%s: ========> %s\n", idx->nombre, ptr);
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
-                                                                               data+idx->offset,
-                                                                               strlen(data+idx->offset)+1,
-                                                                               &error
-                                                                       );
+                               ptr,
+                               strlen(ptr)+1,
+                               &error
+                       );
        }
 
        return k;
@@ -164,13 +202,15 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
                case IDX_INT:
                        return c1.i_clave < c2.i_clave;
                case IDX_STRING:
+                       error = 0;
                        sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       error = 0;
                        sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
                        /* Salteo el caracter que indica si la clave en temporal */
                        a = b = 0;
                        if (*sc1 == '*') a = 1;
                        if (*sc2 == '*') b = 1;
-                       error = (strcmp(sc1+a, sc2+b) < 0);
+                       error = (strcmp(sc1, sc2) < 0);
                        free(sc1);
                        free(sc2);
                        return error;
@@ -192,13 +232,18 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
                case IDX_STRING:
                        error = 0;
                        sc1 = idx->emu_string->leer_registro(idx->emu_string, c1, &dummy, &error);
+                       if (sc1 == NULL) return 0;
                        error = 0;
                        sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
+                       if (sc2 == NULL) {
+                               free(sc2);
+                               return 0;
+                       }
                        /* Salteo el caracter que indica si la clave en temporal */
                        a = b = 0;
                        if (*sc1 == '*') a=1;
                        if (*sc2 == '*') b=1;
-                       error = (strcmp(sc1+a, sc2+b) == 0);
+                       error = (strcmp(sc1, sc2) == 0);
                        free(sc1);
                        free(sc2);
                        return error;
@@ -206,3 +251,34 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
        return 0;
 }
 
+void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst)
+{
+       int error;
+       char *leido;
+       EMUFS_REG_SIZE dummy;
+
+       switch (idx->tipo_dato) {
+               case IDX_FLOAT:
+                       (*((float *)dst)) = k.f_clave;
+               break;
+               case IDX_INT:
+                       (*((int *)dst)) = k.f_clave;
+               break;
+               case IDX_STRING:
+                       error = 0;
+                       leido = idx->emu_string->leer_registro(idx->emu_string, k, &dummy, &error);
+                       strcpy((char *)dst, leido);
+                       free(leido);
+       }
+}
+
+
+void emufs_indice_borrar(INDICE *primero, CLAVE k, INDICE_DATO dato)
+{
+       INDICE *iter = primero;
+
+       while (iter) {
+               iter->borrar_entrada(iter, k, dato);
+               iter = iter->sig;
+       }
+}