]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.c
preparo un poco la cancha para empezar a insertar registros en el archivo de datos...
[z.facultad/75.06/emufs.git] / emufs / indices.c
index c7235d9cb07401941cf9e5fbc9ea21bc5e54349f..2fcf1c4a40be2e9cab31577dc855bed16b80e71b 100644 (file)
@@ -65,6 +65,11 @@ 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+");
+                       PERR("AÚN NO IMPLEMENTADO!!!!!!!!");
+                       break;
        }
 
        return tmp;
        }
 
        return tmp;
@@ -100,6 +105,7 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
 {
        int error;
        CLAVE k;
 {
        int error;
        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) {
@@ -114,13 +120,14 @@ CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data)
                         * Ver de borrarla despues de usarla
                         */
                        error = 0;
                         * Ver de borrarla despues de usarla
                         */
                        error = 0;
-                       PERR("VOY A GRABAR TEXTO EN ARCHIVO");
+                       /* 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,
                        k.i_clave = idx->emu_string->grabar_registro(idx->emu_string,
-                                                                               data,
-                                                                               strlen(data)+1,
+                                                                               salvar,
+                                                                               strlen(salvar)+1,
                                                                                &error
                                                                        );
                                                                                &error
                                                                        );
-                       fprintf(stderr, "GENERE CLAVE CON (%s) y estoy en ID=%d\n", data, k.i_clave);
        }
 
        return k;
        }
 
        return k;
@@ -154,7 +161,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=0;
+       int error=0, a, b;
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
 
        switch (idx->tipo_dato) {
                case IDX_FLOAT:
@@ -164,7 +171,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;
@@ -176,7 +187,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:
@@ -188,11 +199,14 @@ int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2)
                        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);
                        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);
-                       error = (strcmp(sc1, sc2) == 0);
-                       if (sc1) free(sc1);
-                       if (sc2) free(sc2);
+                       /* 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;
 }
                        return error;
        }
        return 0;
 }
-