]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.c
Se reimplementa leer_registro_raw() y se rellena espacio libre con ceros para GUI.
[z.facultad/75.06/emufs.git] / emufs / tipo3.c
index 946186c2543c5bb8049398a78c74e35454e6f2aa..8e4011300e7a375c19a61cf143a8dedd2c91f118 100644 (file)
@@ -37,8 +37,8 @@
 
 #include "tipo3.h"
 #include "error.h"
+#include "common.h"
 #include <unistd.h>
-#include <sys/types.h>
 #include <stdio.h>
 #include <string.h>
 
@@ -148,7 +148,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)
 {
        EMUFS_REG_ID ID_aux;
-       EMUFS_FREE fs;
+       EMUFS_FREE fs, new_fs;
        EMUFS_BLOCK_ID num_bloque;
        EMUFS_BLOCK_SIZE cant;
        FILE *file;
@@ -206,8 +206,10 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
                        }
 
                        /* grabo el nuevo registro en el archivo de espacios libres */
-                       if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
-                       if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
+                       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 ( emufs_fsc_agregar(emu, num_bloque+i, new_fs) ) {
                                fclose(file);
                                free(bloque);
                                return -1;
@@ -258,8 +260,9 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t
                                        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));
+                                       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 ){
                                        fclose(file);
                                        if (bloque) free(bloque);
@@ -304,10 +307,13 @@ int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
        EMUFS_BLOCK_SIZE ptr_elim;
        EMUFS_BLOCK_SIZE ptr_mov;
        EMUFS_REG_ID ID_aux;
-       EMUFS_FREE fs;
+       EMUFS_FREE fs, new_fs;
        char *bloque;
-       int err = 0, i;
+       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 (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
                /* TODO Manejo de errores */
@@ -343,10 +349,10 @@ int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
                PERR("No se pudo grabar el bloque"); 
                return -1;
        }
-
+       
        /*actualizo archivo .fsc*/
-       if ( emu->tam_bloque < emu->tam_reg ) {
-               for (i=0; i<emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1; i++)
+       if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg ) {
+               for (i=0; i<cant_bloques; i++)
                        if (emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque)) {
                                PERR("no se pudo agregar fsc"); 
                                free(bloque);
@@ -380,33 +386,48 @@ int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
 
 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
 {
-       FILE *f;
+       int err = 0,err1 = 0, err2 = 0, err3 = 0;
        EMUFS_Estadisticas stats;
-       EMUFS_REG_ID *tmp;
-       char name_f[255];
-
        memset(&stats,0,sizeof(EMUFS_Estadisticas));
-       strcpy(name_f,emu->nombre);
-       strcat(name_f,".dat");
-       if ( (f = fopen(name_f,"r")) == NULL){
-                       PERR("No se pudo abrir el archivo");
-                       return stats;   
+       
+       { /* obtengo tamaño del archivo en bytes */
+               char name_f[255];
+               strcpy(name_f, emu->nombre);
+               strcat(name_f, ".dat");
+               stats.tam_archivo = emufs_common_get_file_size(name_f, &err);
+               if (err) {
+                       PERR("no se pudo obtener el tamaño del archivo");
+                       return stats;
+               }
        }
        
-       fseek(f,0,SEEK_END);
-       stats.tam_archivo_bytes = ftell(f);
-       stats.cant_bloques = (stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
+       /* obtengo la cantidad de bloques en el archivo */
+       stats.cant_bloques = (stats.tam_archivo-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
                                                  emu->tam_bloque;
-       tmp = emufs_idx_get(emu, &stats.tam_archivo);
-       if (tmp) free(tmp);
-       stats.info_control = stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
+
+       /* obtengo la cantidad de registros en el archivo */
+       {
+               EMUFS_REG_ID *tmp = emufs_idx_get(emu, &stats.cant_registros);
+               if (tmp) free(tmp); /* libera memoria innecesaria */
+       }
+
+       /* obtengo información de control que guarda el archivo .dat */
+       stats.tam_info_control_dat = stats.cant_registros*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
                                                 sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
+
        /* Obtengo las stats de FSC */
        stats.total_fs = emufs_fsc_get_total_fs(emu);
        stats.media_fs = emufs_fsc_get_media_fs(emu);
        emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
+       
+       /* obtengo informacion de control guardada por los archivos auxiliares */
+       stats.tam_archivos_aux = emufs_idx_get_file_size(emu,&err1) + emufs_fsc_get_file_size(emu,&err2)
+                                                       + emufs_did_get_file_size(emu,&err3);
+       if (err1 || err2 || err3) {
+               PERR("Hubo problemas en lectura de filesize archivos auxiliares");
+               return stats;
+       }               
 
-       fclose(f);
        return stats;   
 }
 
@@ -512,12 +533,12 @@ void emufs_tipo3_compactar(EMUFS *emu)
 
        tmp = emufs_idx_get(emu, &max_id);
        if (tmp) free(tmp);
-       for( i=0; i<=max_id; i++){
+       for( i=0; i<max_id; i++){
                /* si el id no existe paso al siguiente*/
                if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
                reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
                if (err){
-                       PERR("No se pudo leer el registro");
+                       PERR("No se pudo leer el registro para reacomodar");
                        return;
                }
                emufs_tipo3_borrar_registro(emu, i);