X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=common%2Ftrie.c;h=5df379cd5131346eaedbbf6404964716b46f9ec1;hb=bb7b60d0431952e250109275b59eb70fb05df378;hp=59f1a9f5dcf557dbf760c81a4e0579c6348ca4d2;hpb=c1d7275428570d953a7d138d364235242f1c0d34;p=apps%2Fpfixtools.git diff --git a/common/trie.c b/common/trie.c index 59f1a9f..5df379c 100644 --- a/common/trie.c +++ b/common/trie.c @@ -108,6 +108,12 @@ static inline bool trie_entry_match(const trie_t *trie, return !!(strcmp(array_ptr(trie->c, entry->c_offset), key) == 0); } +static inline bool trie_entry_prefix(const trie_t *trie, + const trie_entry_t *entry, const char *key) +{ + return !!(strncmp(array_ptr(trie->c, entry->c_offset), key, entry->c_len) == 0); +} + static inline bool trie_entry_is_leaf(const trie_entry_t *entry) { return entry->children_len == 0; @@ -297,6 +303,30 @@ bool trie_lookup(const trie_t *trie, const char *key) } } +bool trie_prefix(const trie_t *trie, const char *key) +{ + assert(trie->keys.len == 0L && "Can't lookup: trie not compiled"); + if (trie->entries.len == 0) { + return false; + } else { + trie_entry_t *current = array_ptr(trie->entries, 0); + while (true) { + int pos = 0; + if (trie_entry_is_leaf(current)) { + return trie_entry_prefix(trie, current, key); + } else if (trie_entry_c_match(trie, current, key, &pos)) { + key += pos; + current = trie_entry_child(trie, current, key); + if (current == NULL) { + return false; + } + } else { + return false; + } + } + } +} + void trie_lock(trie_t *trie) { if (trie->locked) { @@ -304,11 +334,12 @@ void trie_lock(trie_t *trie) } if (!array_lock(trie->entries)) { UNIXERR("mlock"); - return; } if (!array_lock(trie->c)) { UNIXERR("mlock"); - array_unlock(trie->entries); + } + if (mlock(trie, sizeof(trie_t)) != 0) { + UNIXERR("mlock"); return; } trie->locked = true; @@ -321,6 +352,7 @@ void trie_unlock(trie_t *trie) } array_unlock(trie->entries); array_unlock(trie->c); + munlock(trie, sizeof(trie_t)); trie->locked = false; }