]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.c
* Mas detalles que van surgiendo mientras voy pensando.
[z.facultad/75.06/emufs.git] / emufs / tipo3.c
index 8e4011300e7a375c19a61cf143a8dedd2c91f118..4330731b89c08b5cc97a06bd0a6148af83735572 100644 (file)
 #include <stdio.h>
 #include <string.h>
 
-/** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
-void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
+/** Leo un registro del archivo, devuelve NULL si no lo encuentra.**/
+void* emufs_tipo3_leer_registro(EMUFS *emu, CLAVE clave,
                EMUFS_REG_SIZE* reg_size, int* err)
 {
+       INDICE_DATO dato;
        char* bloque;
        char* registro; /* registro a leer */
        EMUFS_BLOCK_ID block;
-       EMUFS_REG_ID ID_aux;
+       EMUFS_REG_ID ID_aux, ID;
        EMUFS_BLOCK_SIZE iterador = 0;
        int cant_bloques = 0, resto, i, copiado=0;
-       
+
        cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
+       if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque ) 
+               cant_bloques = 1;
        
        /*si existe, lo busco en el archivo de bloques*/
-       block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
+       if (emu->indices != NULL) {
+               /* TODO : Verificar donde esta el indice primario */
+               dato = emu->indices->existe_entrada(emu->indices, clave);
+               block = dato.bloque;
+               ID = dato.id;
+       } else {
+               /* Si no tengo claves, uso el campo entero para pasar un ID
+                * directamente.
+                */
+               ID = clave.i_clave;
+               block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
+       }
        if ( block == EMUFS_NOT_FOUND ){
                PERR("No se encontro el bloque");
                *err = -1;
@@ -147,6 +161,7 @@ void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_BLOCK_ID ID, int* err)
 
 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
 {
+       INDICE_DATO idx_data;
        EMUFS_REG_ID ID_aux;
        EMUFS_FREE fs, new_fs;
        EMUFS_BLOCK_ID num_bloque;
@@ -154,20 +169,28 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
        FILE *file;
        char name_f[255];
        char* bloque = NULL;
-       int cant_bloques, resto, i=0, lugar;
+       int cant_bloques, resto, i=0;
        
        strcpy(name_f,emu->nombre);
        strcat(name_f,".dat");
        
        cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
+       if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque ) 
+               cant_bloques = 1;
+       
        resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
-       lugar = emu->tam_reg + sizeof(EMUFS_REG_ID);
-       if ( emu->tam_bloque < emu->tam_reg - sizeof(EMUFS_REG_ID) )
-               lugar = emu->tam_bloque;
-       /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
-       num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs);
+
+
+       
+       if ( cant_bloques == 1 ) 
+               /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
+               num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg+sizeof(EMUFS_REG_ID), &fs);
+       else 
+               /* me devuelve el ID del bloque donde quepan n registros y el espacio libre en "fs"*/
+               num_bloque = emufs_fsc_buscar_n_lugares(emu, cant_bloques, emu->tam_bloque, &fs, err);
+
        /*si no hay bloques con suficiente espacio creo un bloque nuevo */
-       if (num_bloque == -1) {
+       if (num_bloque == EMUFS_NOT_FOUND) {
                if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
                /*tengo que buscar un ID valido para el nuevo registro*/
                ID_aux = emufs_idx_get_new_id(emu, err);
@@ -203,12 +226,15 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
                                        free(bloque);
                                        return -1;
                                }
+                               idx_data.id = ID_aux;
+                               idx_data.bloque = num_bloque;
+                               emufs_indice_agregar(emu->indices, ptr, idx_data);
                        }
-
+               
                        /* grabo el nuevo registro en el archivo de espacios libres */
-                       if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) >= emu->tam_reg ) 
-                               new_fs = emu->tam_bloque - emu->tam_reg - sizeof(EMUFS_REG_ID);
-                       else new_fs = emu->tam_bloque - resto - sizeof(EMUFS_REG_ID);
+                       if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ) 
+                               new_fs = emu->tam_bloque - sizeof(EMUFS_REG_ID) - resto ;
+                       else new_fs = emu->tam_bloque - sizeof(EMUFS_REG_ID) - emu->tam_reg ;
                        if ( emufs_fsc_agregar(emu, num_bloque+i, new_fs) ) {
                                fclose(file);
                                free(bloque);
@@ -220,6 +246,7 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
                /*tengo que buscar un ID valido para el nuevo registro*/
                ID_aux = emufs_idx_get_new_id(emu, err);
                for (i=0; i<cant_bloques; i++){
+                       resto = emu->tam_bloque-sizeof(EMUFS_REG_ID);
                        /*cargo el bloque en "bloque"*/
                        if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) {
                                /* TODO Manejo de errores */
@@ -252,18 +279,22 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
                        }
                        
                        /*actualizo el archivo de espacios libres*/
-                       if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) > emu->tam_reg ){
-                               resto = emu->tam_reg;
-                               if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
+                       if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ){
+                               /*Si el registro ocupa mas de un bloque  (original) resto = emu->tam_bloque-sizeof(EMUFS_REG_ID)*/
+                               resto += sizeof(EMUFS_REG_ID);
+                               /*resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID)) + sizeof(EMUFS_REG_ID);*/
+                               if ( cant_bloques-1 == i )
+                                       resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID))+sizeof(EMUFS_REG_ID);
+                               /*printf("fs-resto = %d\n", fs-resto);*/
+                               if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
                                        fclose(file);
                                        if (bloque) free(bloque);
                                        return -1;
                                }
                        } else {        
-                               resto += sizeof(EMUFS_REG_ID);
-                               if ( cant_bloques-1 == i )
-                                       resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID))+sizeof(EMUFS_REG_ID);
-                               if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
+                               /* si ocupa menos de un bloque*/
+                               resto = emu->tam_reg;
+                               if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
                                        fclose(file);
                                        if (bloque) free(bloque);
                                        return -1;
@@ -274,6 +305,9 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
                                        if (bloque) free(bloque);
                                        return -1;
                                }
+                               idx_data.id = ID_aux;
+                               idx_data.bloque = num_bloque;
+                               emufs_indice_agregar(emu->indices, ptr, idx_data);
                        }
                }
        }
@@ -301,26 +335,36 @@ int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
 }
 
 /*borra un registro de un bloque y acomoda los registros que quedan*/
-int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
+int emufs_tipo3_borrar_registro(EMUFS *emu, CLAVE k)
 {
        EMUFS_BLOCK_SIZE num_bloque;
        EMUFS_BLOCK_SIZE ptr_elim;
        EMUFS_BLOCK_SIZE ptr_mov;
-       EMUFS_REG_ID ID_aux;
-       EMUFS_FREE fs, new_fs;
+       EMUFS_REG_ID ID_aux, ID;
+       EMUFS_FREE fs;
+       INDICE_DATO dato;
        char *bloque;
        int err = 0, i, cant_bloques;
 
        /*cantidad de bloques que ocupa un registro*/
        cant_bloques = emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1;
-       
-       num_bloque = emufs_idx_buscar_registro(emu, ID);
+       if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque ) 
+               cant_bloques = 1;
+
+       PERR("Buscando datos del registro en el indice");
+       dato = emu->indices->existe_entrada(emu->indices, k);
+       num_bloque = dato.bloque; /*emufs_idx_buscar_registro(emu, ID);*/
+       ID = dato.id;
+
        if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
                /* TODO Manejo de errores */
                PERR("no se pudo leer el bloque");
                return -1;
        }
 
+       PERR("Borrando clave");
+       /* TODO Borrar en todos los indices!! */
+       emu->indices->borrar_entrada(emu->indices, k);
        /*apunto al registro que voy a eliminar*/
        ptr_elim = 0;
        while ( ptr_elim < emu->tam_bloque ){
@@ -342,7 +386,7 @@ int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
        }
 
        /*grabo el bloque en el archivo*/       
-       if ( emu->tam_bloque < emu->tam_reg ) 
+       if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ) 
                memset(bloque, 0, emu->tam_bloque);
        if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
                free(bloque);
@@ -433,93 +477,52 @@ EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
 
 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
 {
-       emufs_tipo3_borrar_registro(emu, id);
+       /*emufs_tipo3_borrar_registro(emu, id);*/
        return emufs_tipo3_grabar_registro(emu, data, size, error);
 }
 
 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
 {
-       char* bloque, *tmp, *cur;
+       char* bloque;
        EMUFS_BLOCK_ID block;
        EMUFS_REG_ID ID_aux;
        EMUFS_BLOCK_SIZE iterador = 0;
-       int err, cant_bloques, i;
+       int err;
        
        bloque = NULL;
-       if (emu->tam_reg < emu->tam_bloque) {
-               /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
-               block = emufs_idx_buscar_registro(emu,ID);
-               if ( block == EMUFS_NOT_FOUND ) {
-                       return NULL;
-               }
-               if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
-                       return NULL;
-               }
-               
-               ID_aux = -1;
-               iterador = 0;
-       
-               /* Busco el offset desde el comienzo desde donde arranca el registro
-                * buscado, para luego resaltarlo en al GUI
-                */
-               while ( iterador < emu->tam_bloque ) {
-                       memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
-                       if ( ID_aux == ID ){
-                               *pos = iterador; 
-                               *size = emu->tam_bloque;
-                               break;
-                       }
-                       iterador += sizeof(EMUFS_REG_ID);
-                       iterador += emu->tam_reg;
-               }
-       } else {
-               /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */
                
-               /* Busco el primer bloque */
-               block = emufs_idx_buscar_registro(emu,ID);
-               if ( block == EMUFS_NOT_FOUND ){
-                       return NULL;
-               }
-               cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1;
-               *size = emu->tam_bloque*cant_bloques /*+ cant_bloques*2*/ - sizeof(EMUFS_REG_ID)*(cant_bloques-1);
-               bloque = (char *)malloc(*size);
-               cur = bloque;
-               *pos = 0; 
-
-               /* El bloque 0 va completo */
-               err = 0;
-               if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
-                       /* Oops! ... un bloque no existe, todo mal! */
-                       free(bloque);
-                       return NULL;
-               }
-               memcpy(cur, tmp, emu->tam_bloque);
-               cur += emu->tam_bloque;
-/*             memcpy(cur, "<>", 2);
-               cur += 2;*/
-               free(tmp);
+       /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
+       block = emufs_idx_buscar_registro(emu,ID);
+       if ( block == EMUFS_NOT_FOUND ) {
+               return NULL;
+       }
+       if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
+               return NULL;
+       }
                
-               /* En resto de los bloques no pongo el ID porque ya esta en el primero */
-               for(i=1; i<cant_bloques; i++) {
-                       err = 0;
-                       if ((tmp = emufs_tipo3_leer_bloque(emu, block+i, &err)) == NULL) {
-                               /* Oops! ... un bloque no existe, todo mal! */
-                               free(bloque);
-                               return NULL;
-                       }
-                       memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID));
-                       cur += emu->tam_bloque - sizeof(EMUFS_REG_ID);
-/*                     memcpy(cur, "<>", 2);
-                       cur += 2;*/
-                       free(tmp);
+       ID_aux = -1;
+       iterador = 0;
+       
+       /* Busco el offset desde el comienzo desde donde arranca el registro
+        * buscado, para luego resaltarlo en al GUI
+        */
+       while ( iterador < emu->tam_bloque ) {
+               memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
+               if ( ID_aux == ID ){
+                       *pos = iterador; 
+                       *size = emu->tam_bloque;
+                       break;
                }
-               (*cur) = '\0';
+               iterador += sizeof(EMUFS_REG_ID);
+               iterador += emu->tam_reg;
        }
        return bloque;
 }
 
 void emufs_tipo3_compactar(EMUFS *emu)
 {
+/* TODO ARREGLAR */
+#ifdef PEPITO_EL_GALAN 
        EMUFS_REG_ID *tmp, max_id;
        EMUFS_BLOCK_ID block_id;
        EMUFS_REG_SIZE size;
@@ -545,17 +548,16 @@ void emufs_tipo3_compactar(EMUFS *emu)
                ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
                free(reg);
        }
-       /*tengo que truncar el archivo*/
-       /*bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1;
-       */
+       /*trunco el archivo sacando los bloques vacios*/
        block_id = emufs_fsc_buscar_lugar(emu, emu->tam_bloque, &fs);
        size = sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+block_id*emu->tam_bloque;
        if (truncate(name, size)!=0)
                PERR("NO TRUNQUE NADA");
        /*hay que truncar el fsc!!!*/
-       if(emu->tam_bloque<emu->tam_reg-sizeof(EMUFS_REG_ID)) block_id = block_id/2;
+       if(emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg) block_id = block_id/2;
        if (emufs_fsc_truncate(emu, block_id)!= 0)
                PERR("NO TURNQUE EL FSC");
+#endif
 }
 
 void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente,
@@ -575,3 +577,8 @@ void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, c
        }
        (*size1) = (*size2) = (*size3) = efs->tam_bloque;
 }
+
+int emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, CLAVE clave, int offset, EMUFS_BLOCK_ID num_bloque, int *err)
+{
+       return 0;
+}