]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.c
Se implementa borrar_registro en tipo1. Soporta registros mas grandes que el
[z.facultad/75.06/emufs.git] / emufs / tipo3.c
index 30f63f46781ab3bf952785f640f82a447247304d..8f56f842f98d2e9a47128aebab1a0fd610bc4cbb 100644 (file)
@@ -80,7 +80,7 @@ void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
                        memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
                        iterador += sizeof(EMUFS_REG_ID);
                        if ( ID_aux == ID ){
                        memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
                        iterador += sizeof(EMUFS_REG_ID);
                        if ( ID_aux == ID ){
-                               if ( cant_bloques == 1 )
+                               if ( cant_bloques == 0 )
                                        memcpy(registro,bloque+iterador,emu->tam_reg);
                                else {
                                        if ( cant_bloques-1 == i ) 
                                        memcpy(registro,bloque+iterador,emu->tam_reg);
                                else {
                                        if ( cant_bloques-1 == i ) 
@@ -357,6 +357,7 @@ EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
        EMUFS_REG_ID *tmp;
        char name_f[255];
 
        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){
        strcpy(name_f,emu->nombre);
        strcat(name_f,".dat");
        if ( (f = fopen(name_f,"r")) == NULL){
@@ -364,16 +365,19 @@ EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
                        return stats;   
        }
        
                        return stats;   
        }
        
-       /* No hace falta el fseek ¿? */
        fseek(f,0,SEEK_END);
        stats.tam_archivo_bytes = ftell(f);
        fseek(f,0,SEEK_END);
        stats.tam_archivo_bytes = ftell(f);
-       stats.cant_bloques = ( ftell(f) - sizeof(EMUFS_Tipo) - sizeof(EMUFS_BLOCK_SIZE) - sizeof(EMUFS_REG_SIZE) )/ emu->tam_bloque;
+       stats.cant_bloques =(stats.tam_archivo_bytes-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);
        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)+
+                                               sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
+       /* Obtengo las stats de FSC */
        stats.total_fs = emufs_fsc_get_total_fs(emu);
        stats.total_fs = emufs_fsc_get_total_fs(emu);
-       /*verificar el segentado*/
-       stats.info_control = stats.tam_archivo*sizeof(EMUFS_REG_ID) + sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE) + sizeof(EMUFS_REG_SIZE);
-       stats.media_fs = stats.total_fs/stats.cant_bloques;
+       stats.media_fs = emufs_fsc_get_media_fs(emu);
+       emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
+
        fclose(f);
        return stats;   
 }
        fclose(f);
        return stats;   
 }