]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
Tipo1.h y Tipo3.h, cambio de include. indices.c, comienzo acomplamiento, y indice_bpl...
[z.facultad/75.06/emufs.git] / emufs / indices.c
index fe3e5193968398d3c2a0e2b56f9c63ba50a52c56..18e33278a545aa5c1d11abd400a99deb939e26ae 100644 (file)
@@ -2,7 +2,7 @@
 #include "indices.h"
 #include "emufs.h"
 #include "indice_b.h"
 #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)
 {
@@ -50,6 +50,8 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
 
        tmp->offset = offset;
        tmp->sig = NULL;
 
        tmp->offset = offset;
        tmp->sig = NULL;
+       tmp->size_claves = 0;
+       tmp->size_hijos = 0;
 
        switch (tipo) {
                case IND_B:
 
        switch (tipo) {
                case IND_B:
@@ -65,6 +67,14 @@ INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, IND
                        PERR("Creando indice con Arbol B*");
                        PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
                        break;
                        PERR("Creando indice con Arbol B*");
                        PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
                        break;
+               case IND_B_PLUS:
+                       /* llenar metodos */
+                       PERR("Creando indice con Arbol B+");
+                       tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(int))/2; /* Fix sizeof(CLAVE?) */
+                       tmp->size_hijos = tmp->size_claves + sizeof(int);
+                       emufs_b_plus_crear(tmp);
+                       PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!");
+                       break;
        }
 
        return tmp;
        }
 
        return tmp;
@@ -98,7 +108,9 @@ INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data)
 
 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
 {
 
 CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
 {
+       int error;
        CLAVE k;
        CLAVE k;
+       char salvar[100];
        if (idx == NULL) PERR("NULL INDEX!");
 
        switch (idx->tipo_dato) {
        if (idx == NULL) PERR("NULL INDEX!");
 
        switch (idx->tipo_dato) {
@@ -107,15 +119,20 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data));
                break;
                case IDX_INT:
                        k.i_clave = *((int *)(data));
+               break;
                case IDX_STRING:
                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???
+                       /* TODO : Esto deja basura en el archivo.
+                        * Ver de borrarla despues de usarla
                         */
                         */
+                       error = 0;
+                       /* Le agrego un * para diferenciarla, porque no la tengo abreviada! */
+                       /* Hack feo :-D */
+                       sprintf(salvar, "*%s", data);
+                       k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
+                                                                               salvar,
+                                                                               strlen(salvar)+1,
+                                                                               &error
+                                                                       );
        }
 
        return k;
        }
 
        return k;
@@ -134,6 +151,7 @@ CLAVE emufs_indice_generar_clave(INDICE *idx, char *data)
                        k.i_clave = *((int *)(data+idx->offset));
                break;
                case IDX_STRING:
                        k.i_clave = *((int *)(data+idx->offset));
                break;
                case IDX_STRING:
+                       error = 0;
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
                                                                                data+idx->offset,
                                                                                strlen(data+idx->offset)+1,
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
                                                                                data+idx->offset,
                                                                                strlen(data+idx->offset)+1,
@@ -148,7 +166,7 @@ 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! */
 {
        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;
+       int error=0, a, b;
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
@@ -158,7 +176,11 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2)
                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);
                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);
+                       /* 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);
                        free(sc1);
                        free(sc2);
                        return error;
                        free(sc1);
                        free(sc2);
                        return error;
@@ -170,7 +192,7 @@ 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! */
 {
        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;
+       int error, a, b;
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
@@ -178,13 +200,18 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
                case IDX_INT:
                        return c1.i_clave == c2.i_clave;
                case IDX_STRING:
                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);
                        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);
                        sc2 = idx->emu_string->leer_registro(idx->emu_string, c2, &dummy, &error);
-                       error = (strcmp(sc1, sc2) == 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);
                        free(sc1);
                        free(sc2);
                        return error;
        }
        return 0;
 }
                        free(sc1);
                        free(sc2);
                        return error;
        }
        return 0;
 }
-