X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/94aef7aeac41c6c2bc364f9ce062cb4851a1ac7a..b692f5e25c543825a9d3f2f4181e5cffb84577d1:/emufs/tipo1_main.c diff --git a/emufs/tipo1_main.c b/emufs/tipo1_main.c index 03c65d1..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,16 @@ 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); + printf("\n--------------------------------------------------\n"); + /* Lee registros */ reg = efs->leer_registro(efs, id1, &size, &err); if (err) { @@ -154,11 +189,6 @@ int main(int argc, char* argv[]) { printf("El contenido del registro 3 es: '%s'.\n", reg); free(reg); - /* Ve archivos auxiliares */ - printf("\n--------------------------------------------------\n"); - printf("Archivos auxiliares:\n\n"); - ver_archivo_FS(efs); - out: emufs_destruir(efs); return err;