X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ee8568afe20289bebd04904350c3f2563fc90e4a..1e4a85495eb5703c5c2caa0558e2bcfd548938f1:/emufs/idx.h diff --git a/emufs/idx.h b/emufs/idx.h index 4055549..dd0fe60 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -39,23 +39,40 @@ #define _EMUFS_IDX_H #include +#include #include "emufs.h" #define EMUFS_IDX_EXT ".idx" typedef struct emufs_idx_t { - int block; - long int id_reg; + EMUFS_REG_ID id_reg; + EMUFS_BLOCK_ID location; } EMUFS_IDX; FILE* emufs_idx_abrir(EMUFS*, const char*); int emufs_idx_crear(EMUFS*); -int emufs_idx_buscar_mayor_id(EMUFS *); +EMUFS_REG_ID emufs_idx_buscar_mayor_id_libre(EMUFS*, int*); -int emufs_idx_buscar_registro(EMUFS *, int); +EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS*, EMUFS_REG_ID); -int emufs_idx_agregar(EMUFS *, int , int); +int emufs_idx_agregar(EMUFS*, EMUFS_BLOCK_ID, EMUFS_REG_ID); + +int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID); + +/** Retorna un array con los Ids validos del archivo IDX + * + * EL ARRAY DEBE SER LIBERADO! + * \param emu EMUFS + * \param cant Puntero donde guardar la cantidad de items + */ +EMUFS_REG_ID *emufs_idx_get(EMUFS *emu, EMUFS_REG_ID *cant); + +EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*); + +int emufs_idx_existe_id(EMUFS *emu, int ID); + +int emufs_idx_actualizar(EMUFS *emu, int ID, EMUFS_BLOCK_ID bloque); #endif /* _EMUFS_IDX_H */