X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=common%2Ftrie.h;h=d9cc53488aa5bbfb14ca4c300e4abee3568bd1f2;hb=e327d3786ba0371eaaff8e6ba0fe3fc39f095ae2;hp=ddf984a6ec48ca8fc5a4da6c249d57cc23bdd4ac;hpb=5c75febadf099c0a656b3b8072b14ec14b38c2f6;p=apps%2Fpfixtools.git diff --git a/common/trie.h b/common/trie.h index ddf984a..d9cc534 100644 --- a/common/trie.h +++ b/common/trie.h @@ -37,6 +37,7 @@ #define PFIXTOOLS_TRIE_H #include "common.h" +#include "array.h" typedef struct trie_t trie_t; PARRAY(trie_t) @@ -44,21 +45,56 @@ PARRAY(trie_t) trie_t *trie_new(void); void trie_delete(trie_t **trie); +/** Add a string in the trie. + * \ref trie_compile. + */ __attribute__((nonnull(1,2))) -void trie_insert(trie_t *trie, const char* key); +void trie_insert(trie_t *trie, const char *key); +/** Compile the trie. + * A trie must be compiled before lookup is possible. Compiling the trie + * consists in building the tree. + * + * \param memlock if true, the trie is locked into the RAM (mlock). + * + * Usage of a trie: + * trie_insert(trie, ...); + * trie_insert(trie, ...); + * ... + * trie_insert(trie, ...); + * + * trie_compile(trie, lock); + * + * trie_lookup(trie, ...); + * trie_lookup(trie, ...); + */ __attribute__((nonnull(1))) void trie_compile(trie_t *trie, bool memlock); +/** Lock the trie into memory. + * \ref trie_unlock + */ __attribute__((nonnull(1))) void trie_lock(trie_t *trie); +/** Unlock the trie. + * \ref trie_lock + */ __attribute__((nonnull(1))) void trie_unlock(trie_t *trie); +/** Check if the trie contains \p key. + */ __attribute__((nonnull(1,2))) -bool trie_lookup(const trie_t *trie, const char* key); +bool trie_lookup(const trie_t *trie, const char *key); +/** Check if the trie contains a prefix of \p key. + */ +__attribute__((nonnull(1,2))) +bool trie_prefix(const trie_t *trie, const char *key); + +/** Show the content of the trie and computes statistics. + */ __attribute__((nonnull(1))) void trie_inspect(const trie_t *trie, bool show_content);