X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/c831082edc6038351f9ec6c2e55b85ef41d213f4..44479d8b55485e97a5ebb95a5fac73b0b7627a6a:/emufs/tipo1.h diff --git a/emufs/tipo1.h b/emufs/tipo1.h index 4bc6a7e..5411905 100644 --- a/emufs/tipo1.h +++ b/emufs/tipo1.h @@ -39,30 +39,50 @@ #define _EMUFS_TIPO1_H_ #include "emufs.h" +#include "indice_bplus.h" -int emufs_tipo1_inicializar(EMUFS*); +/** Inicializa un EMUFS para poder ser utilizado como un archivo tipo1. + * + * \param efs Estructura a inicializar. + * \return Código de error o EMUFS_OK si no hubo error. + */ +int emufs_tipo1_inicializar(EMUFS* efs); + +int emufs_tipo4_inicializar(EMUFS* efs); + +/** Lee el registro \c reg_id y devolviendo su contenido. */ +void* emufs_tipo1_leer_registro(EMUFS*, CLAVE, EMUFS_REG_SIZE*, int*); + +/** Graba un registro en el archivo. */ +EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS*, void*, EMUFS_REG_SIZE, int*); -/** Lee el registro \param id_reg y lo almacena en \param ptr */ -void* emufs_tipo1_leer_registro(EMUFS*, EMUFS_REG_ID, int*); +/** Borra un registro de del archivo. */ +int emufs_tipo1_borrar_registro(EMUFS*, CLAVE, INDICE_DATO); -/** Lee el bloque \param num_bloque y lo almacena en \param ptr */ -void* emufs_tipo1_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*); +/** Método para modificar un registro. */ +EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, CLAVE k, void*, EMUFS_REG_SIZE, int*, INDICE_DATO); -/** Graba el registro apuntado por \param ptr en el archivo */ -EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS*, void*, EMUFS_REG_SIZE); +/** 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); -/** Graba el bloque apuntado por \param ptr en el archivo */ -int emufs_tipo1_grabar_bloque(EMUFS*, void*, EMUFS_BLOCK_ID); +/** Obtiene estádisticas del archivo */ +EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS*); -EMUFS_REG_ID emufs_tipo1_get_id(EMUFS*); +/** Método para compactar el archivo reorganizándolo físicamente */ +void emufs_tipo1_compactar(EMUFS*); -int emufs_tipo1_buscar_registro(EMUFS*, EMUFS_REG_ID); +/** Lee un bloque y su contexto, en bruto (con cabeceras). */ +void emufs_tipo1_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, + char **anterior, char **siguiente, EMUFS_BLOCK_SIZE *size1, + EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3); + +/** Inserta un registro en el archivo, ordenado por clave principal*/ +EMUFS_REG_ID emufs_tipo1_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err); -int emufs_tipo1_borrar_registro(EMUFS*, EMUFS_REG_ID, EMUFS_REG_SIZE); +/** Elimina un registro de clave CLAVE del archivo con ayuda del arbol B+*/ +int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, INDICE_DATO dato); -/* -int emufs_tipo1_buscar_lugar(EMUFS *emu, EMUFS_REG_SIZE tam_reg, - EMUFS_FREE *free_space); -*/ +void *emufs_tipo1_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err); +EMUFS_REG_ID emufs_tipo1_modificar_registro_plus(EMUFS *emu, CLAVE k, void*, EMUFS_REG_SIZE, int*, INDICE_DATO); #endif /* _EMUFS_TIPO1_H_ */