X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/15bf403f66891d89987a3a429b83a632fca74c5b..040dedefae72d1f07b8ff16073ac095c64cb82df:/emufs/tipo2.h diff --git a/emufs/tipo2.h b/emufs/tipo2.h index f8885ec..da79dc4 100644 --- a/emufs/tipo2.h +++ b/emufs/tipo2.h @@ -58,6 +58,7 @@ #include #include #include +#include #include "emufs.h" /** Inicializa la estructura EMUFS* efs que recibe, asignando las funciones que permiten @@ -77,7 +78,7 @@ int emufs_tipo2_inicializar(EMUFS* efs); * \param err Indicador de error en la operacion. * \return \b void* Buffer con el registro leido. */ -void *emufs_tipo2_leer_registro(EMUFS* efs, EMUFS_REG_ID id_reg, EMUFS_REG_SIZE* reg_size, int *err); +void *emufs_tipo2_leer_registro(EMUFS* efs, CLAVE clave, EMUFS_REG_SIZE* reg_size, int *err); /** Realiza la escritura de un registro en archivos del tipo 2 en base a su \em ID, devolviendo ademas el \em Size del * registro leido. @@ -96,7 +97,7 @@ EMUFS_REG_ID emufs_tipo2_grabar_registro(EMUFS *efs, void *ptr, EMUFS_REG_SIZE r * \param id_reg Id del registro que se quiere eliminar. * \return \b int Indicador de exito de la operacion. */ -int emufs_tipo2_borrar_registro(EMUFS *efs, EMUFS_REG_ID id_reg); +int emufs_tipo2_borrar_registro(EMUFS *efs, CLAVE k); /** Devuelve el \em Size de un registro dado, en base a su \em ID. * @@ -117,6 +118,38 @@ int emufs_tipo2_get_regsize(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE *re int emufs_tipo2_dummyfill(EMUFS *efs, EMUFS_OFFSET reg_pos, EMUFS_REG_SIZE amount); /** Método para modificar un registro */ -EMUFS_REG_ID emufs_tipo2_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error); +EMUFS_REG_ID emufs_tipo2_modificar_registro(EMUFS *efs, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error); + +/** Método para recolectar/obtener la estadisticas del archivo tipo 2 + * + * \param efs Estructura que realiza el handling de archivos de cualquier tipo. + * \return \b EMUFS_Estadisticas Estructura que alberga las stats recolectadas. + */ +EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs); + +/** Método para compactar un archivo tipo 2 + * + * \param efs Estructura que realiza el handling de archivos de cualquier tipo. + */ +void emufs_tipo2_compactar(EMUFS *efs); + +/** Método para mover datos de un source a un dest, de a chunks + * + * \param datfile Stream en el cual se esta haciendo el movimiento. + * \param source Source desde donde mover los datos. + * \param destination Destino hacia donde mover los datos. + * \param mustmove_bytes Cantidad de bytes a mover. + */ +void emufs_tipo2_movedata(FILE * datfile,EMUFS_OFFSET *source, EMUFS_OFFSET *destination, EMUFS_BLOCK_SIZE mustmove_bytes); + +/** Método para sincronizar / actualiza un indice luego de una recompactacion + * + * \param efs Estructura que realiza el handling de archivos de cualquier tipo. + * \return \b int Indicador de exito de la opracion. + */ +int emufs_tipo2_updateidx(EMUFS *efs); + +/** Método para leer un registro con todo su bloque asociado. */ +void* emufs_tipo2_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos); #endif /* _EMUFS_TIPO2_H_ */