]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
Algunos detalles de coding style y pruebas de stats.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 18 Apr 2004 20:00:38 +0000 (20:00 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 18 Apr 2004 20:00:38 +0000 (20:00 +0000)
emufs/tipo1.c
emufs/tipo1_main.c

index 0e981af7458c361f547e647fc1fc0b71783619f4..9d1cd048728cc79fb079ee5da213b79dadafd26c 100644 (file)
@@ -475,9 +475,12 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
        return EMUFS_OK;
 }
 
        return EMUFS_OK;
 }
 
+/* \bug Si hay registros multibloque, no se calcula bien el
+ *         stats.tam_info_control_dat.
+ */
 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
 {
 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
 {
-       int err = 0,err1 = 0, err2 = 0, err3 = 0;
+       int err = 0;
        EMUFS_Estadisticas stats;
        memset(&stats, 0, sizeof(EMUFS_Estadisticas));
 
        EMUFS_Estadisticas stats;
        memset(&stats, 0, sizeof(EMUFS_Estadisticas));
 
@@ -513,10 +516,11 @@ EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
        emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
        
        /* obtengo informacion de control guardada por los archivos auxiliares */
        emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
        
        /* obtengo informacion de control guardada por los archivos auxiliares */
-       stats.tam_archivos_aux = emufs_idx_get_file_size(efs,&err1) + emufs_fsc_get_file_size(efs,&err2)
-                                                       + emufs_did_get_file_size(efs,&err3);
-       if (err1 || err2 || err3) {
-               PERR("Hubo problemas en lectura de filesize archivos auxiliares");
+       stats.tam_archivos_aux = emufs_idx_get_file_size(efs, &err)
+               + emufs_fsc_get_file_size(efs, &err)
+               + emufs_did_get_file_size(efs, &err);
+       if (err) {
+               PERR("error al obtener tamaño de alguno de los archivos auxiliares");
                return stats;
        }       
 
                return stats;
        }       
 
index f50456eb54e942aebb6fe9b34df07a67e388a8b9..15ac48292b09e29fe691153f37a9672fd3b478f0 100644 (file)
@@ -58,6 +58,11 @@ int main(int argc, char* argv[]) {
                return 1;
        }
 
                return 1;
        }
 
+       /* Lee estadisticas */
+       printf("---------------------------------------------------\n");
+       debug_ver_estadisticas(efs);
+       printf("---------------------------------------------------\n");
+
        /* Graba registros */
        id1 = efs->grabar_registro(efs, reg1, sizeof(reg1), &err);
        if (err) {
        /* Graba registros */
        id1 = efs->grabar_registro(efs, reg1, sizeof(reg1), &err);
        if (err) {
@@ -66,6 +71,11 @@ int main(int argc, char* argv[]) {
        }
        printf("Se grabó el registro 1 (size: %u) con el id %lu.\n", sizeof(reg1), id1);
 
        }
        printf("Se grabó el registro 1 (size: %u) con el id %lu.\n", sizeof(reg1), id1);
 
+       /* Lee estadisticas */
+       printf("---------------------------------------------------\n");
+       debug_ver_estadisticas(efs);
+       printf("---------------------------------------------------\n");
+
        id2 = efs->grabar_registro(efs, reg2, sizeof(reg2), &err);
        if (err) {
                printf("No se pudo grabar el registro 2 (%d).\n", err);
        id2 = efs->grabar_registro(efs, reg2, sizeof(reg2), &err);
        if (err) {
                printf("No se pudo grabar el registro 2 (%d).\n", err);
@@ -73,6 +83,11 @@ int main(int argc, char* argv[]) {
        }
        printf("Se grabó el registro 2 (size: %u) con el id %lu.\n", sizeof(reg2), id2);
 
        }
        printf("Se grabó el registro 2 (size: %u) con el id %lu.\n", sizeof(reg2), id2);
 
+       /* Lee estadisticas */
+       printf("---------------------------------------------------\n");
+       debug_ver_estadisticas(efs);
+       printf("---------------------------------------------------\n");
+
        id3 = efs->grabar_registro(efs, reg3, sizeof(reg3), &err);
        if (err) {
                printf("No se pudo grabar el registro 3 (%d).\n", err);
        id3 = efs->grabar_registro(efs, reg3, sizeof(reg3), &err);
        if (err) {
                printf("No se pudo grabar el registro 3 (%d).\n", err);
@@ -80,6 +95,11 @@ int main(int argc, char* argv[]) {
        }
        printf("Se grabó el registro 3 (size: %u) con el id %lu.\n", sizeof(reg3), id3);
 
        }
        printf("Se grabó el registro 3 (size: %u) con el id %lu.\n", sizeof(reg3), id3);
 
+       /* Lee estadisticas */
+       printf("---------------------------------------------------\n");
+       debug_ver_estadisticas(efs);
+       printf("---------------------------------------------------\n");
+
        /* Lee registros */
        reg = efs->leer_registro(efs, id1, &size, &err);
        if (err) {
        /* Lee registros */
        reg = efs->leer_registro(efs, id1, &size, &err);
        if (err) {
@@ -118,6 +138,11 @@ int main(int argc, char* argv[]) {
        }
        printf("Registro 2 (id = %lu) borrado!.\n", id2);
 
        }
        printf("Registro 2 (id = %lu) borrado!.\n", id2);
 
+       /* Lee estadisticas */
+       printf("---------------------------------------------------\n");
+       debug_ver_estadisticas(efs);
+       printf("---------------------------------------------------\n");
+
        /* Lee registro 3 (desplazado a izquierda) */
        reg = efs->leer_registro(efs, id3, &size, &err);
        if (err) {
        /* Lee registro 3 (desplazado a izquierda) */
        reg = efs->leer_registro(efs, id3, &size, &err);
        if (err) {
@@ -137,6 +162,11 @@ int main(int argc, char* argv[]) {
        printf("Compactando archivo.......\n\n");
        efs->compactar(efs);
 
        printf("Compactando archivo.......\n\n");
        efs->compactar(efs);
 
+       /* Lee estadisticas */
+       printf("---------------------------------------------------\n");
+       debug_ver_estadisticas(efs);
+       printf("---------------------------------------------------\n");
+
        /* Ve archivos auxiliares */
        printf("Archivos auxiliares:\n\n");
        ver_archivo_FS(efs);
        /* Ve archivos auxiliares */
        printf("Archivos auxiliares:\n\n");
        ver_archivo_FS(efs);