X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7d15630785cfb45d9ef67621cc4ce3ef43ca0318..2470cecbf9f0f40714b9f50d9a76d187abe336e6:/emufs/indices.h diff --git a/emufs/indices.h b/emufs/indices.h index 73231d5..d043ab7 100644 --- a/emufs/indices.h +++ b/emufs/indices.h @@ -54,6 +54,7 @@ typedef struct _indices_h_ { INDICE_TIPO_DATO tipo_dato; /**< Tipo de dato a manejar */ INDICE_FUNCION funcion; /**< Funcion del indice */ int offset; /**< Offset desde el inicio del dato hasta el lugar donde esta la clave */ + int str_offset; /**< Si el campo es de string, aca va el numero de \0 que me tengo que saltar */ unsigned int tam_bloque; /**< Tamaño del bloque (nodo). Deber set multiplo de 512! */ /******NICO********/ @@ -64,8 +65,9 @@ typedef struct _indices_h_ { * indice de forma ordenada */ int (*agregar_entrada)(struct _indices_h_ *idx, CLAVE k, INDICE_DATO dato); - /** Borra del indice la clave k */ - int (*borrar_entrada)(struct _indices_h_ *idx, CLAVE k); + /** Borra del indice la clave k . Si el indice en multiple en dato + * se le debe pasar cual de los datos borrar. */ + int (*borrar_entrada)(struct _indices_h_ *idx, CLAVE k, INDICE_DATO dato); /** Determina si existe la clave k retornando su posicion o -1 * en caso fallido */ @@ -109,7 +111,7 @@ typedef struct _indices_h_ { * \param offset Desplazamiento de la clave dentro del dato * \param tam_bloque Tamaño del bloque (nodo) del arbol */ -INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned tam_bloque); +INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned tam_bloque, int str_offset); /** Destruye un indice * @@ -128,6 +130,8 @@ void emufs_indice_destruir(EMUFS *emu, INDICE *i); */ void emufs_indice_agregar(INDICE *primero, char *data, INDICE_DATO dato); +void emufs_indice_borrar(INDICE *primero, CLAVE k, INDICE_DATO dato); + INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data); CLAVE emufs_indice_generar_clave(INDICE *idx, char *data);