]> 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 34d347effaf00420a3172c509a47e02b596b75f7..83dd5f6536a3eeba47b2deeeab28c97b1999dbe3 100644 (file)
@@ -4,7 +4,7 @@
 #include "indice_b.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,11 +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);
@@ -68,7 +70,14 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
                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 */
@@ -88,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);
@@ -133,10 +146,10 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
                        /* Hack feo :-D */
                        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;
@@ -146,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:
@@ -155,14 +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;
-                       PERR(idx->nombre);
-                       PERR(data+idx->offset);
+                       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;
@@ -210,8 +232,13 @@ 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;
@@ -244,3 +271,14 @@ void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst)
                        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;
+       }
+}