X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/c1df639f58f6d3c08247c1543916644e375f8ce2..f8a441d3986f96851c8201fe82c5ce328b582d05:/emufs/indices.h?ds=inline diff --git a/emufs/indices.h b/emufs/indices.h index ad2686c..73231d5 100644 --- a/emufs/indices.h +++ b/emufs/indices.h @@ -56,6 +56,10 @@ typedef struct _indices_h_ { int offset; /**< Offset desde el inicio del dato hasta el lugar donde esta la clave */ unsigned int tam_bloque; /**< Tamaño del bloque (nodo). Deber set multiplo de 512! */ + /******NICO********/ + unsigned int size_claves; + unsigned int size_hijos; + /******NICO********/ /** Agrega la clave k de posicion location en el * indice de forma ordenada */ @@ -69,6 +73,11 @@ typedef struct _indices_h_ { INDICE_DATO *(*buscar_entradas)(struct _indices_h_ *idx, CLAVE k, int *cant); + CLAVE (*obtener_menor_clave)(struct _indices_h_ *idx); + CLAVE (*obtener_mayor_clave)(struct _indices_h_ *idx); + + CLAVE (*obtener_sig_clave)(struct _indices_h_ *idx, CLAVE k); + char *nombre; /**< Nombre único de busqueda del indice */ char *filename; /**< nombre del archivo de indice */ @@ -123,6 +132,8 @@ INDICE_DATO emufs_indice_buscar(INDICE *primero, char *data); CLAVE emufs_indice_generar_clave(INDICE *idx, char *data); CLAVE emufs_indice_generar_clave_desde_valor(INDICE *idx, char *data); +void emufs_indice_obtener_valor_desde_clave(INDICE *idx, CLAVE k, void *dst); + /** Compara 2 claves de la forma c1 < c2 */ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2);