]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
- Se agrega leer_estadisticas().
authorLeandro Lucarella <llucax@gmail.com>
Fri, 16 Apr 2004 22:42:24 +0000 (22:42 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 16 Apr 2004 22:42:24 +0000 (22:42 +0000)
- Se agrega chequeo en emufs_crear() para que no se pueda crear un archivo con
  bloque mas chico que 2 * sizeof(cabecera de registro).

emufs/emufs.c
emufs/emufs.h
emufs/tipo1.c
emufs/tipo1.h

index 9f2a29d4eab6e1ba083b3cc0e223aa0df4db517b..9f60c377cf38eece06c032052582e90f269101a5 100644 (file)
@@ -142,12 +142,16 @@ EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_b
        switch (tipo) {
 
                case T1:
-                       /* Asigna punteros a funciones. */
-                       /* TODO verificar que el tamaño de bloque sea como mínimo del
-                        * tamaño de la cabecera de un registro + N */
-                       emufs_tipo1_inicializar(efs);
+                       /* Inicializa archivo (punteros a funciones, chequeos, etc). */
+                       if (emufs_tipo1_inicializar(efs)) {
+                               /* TODO ERROR */
+                               free(efs->nombre);
+                               free(efs);
+                               return NULL;
+                       }
 
-                       /* Guarda cabeceras propias. */
+                       /* Guarda cabeceras propias.
+                        * FIXME esto me gustaria que vaya a inicializar() */
                        fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
 
                        break;
index c2dab182c4baaf94855dcfb8825d5f2272f97b71..bbf240d3182ef8edee43ac0f3b429e7d2530782a 100644 (file)
@@ -82,7 +82,12 @@ typedef unsigned long EMUFS_OFFSET;
  */
 #define EMUFS_NOT_FOUND -1ul
 
-/** Estadisticas de archivo */
+/** Estadisticas de archivo
+ * @todo Cambiar nombres de:
+ * - tam_archivo a cant_registros
+ * - tam_archivo_bytes a tam_archivo
+ * - info_control a tam_info_control
+ */
 typedef struct _emufs_est_t {
        unsigned long tam_archivo; /**< Cantidad de Registros en el archivo */
        unsigned long tam_archivo_bytes;/**< Size del archivo en bytes */
index 5d8dfffbc34f176efd2e8eb564565bfc4c660dda..337f195c2adf58adc67534157aae044b8246062f 100644 (file)
@@ -79,13 +79,21 @@ static EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS*, void*, EMUFS_BLOCK_ID,
 
 int emufs_tipo1_inicializar(EMUFS* efs)
 {
+       /* como mínimo el tamaño de bloque debe ser 2 veces el tamaño de la cabecera
+        * (una relación 1/2 entre datos e info de control ya es lo suficientemente
+        * mala */
+       if (efs->tam_bloque < (sizeof(EMUFS_TIPO1_REG_HEADER) * 2)) {
+               PERR("bloque demasiado chico");
+               return 1000; /* EMUFS_ERROR_BLOCK_SIZE_TOO_SMALL */
+       }
        /* Asigna punteros a funciones. */
        efs->leer_bloque       = emufs_tipo1_leer_bloque;
        efs->grabar_registro   = emufs_tipo1_grabar_registro;
        efs->borrar_registro   = emufs_tipo1_borrar_registro;
        efs->leer_registro     = emufs_tipo1_leer_registro;
        efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
-       return 0;
+       efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
+       return 0; /* EMUFS_OK */
 }
 
 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
@@ -455,7 +463,54 @@ int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
        return 0; /* EMUFS_OK */
 }
 
-/** Graba un bloque en el archivo. */
+EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
+{
+       EMUFS_Estadisticas stats;
+       memset(&stats, 0, sizeof(EMUFS_Estadisticas));
+
+       /* obtengo tamaño de archivo en bytes */
+       {
+               FILE* file;
+               char name_f[255];
+
+               strcpy(name_f,efs->nombre);
+               strcat(name_f,".dat");
+               if ((file = fopen(name_f, "ab")) == NULL) {
+                       /* TODO Manejo de errores */
+                       PERR("Error al abrir archivo");
+                       /* *err = 4; / * EMUFS_ERROR_CANT_OPEN_FILE */
+                       return stats;
+               }
+               stats.tam_archivo_bytes = ftell(file);
+               fclose(file);
+       }
+
+       /* obtengo cantidad de bloques */
+       stats.cant_bloques = /* tamaño del archivo sin la cabecera */
+               (stats.tam_archivo_bytes - sizeof(EMUFS_Tipo) - sizeof(EMUFS_BLOCK_SIZE))
+               / efs->tam_bloque; /* dividido el tamaño de un bloque */
+
+       /* obtengo la cantidad de registros en el archivo */
+       {
+               EMUFS_REG_ID *tmp = emufs_idx_get(efs, &stats.tam_archivo);
+               if (tmp) free(tmp); /* libera memoria innecesaria */
+       }
+
+       /* obtengo total de información de control que guarda el archivo */
+       stats.info_control =
+                       /* cabecera del archivo */
+                       sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE)
+                       /* cabeceras de registros */
+                       + stats.tam_archivo * sizeof(EMUFS_TIPO1_REG_HEADER);
+
+       /* obtengo las estadísticas del archivo de espacio libre por bloque */
+       stats.total_fs = emufs_fsc_get_total_fs(efs);
+       stats.media_fs = emufs_fsc_get_media_fs(efs);
+       emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
+
+       return stats;   
+}
+
 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
                EMUFS_BLOCK_ID block_id, int* err)
 {
index b51990fd31491439b2faac96087c63ea71c98a1b..29bec7af88ab31c53ad3ae85d4e1893c25ae6b2b 100644 (file)
@@ -58,4 +58,7 @@ EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID, void*, EMU
 /** Método para leer un registro con todo su bloque asociado. */
 void* emufs_tipo1_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos);
 
+/** Obtiene estádisticas del archivo */
+EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS*);
+
 #endif /* _EMUFS_TIPO1_H_ */