]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo2.c
Se cambia tam_archivo_aux por tam_archivos_aux (me parece mas claro).
[z.facultad/75.06/emufs.git] / emufs / tipo2.c
index 9f28dc687a53d74ea625d35a9cd90a23eca4367e..2e70d1218838e300957f3e0691bb69456aa837c7 100644 (file)
 #include "idx.h"
 #include "fsc.h"
 #include "did.h"
+#include "error.h"
+#include "common.h"
+#include <unistd.h>
+#include <stdio.h>
+#include <string.h>
 
 /* Asigna los punteros a las funciones apropiadas para el Tipo2 */
 int emufs_tipo2_inicializar(EMUFS* efs)
 {
        efs->grabar_registro = emufs_tipo2_grabar_registro;           
-    efs->borrar_registro = emufs_tipo2_borrar_registro;
+       efs->borrar_registro = emufs_tipo2_borrar_registro;
        efs->leer_registro = emufs_tipo2_leer_registro;
+       efs->leer_registro_raw = emufs_tipo2_leer_registro_raw;
        efs->modificar_registro = emufs_tipo2_modificar_registro;
        efs->leer_estadisticas = emufs_tipo2_leer_estadisticas;
        efs->compactar = emufs_tipo2_compactar;
@@ -69,7 +75,6 @@ void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID id_reg, EMUFS_REG_SIZE*
        /* Obtenemos la posicion del registro en el .dat */
        reg_offset = emufs_idx_buscar_registro(efs, id_reg);
        if (reg_offset == EMUFS_NOT_FOUND) {
-               /* TODO Manejo de errores */
                PERR("Registro no encontrado");
                *err = EMUFS_NOT_FOUND;
                return NULL;
@@ -78,8 +83,8 @@ void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID id_reg, EMUFS_REG_SIZE*
        /* Levantamos el registro */
        if ((f_data = fopen(name_f, "rb")) == NULL) {
                PERR("No se puede abrir archivo");
-               *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
-               return NULL; /* FIXME ERROR */
+               *err = EMUFS_ERROR_CANT_OPEN_FILE;
+               return NULL;
        }
        fseek(f_data,reg_offset+sizeof(EMUFS_REG_ID),0);
        fread(reg_size,sizeof(EMUFS_REG_SIZE),1,f_data);
@@ -210,8 +215,7 @@ int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amoun
        FILE *f_data;
        char name_f[255];
        char *dummyfill;
-       char *ptr_cur;
-       unsigned long fill_size,byte_count;
+       unsigned long fill_size;
        
        /* Armamos el filename del archivo de datos */
        strcpy(name_f,efs->nombre);
@@ -223,8 +227,6 @@ int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amoun
        fill_size = amount+sizeof(EMUFS_REG_ID)+sizeof(EMUFS_REG_SIZE);
        dummyfill = (char*)malloc(fill_size);
        memset(dummyfill, 0, fill_size);
-       ptr_cur = dummyfill;
-       for (byte_count = 0; byte_count < fill_size; ++byte_count) memcpy(ptr_cur+byte_count,0,1);
        fseek(f_data,reg_pos,SEEK_SET);
        fwrite(dummyfill,fill_size,1,f_data);
        fclose(f_data);
@@ -245,22 +247,28 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs)
 {
     EMUFS_Estadisticas stats;
        EMUFS_REG_ID *tmp;
-       unsigned long fsc_size = 0,idx_size = 0;
+       int err = 0, err1 = 0, err2 = 0, err3 = 0;
        char name_f[255];
-       FILE *file;
-
-       strcpy(name_f,efs->nombre);
-       strcat(name_f,".dat");
        
        /* Inicializo las stats por si hay error somewhere */
        stats.tam_archivo = 0;
-       stats.tam_archivo_bytes = 0;
-       stats.info_control = 0;
+       stats.tam_archivos_aux = 0;
+       stats.tam_info_control_dat = 0;
        stats.media_fs = 0;
        stats.total_fs = 0;
        stats.max_fs = 0;
        stats.min_fs = 0;
        stats.cant_bloques = 0;
+       stats.cant_registros = 0;       
+       
+       /* Obtengo el tamaño del .dat */
+       strcpy(name_f,efs->nombre);
+       strcat(name_f,".dat");
+       stats.tam_archivo = emufs_common_get_file_size(name_f,&err);    
+       if (err) {
+               PERR("no se pudo obtener el tamaño del archivo");
+               return stats;
+       }       
        
        /* Obtengo las stats de FSC */
        stats.total_fs = emufs_fsc_get_total_fs(efs);
@@ -268,40 +276,19 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs)
        emufs_fsc_get_max_min_fs(efs,&stats.min_fs,&stats.max_fs);
        
        /* Cant registros */
-       tmp = emufs_idx_get(efs,&stats.tam_archivo);
-       free(tmp);
-       
-       /* Size del archivo de datos */
-       if ( (file = fopen(name_f,"ab")) == NULL){
-                       PERR("No se pudo abrir el archivo");
-                       return stats;   
-       }
-       stats.tam_archivo_bytes = ftell(file);
-       fclose(file);
-
-       /* Size del archivo de Espacio Libre */ 
-       strcpy(name_f,efs->nombre);
-       strcat(name_f,EMUFS_FSC_EXT);
-       if ( (file = fopen(name_f,"ab")) == NULL){
-           PERR("No se pudo abrir el archivo");
-               return stats;   
-       }
-       fsc_size = ftell(file);
-       fclose(file);
-       
-       /* Size del archivo Indice */   
-       strcpy(name_f,efs->nombre);
-       strcat(name_f,EMUFS_IDX_EXT);
-       if ( (file = fopen(name_f,"ab")) == NULL){
-           PERR("No se pudo abrir el archivo");
-               return stats;   
-       }
-       idx_size = ftell(file);
-       fclose(file);
-       
-       /* Cantidad de Bytes en info de control */
-       stats.info_control = idx_size + fsc_size + sizeof(EMUFS_REG_ID)*stats.tam_archivo + sizeof(EMUFS_REG_SIZE)*stats.tam_archivo + sizeof(EMUFS_Tipo);
-       
+       tmp = emufs_idx_get(efs,&stats.cant_registros);
+       if (tmp) free(tmp);
+       
+       /* Cantidad de bytes de info de control del .dat */
+       stats.tam_info_control_dat = (sizeof(EMUFS_REG_ID) + sizeof(EMUFS_REG_SIZE)) * stats.cant_registros + sizeof(EMUFS_Tipo);
+       
+       /* Cantidad de bytes en info de control 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");
+               return stats;
+       }       
+               
        return(stats);  
 }
 
@@ -314,7 +301,7 @@ void emufs_tipo2_compactar(EMUFS *efs)
        EMUFS_FSC reg1,reg2;
        unsigned long cant_gaps = 0,mustmove_bytes = 0,source = 0,
                                  destination = 0,datsize = 0,totalfsc = 0;
-       
+               
        strcpy(name_fdat,efs->nombre);
        strcpy(name_ffsc,efs->nombre);
        strcat(name_fdat,".dat");
@@ -465,3 +452,11 @@ int emufs_tipo2_updateidx(EMUFS *efs)
        
        return 0;       
 }
+
+void* emufs_tipo2_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
+{
+       (*size) = 0;
+       (*pos) = 0;
+       PERR("IMPLEMENTAME CABRON");
+       return NULL;
+}