X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/409b3712f9aafe1d8a9c2da8c5284ac0afebcfb0..64651dbe1cda5fa52479608384aec8d35414e90f:/emufs/tipo2.c diff --git a/emufs/tipo2.c b/emufs/tipo2.c index bf59bf0..2380249 100644 --- a/emufs/tipo2.c +++ b/emufs/tipo2.c @@ -26,10 +26,16 @@ * */ -/***************************************************************/ -/* Implementación del Tipo Archivo 2: Registros Variables, Sin */ -/* Bloques at all. */ -/***************************************************************/ +/** \file + * Archivo con registros de longitud variable, sin bloques. + * + * Implementacion del Archivo Tipo 2 + * + * La organizacion interna de un archivo de tipo 2, presenta registros de longitud variable, + * los cuales son grabados secuencialmente, o bien en gaps (espacios libres) que se presenten en + * el archivo de datos, pero no se encuentran contenidos por bloques. + * + */ #include "tipo2.h" #include "idx.h" @@ -46,17 +52,8 @@ int emufs_tipo2_inicializar(EMUFS* efs) return 0; } -/**********************************************************************/ -/* void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, */ -/* EMUFS_REG_SIZE* reg_size, int *err) */ -/* Objetivo: Lee un registro de un archivo del Tipo 2. */ -/* Parametros: EMUFS *efs // Struct con handlers + info del openfile. */ -/* EMUFS_REG_ID reg_id // Id del registro a cargar */ -/* EMUFS_REG_SIZE *reg_size // Size del reg en cuestion */ -/* int *err // Indicador de errores */ -/**********************************************************************/ -void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, - EMUFS_REG_SIZE* reg_size, int *err) +/* Lee y devuelve un registro de un archivo del Tipo 2. */ +void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID id_reg, EMUFS_REG_SIZE* reg_size, int *err) { FILE* f_data; char *registro; /* registro a leer */ @@ -67,7 +64,7 @@ void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, strcat(name_f,".dat"); /* Obtenemos la posicion del registro en el .dat */ - reg_offset = emufs_idx_buscar_registro(efs, reg_id); + reg_offset = emufs_idx_buscar_registro(efs, id_reg); if (reg_offset == EMUFS_NOT_FOUND) { /* TODO Manejo de errores */ PERR("Registro no encontrado"); @@ -90,14 +87,7 @@ void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, return registro; } -/**********************************************************************/ -/* EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *efs, void *ptr, */ -/* EMUFS_REG_SIZE n_RegSize) */ -/* Objetivo: Grabar un registro en un archivo del Tipo 2. */ -/* Parametros: EMUFS *efs // Struct con handlers + info del openfile. */ -/* void *ptr // Puntero al buffer (registro) a guardar */ -/* EMUFS_REG_SIZE n_RegSize // Size del reg en cuestion */ -/**********************************************************************/ +/* Grabar un registro en un archivo del Tipo 2. */ EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *efs, void *ptr, EMUFS_REG_SIZE reg_size, int* err) { EMUFS_REG_ID id_reg; @@ -163,13 +153,7 @@ EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *efs, void *ptr, EMUFS_REG_SIZE r return id_reg; } -/**********************************************************************/ -/* int emufs_tipo2_borrar_registro(EMUFS *efs, EMUFS_REG_ID n_IdReg) */ -/* Objetivo: Borra un registro determinado y actualiza los archivos */ -/* de Posicion Relativa (Indice-Offset) y el de Gaps */ -/* Parametros: EMUFS *efs // Struct con handlers + info del openfile. */ -/* EMUFS_REG_ID n_IdReg // Id del registro a eliminar. */ -/**********************************************************************/ +/* Borra un registro determinado y actualiza los archivos de Posicion Relativa (Indice-Offset) y el de Gaps */ int emufs_tipo2_borrar_registro(EMUFS *efs, EMUFS_REG_ID id_reg) { EMUFS_OFFSET reg_offset,reg_size; @@ -198,14 +182,7 @@ int emufs_tipo2_borrar_registro(EMUFS *efs, EMUFS_REG_ID id_reg) return(0); } -/**********************************************************************/ -/* int emufs_tipo2_get_regsize(EMUFS *efs, EMUFS_OFFSET n_RegPos, */ -/* EMUFS_REG_SIZE *n_RegSize) */ -/* Objetivo: Devuelve el tamanio de un registro, dado su init offset */ -/* Parametros: EMUFS *efs // Struct con handlers + info del openfile. */ -/* EMUFS_OFFSET n_RegPos // Offset al inicio del registro */ -/* EMUFS_REG_SIZE *n_RegSize // Size to lookup and return */ -/**********************************************************************/ +/* Devuelve el tamanio de un registro, dado su init offset */ int emufs_tipo2_get_regsize(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE *reg_size) { FILE *f_data; @@ -223,15 +200,8 @@ int emufs_tipo2_get_regsize(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE *re return (0); } -/**********************************************************************/ -/* int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET n_RegPos, */ -/* EMUFS_REG_SIZE n_Amount */ -/* Objetivo: Pisa con basura lo que es hasta el momento un reg en */ -/* el disco para indicar su borrado (Debug Purposes Only). */ -/* Parametros: EMUFS *efs // Struct con handlers + info del openfile. */ -/* EMUFS_OFFSET n_RegPos // Offset al inicio del registro */ -/* EMUFS_REG_SIZE *n_Amount // Size to lookup and return */ -/**********************************************************************/ + +/* Pisa con basura lo que es hasta el momento un reg en el disco para indicar su borrado (Debug Purposes Only) */ int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amount) { FILE *f_data;