]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.c
Una bobada, pongo un FIXME para acordarnos de limpiar algo que mejor no tocar ahora...
[z.facultad/75.06/emufs.git] / emufs / tipo3.c
index 30f63f46781ab3bf952785f640f82a447247304d..c287cb4295ddc3c839c82beed50b45492ad202c0 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 ){
-                               if ( cant_bloques == 1 )
+                               if ( cant_bloques == 0 )
                                        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];
 
+       memset(&stats,0,sizeof(EMUFS_Estadisticas));
        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;   
        }
        
-       /* No hace falta el fseek ¿? */
        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);
+               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);
-       /*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;   
 }
@@ -396,7 +400,7 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE
        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 ){
+               if ( block == EMUFS_NOT_FOUND ) {
                        return NULL;
                }
                if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
@@ -427,13 +431,14 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE
                if ( block == EMUFS_NOT_FOUND ){
                        return NULL;
                }
-               cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
+               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);
@@ -447,6 +452,7 @@ void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE
                
                /* 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);