/* * Compact Elastic Binary Trees - exported functions operating on string keys * * Copyright (C) 2014-2024 Willy Tarreau - w@1wt.eu * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include "cebtree-prv.h" /*****************************************************************************\ * The declarations below always cause two functions to be declared, one * * starting with "cebus_*" and one with "cebus_ofs_*" which takes a key * * offset just after the root. The one without kofs just has this argument * * omitted from its declaration and replaced with sizeof(struct ceb_node) in * * the call to the underlying functions. * \*****************************************************************************/ /* Inserts node into unique tree based on its key that * immediately follows the node. Returns the inserted node or the one * that already contains the same key. */ CEB_FDECL3(struct ceb_node *, cebus, _insert, struct ceb_node **, root, ptrdiff_t, kofs, struct ceb_node *, node) { const void *key = NODEK(node, kofs)->str; return _cebu_insert(root, node, kofs, CEB_KT_ST, 0, 0, key); } /* return the first node or NULL if not found. */ CEB_FDECL2(struct ceb_node *, cebus, _first, struct ceb_node **, root, ptrdiff_t, kofs) { return _cebu_first(root, kofs, CEB_KT_ST); } /* return the last node or NULL if not found. */ CEB_FDECL2(struct ceb_node *, cebus, _last, struct ceb_node **, root, ptrdiff_t, kofs) { return _cebu_last(root, kofs, CEB_KT_ST); } /* look up the specified key, and returns either the node containing it, or * NULL if not found. */ CEB_FDECL3(struct ceb_node *, cebus, _lookup, struct ceb_node **, root, ptrdiff_t, kofs, const void *, key) { return _cebu_lookup(root, kofs, CEB_KT_ST, 0, 0, key); } /* look up the specified key or the highest below it, and returns either the * node containing it, or NULL if not found. */ CEB_FDECL3(struct ceb_node *, cebus, _lookup_le, struct ceb_node **, root, ptrdiff_t, kofs, const void *, key) { return _cebu_lookup_le(root, kofs, CEB_KT_ST, 0, 0, key); } /* look up highest key below the specified one, and returns either the * node containing it, or NULL if not found. */ CEB_FDECL3(struct ceb_node *, cebus, _lookup_lt, struct ceb_node **, root, ptrdiff_t, kofs, const void *, key) { return _cebu_lookup_lt(root, kofs, CEB_KT_ST, 0, 0, key); } /* look up the specified key or the smallest above it, and returns either the * node containing it, or NULL if not found. */ CEB_FDECL3(struct ceb_node *, cebus, _lookup_ge, struct ceb_node **, root, ptrdiff_t, kofs, const void *, key) { return _cebu_lookup_ge(root, kofs, CEB_KT_ST, 0, 0, key); } /* look up the smallest key above the specified one, and returns either the * node containing it, or NULL if not found. */ CEB_FDECL3(struct ceb_node *, cebus, _lookup_gt, struct ceb_node **, root, ptrdiff_t, kofs, const void *, key) { return _cebu_lookup_gt(root, kofs, CEB_KT_ST, 0, 0, key); } /* search for the next node after the specified one, and return it, or NULL if * not found. The approach consists in looking up that node, recalling the last * time a left turn was made, and returning the first node along the right * branch at that fork. */ CEB_FDECL3(struct ceb_node *, cebus, _next, struct ceb_node **, root, ptrdiff_t, kofs, struct ceb_node *, node) { const void *key = NODEK(node, kofs)->str; return _cebu_next(root, kofs, CEB_KT_ST, 0, 0, key); } /* search for the prev node before the specified one, and return it, or NULL if * not found. The approach consists in looking up that node, recalling the last * time a right turn was made, and returning the last node along the left * branch at that fork. */ CEB_FDECL3(struct ceb_node *, cebus, _prev, struct ceb_node **, root, ptrdiff_t, kofs, struct ceb_node *, node) { const void *key = NODEK(node, kofs)->str; return _cebu_prev(root, kofs, CEB_KT_ST, 0, 0, key); } /* look up the specified node with its key and deletes it if found, and in any * case, returns the node. */ CEB_FDECL3(struct ceb_node *, cebus, _delete, struct ceb_node **, root, ptrdiff_t, kofs, struct ceb_node *, node) { const void *key = NODEK(node, kofs)->str; return _cebu_delete(root, node, kofs, CEB_KT_ST, 0, 0, key); } /* look up the specified key, and detaches it and returns it if found, or NULL * if not found. */ CEB_FDECL3(struct ceb_node *, cebus, _pick, struct ceb_node **, root, ptrdiff_t, kofs, const void *, key) { return _cebu_delete(root, NULL, kofs, CEB_KT_ST, 0, 0, key); } /* dumps a ceb_node tree using the default functions above. If a node matches * , this one will be highlighted in red. */ CEB_FDECL4(void, cebus, _default_dump, struct ceb_node **, root, ptrdiff_t, kofs, const char *, label, const void *, ctx) { printf("\ndigraph cebus_tree {\n" " fontname=\"fixed\";\n" " fontsize=8\n" " label=\"%s\"\n" "", label); printf(" node [fontname=\"fixed\" fontsize=8 shape=\"box\" style=\"filled\" color=\"black\" fillcolor=\"white\"];\n" " edge [fontname=\"fixed\" fontsize=8 style=\"solid\" color=\"magenta\" dir=\"forward\"];\n"); cebu_default_dump_tree(kofs, CEB_KT_ST, root, 0, NULL, 0, ctx, NULL, NULL, NULL); printf("}\n"); }