X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/28ec60bde7175661afed582949f32390ebafaeaa..c969505b67954b8956c442cce18cfee270a40751:/emufs/tipo2.c diff --git a/emufs/tipo2.c b/emufs/tipo2.c index 87dd90e..40ff8d2 100644 --- a/emufs/tipo2.c +++ b/emufs/tipo2.c @@ -41,8 +41,9 @@ #include "idx.h" #include "fsc.h" #include "did.h" +#include "error.h" +#include "common.h" #include -#include #include #include @@ -50,8 +51,9 @@ 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; @@ -73,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; @@ -82,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); @@ -256,6 +257,7 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs) /* Inicializo las stats por si hay error somewhere */ stats.tam_archivo = 0; stats.tam_archivo_bytes = 0; + stats.tam_datos_bytes = 0; stats.info_control = 0; stats.media_fs = 0; stats.total_fs = 0; @@ -303,6 +305,9 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs) /* 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); + /* Cantida de Bytes en Datos */ + stats.tam_datos_bytes = stats.tam_archivo_bytes - sizeof(EMUFS_Tipo) - (sizeof(EMUFS_REG_ID) + sizeof(EMUFS_REG_SIZE)) * stats.tam_archivo; + return(stats); } @@ -466,3 +471,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; +}