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));
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 1;
}
+ /* Lee estadisticas */
+ printf("---------------------------------------------------\n");
+ debug_ver_estadisticas(efs);
+ printf("---------------------------------------------------\n");
+
/* Graba registros */
id1 = efs->grabar_registro(efs, reg1, sizeof(reg1), &err);
if (err) {
}
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);
}
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);
}
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) {
}
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) {
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);