From: Leandro Lucarella Date: Sun, 18 Apr 2004 20:00:38 +0000 (+0000) Subject: Algunos detalles de coding style y pruebas de stats. X-Git-Tag: svn_import_r684~355 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/a3a30e5e1e141fa5e7a33b61f596998db0ea338b?ds=sidebyside Algunos detalles de coding style y pruebas de stats. --- diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 0e981af..9d1cd04 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -475,9 +475,12 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id) 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) { - int err = 0,err1 = 0, err2 = 0, err3 = 0; + int err = 0; 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 */ - 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; } diff --git a/emufs/tipo1_main.c b/emufs/tipo1_main.c index f50456e..15ac482 100644 --- a/emufs/tipo1_main.c +++ b/emufs/tipo1_main.c @@ -58,6 +58,11 @@ int main(int argc, char* argv[]) { 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) { @@ -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); + /* 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); @@ -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); + /* 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); @@ -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); + /* Lee estadisticas */ + printf("---------------------------------------------------\n"); + debug_ver_estadisticas(efs); + printf("---------------------------------------------------\n"); + /* 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); + /* 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) { @@ -137,6 +162,11 @@ int main(int argc, char* argv[]) { 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);