src/cx/tree.h

Fri, 12 Apr 2024 21:48:12 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 12 Apr 2024 21:48:12 +0200
changeset 849
edb9f875b7f9
parent 848
6456036bbb37
permissions
-rw-r--r--

improves interface of cx_sprintf() variants

universe@816 1 /*
universe@816 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@816 3 *
universe@816 4 * Copyright 2024 Mike Becker, Olaf Wintermann All rights reserved.
universe@816 5 *
universe@816 6 * Redistribution and use in source and binary forms, with or without
universe@816 7 * modification, are permitted provided that the following conditions are met:
universe@816 8 *
universe@816 9 * 1. Redistributions of source code must retain the above copyright
universe@816 10 * notice, this list of conditions and the following disclaimer.
universe@816 11 *
universe@816 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@816 13 * notice, this list of conditions and the following disclaimer in the
universe@816 14 * documentation and/or other materials provided with the distribution.
universe@816 15 *
universe@816 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@816 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@816 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@816 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@816 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@816 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@816 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@816 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@816 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@816 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@816 26 * POSSIBILITY OF SUCH DAMAGE.
universe@816 27 */
universe@816 28 /**
universe@816 29 * \file tree.h
universe@816 30 * \brief Interface for tree implementations.
universe@816 31 * \author Mike Becker
universe@816 32 * \author Olaf Wintermann
universe@816 33 * \copyright 2-Clause BSD License
universe@816 34 */
universe@816 35
universe@816 36 #ifndef UCX_TREE_H
universe@816 37 #define UCX_TREE_H
universe@816 38
universe@816 39 #include "common.h"
universe@816 40
universe@827 41 #include "iterator.h"
universe@827 42
universe@816 43 #ifdef __cplusplus
universe@816 44 extern "C" {
universe@816 45 #endif
universe@816 46
universe@827 47 /**
universe@845 48 * A depth-first tree iterator.
universe@827 49 *
universe@827 50 * This iterator is not position-aware in a strict sense, as it does not assume a particular order of elements in the
universe@827 51 * tree. However, the iterator keeps track of the number of nodes it has passed in a counter variable.
universe@827 52 * Each node, regardless of the number of passes, is counted only once.
universe@827 53 *
universe@827 54 * @note Objects that are pointed to by an iterator are mutable through that iterator. However, if the
universe@833 55 * underlying data structure is mutated by other means than this iterator (e.g. elements added or removed),
universe@833 56 * the iterator becomes invalid (regardless of what cxIteratorValid() returns).
universe@827 57 *
universe@827 58 * @see CxIterator
universe@827 59 */
universe@827 60 typedef struct cx_tree_iterator_s {
universe@827 61 /**
universe@827 62 * The base properties of this iterator.
universe@827 63 */
universe@827 64 struct cx_iterator_base_s base;
universe@827 65 /**
universe@848 66 * Indicates whether the subtree below the current node shall be skipped.
universe@848 67 */
universe@848 68 bool skip;
universe@848 69 /**
universe@833 70 * Set to true, when the iterator shall visit a node again
universe@833 71 * when all it's children have been processed.
universe@827 72 */
universe@833 73 bool visit_on_exit;
universe@827 74 /**
universe@833 75 * True, if this iterator is currently leaving the node.
universe@827 76 */
universe@833 77 bool exiting;
universe@827 78 /**
universe@827 79 * Offset in the node struct for the children linked list.
universe@827 80 */
universe@845 81 ptrdiff_t loc_children;
universe@827 82 /**
universe@827 83 * Offset in the node struct for the next pointer.
universe@827 84 */
universe@845 85 ptrdiff_t loc_next;
universe@827 86 /**
universe@827 87 * The total number of distinct nodes that have been passed so far.
universe@827 88 */
universe@827 89 size_t counter;
universe@827 90 /**
universe@827 91 * The currently observed node.
universe@827 92 *
universe@827 93 * This is the same what cxIteratorCurrent() would return.
universe@827 94 */
universe@827 95 void *node;
universe@827 96 /**
universe@840 97 * Stores a copy of the next pointer of the visited node.
universe@840 98 * Allows freeing a node on exit without corrupting the iteration.
universe@840 99 */
universe@840 100 void *next;
universe@840 101 /**
universe@827 102 * Internal stack.
universe@827 103 * Will be automatically freed once the iterator becomes invalid.
universe@827 104 *
universe@827 105 * If you want to discard the iterator before, you need to manually
universe@827 106 * call cxTreeIteratorDispose().
universe@827 107 */
universe@827 108 void **stack;
universe@828 109 /**
universe@828 110 * Internal capacity of the stack.
universe@828 111 */
universe@828 112 size_t stack_capacity;
universe@833 113 union {
universe@833 114 /**
universe@833 115 * Internal stack size.
universe@833 116 */
universe@833 117 size_t stack_size;
universe@833 118 /**
universe@833 119 * The current depth in the tree.
universe@833 120 */
universe@833 121 size_t depth;
universe@833 122 };
universe@827 123 } CxTreeIterator;
universe@827 124
universe@827 125 /**
universe@845 126 * An element in a visitor queue.
universe@845 127 */
universe@845 128 struct cx_tree_visitor_queue_s {
universe@845 129 /**
universe@845 130 * The tree node to visit.
universe@845 131 */
universe@845 132 void *node;
universe@845 133 /**
universe@845 134 * The depth of the node.
universe@845 135 */
universe@845 136 size_t depth;
universe@845 137 /**
universe@845 138 * The next element in the queue or \c NULL.
universe@845 139 */
universe@845 140 struct cx_tree_visitor_queue_s *next;
universe@845 141 };
universe@845 142
universe@845 143 /**
universe@845 144 * A breadth-first tree iterator.
universe@845 145 *
universe@845 146 * This iterator needs to maintain a visitor queue that will be automatically freed once the iterator becomes invalid.
universe@845 147 * If you want to discard the iterator before, you MUST manually call cxTreeVisitorDispose().
universe@845 148 *
universe@845 149 * This iterator is not position-aware in a strict sense, as it does not assume a particular order of elements in the
universe@845 150 * tree. However, the iterator keeps track of the number of nodes it has passed in a counter variable.
universe@845 151 * Each node, regardless of the number of passes, is counted only once.
universe@845 152 *
universe@845 153 * @note Objects that are pointed to by an iterator are mutable through that iterator. However, if the
universe@845 154 * underlying data structure is mutated by other means than this iterator (e.g. elements added or removed),
universe@845 155 * the iterator becomes invalid (regardless of what cxIteratorValid() returns).
universe@845 156 *
universe@845 157 * @see CxIterator
universe@845 158 */
universe@845 159 typedef struct cx_tree_visitor_s {
universe@845 160 /**
universe@845 161 * The base properties of this iterator.
universe@845 162 */
universe@845 163 struct cx_iterator_base_s base;
universe@845 164 /**
universe@848 165 * Indicates whether the subtree below the current node shall be skipped.
universe@848 166 */
universe@848 167 bool skip;
universe@848 168 /**
universe@845 169 * Offset in the node struct for the children linked list.
universe@845 170 */
universe@845 171 ptrdiff_t loc_children;
universe@845 172 /**
universe@845 173 * Offset in the node struct for the next pointer.
universe@845 174 */
universe@845 175 ptrdiff_t loc_next;
universe@845 176 /**
universe@845 177 * The total number of distinct nodes that have been passed so far.
universe@845 178 */
universe@845 179 size_t counter;
universe@845 180 /**
universe@845 181 * The currently observed node.
universe@845 182 *
universe@845 183 * This is the same what cxIteratorCurrent() would return.
universe@845 184 */
universe@845 185 void *node;
universe@845 186 /**
universe@845 187 * The current depth in the tree.
universe@845 188 */
universe@845 189 size_t depth;
universe@845 190 /**
universe@845 191 * The next element in the visitor queue.
universe@845 192 */
universe@845 193 struct cx_tree_visitor_queue_s *queue_next;
universe@845 194 /**
universe@845 195 * The last element in the visitor queue.
universe@845 196 */
universe@845 197 struct cx_tree_visitor_queue_s *queue_last;
universe@845 198 } CxTreeVisitor;
universe@845 199
universe@845 200 /**
universe@827 201 * Releases internal memory of the given tree iterator.
universe@827 202 * @param iter the iterator
universe@827 203 */
universe@845 204 __attribute__((__nonnull__))
universe@827 205 static inline void cxTreeIteratorDispose(CxTreeIterator *iter) {
universe@827 206 free(iter->stack);
universe@835 207 iter->stack = NULL;
universe@827 208 }
universe@816 209
universe@822 210 /**
universe@845 211 * Releases internal memory of the given tree visitor.
universe@845 212 * @param visitor the visitor
universe@845 213 */
universe@845 214 __attribute__((__nonnull__))
universe@845 215 static inline void cxTreeVisitorDispose(CxTreeVisitor *visitor) {
universe@845 216 struct cx_tree_visitor_queue_s *q = visitor->queue_next;
universe@845 217 while (q != NULL) {
universe@845 218 struct cx_tree_visitor_queue_s *next = q->next;
universe@845 219 free(q);
universe@845 220 q = next;
universe@845 221 }
universe@845 222 }
universe@845 223
universe@845 224 /**
universe@848 225 * Advises the iterator to skip the subtree below the current node and
universe@848 226 * also continues the current loop.
universe@848 227 *
universe@848 228 * @param iterator the iterator
universe@848 229 */
universe@848 230 #define cxTreeIteratorContinue(iterator) (iterator).skip = true; continue
universe@848 231
universe@848 232 /**
universe@848 233 * Advises the visitor to skip the subtree below the current node and
universe@848 234 * also continues the current loop.
universe@848 235 *
universe@848 236 * @param visitor the visitor
universe@848 237 */
universe@848 238 #define cxTreeVisitorContinue(visitor) cxTreeIteratorContinue(visitor)
universe@848 239
universe@848 240 /**
universe@822 241 * Links a node to a (new) parent.
universe@822 242 *
universe@822 243 * If the node has already a parent, it is unlinked, first.
universe@845 244 * If the parent has children already, the node is \em prepended to the list
universe@826 245 * of all currently existing children.
universe@822 246 *
universe@822 247 * @param parent the parent node
universe@822 248 * @param node the node that shall be linked
universe@822 249 * @param loc_parent offset in the node struct for the parent pointer
universe@822 250 * @param loc_children offset in the node struct for the children linked list
universe@822 251 * @param loc_prev offset in the node struct for the prev pointer
universe@822 252 * @param loc_next offset in the node struct for the next pointer
universe@822 253 * @see cx_tree_unlink()
universe@822 254 */
universe@816 255 __attribute__((__nonnull__))
universe@816 256 void cx_tree_link(
universe@816 257 void * restrict parent,
universe@816 258 void * restrict node,
universe@816 259 ptrdiff_t loc_parent,
universe@816 260 ptrdiff_t loc_children,
universe@816 261 ptrdiff_t loc_prev,
universe@816 262 ptrdiff_t loc_next
universe@816 263 );
universe@816 264
universe@822 265 /**
universe@822 266 * Unlinks a node from its parent.
universe@822 267 *
universe@822 268 * If the node has no parent, this function does nothing.
universe@822 269 *
universe@822 270 * @param node the node that shall be unlinked from its parent
universe@822 271 * @param loc_parent offset in the node struct for the parent pointer
universe@822 272 * @param loc_children offset in the node struct for the children linked list
universe@822 273 * @param loc_prev offset in the node struct for the prev pointer
universe@822 274 * @param loc_next offset in the node struct for the next pointer
universe@822 275 * @see cx_tree_link()
universe@822 276 */
universe@816 277 __attribute__((__nonnull__))
universe@816 278 void cx_tree_unlink(
universe@816 279 void *node,
universe@816 280 ptrdiff_t loc_parent,
universe@816 281 ptrdiff_t loc_children,
universe@816 282 ptrdiff_t loc_prev,
universe@816 283 ptrdiff_t loc_next
universe@816 284 );
universe@816 285
universe@823 286 /**
universe@823 287 * Function pointer for a search function.
universe@823 288 *
universe@823 289 * A function of this kind shall check if the specified \p node
universe@823 290 * contains the given \p data or if one of the children might contain
universe@823 291 * the data.
universe@823 292 *
universe@826 293 * The function should use the returned integer to indicate how close the
universe@826 294 * match is, where a negative number means that it does not match at all.
universe@826 295 *
universe@823 296 * For example if a tree stores file path information, a node that is
universe@823 297 * describing a parent directory of a filename that is searched, shall
universe@826 298 * return a positive number to indicate that a child node might contain the
universe@826 299 * searched item. On the other hand, if the node denotes a path that is not a
universe@826 300 * prefix of the searched filename, the function would return -1 to indicate
universe@826 301 * that * the search does not need to be continued in that branch.
universe@823 302 *
universe@823 303 * @param node the node that is currently investigated
universe@823 304 * @param data the data that is searched for
universe@823 305 *
universe@823 306 * @return 0 if the node contains the data,
universe@826 307 * positive if one of the children might contain the data,
universe@826 308 * negative if neither the node, nor the children contains the data
universe@823 309 */
universe@824 310 typedef int (*cx_tree_search_func)(void const *node, void const* data);
universe@823 311
universe@826 312
universe@826 313 /**
universe@826 314 * Searches for data in a tree.
universe@826 315 *
universe@826 316 * When the data cannot be found exactly, the search function might return a
universe@826 317 * closest result which might be a good starting point for adding a new node
universe@826 318 * to the tree.
universe@826 319 *
universe@826 320 * Depending on the tree structure it is not necessarily guaranteed that the
universe@826 321 * "closest" match is uniquely defined. This function will search for a node
universe@826 322 * with the best match according to the \p sfunc (meaning: the return value of
universe@826 323 * \p sfunc which is closest to zero). If that is also ambiguous, an arbitrary
universe@826 324 * node matching the criteria is returned.
universe@826 325 *
universe@826 326 * @param root the root node
universe@826 327 * @param data the data to search for
universe@826 328 * @param sfunc the search function
universe@826 329 * @param result where the result shall be stored
universe@826 330 * @param loc_children offset in the node struct for the children linked list
universe@826 331 * @param loc_next offset in the node struct for the next pointer
universe@826 332 * @return zero if the node was found exactly, positive if a node was found that
universe@826 333 * could contain the node (but doesn't right now), negative if the tree does not
universe@826 334 * contain any node that might be related to the searched data
universe@826 335 */
universe@826 336 __attribute__((__nonnull__))
universe@826 337 int cx_tree_search(
universe@826 338 void const *root,
universe@826 339 void const *data,
universe@826 340 cx_tree_search_func sfunc,
universe@826 341 void **result,
universe@826 342 ptrdiff_t loc_children,
universe@826 343 ptrdiff_t loc_next
universe@826 344 );
universe@826 345
universe@828 346 /**
universe@845 347 * Creates a depth-first iterator for a tree with the specified root node.
universe@828 348 *
universe@828 349 * @note A tree iterator needs to maintain a stack of visited nodes, which is allocated using stdlib malloc().
universe@828 350 * When the iterator becomes invalid, this memory is automatically released. However, if you wish to cancel the
universe@828 351 * iteration before the iterator becomes invalid by itself, you MUST call cxTreeIteratorDispose() manually to release
universe@828 352 * the memory.
universe@828 353 *
universe@845 354 * @remark The returned iterator does not support cxIteratorFlagRemoval().
universe@828 355 *
universe@828 356 * @param root the root node
universe@833 357 * @param visit_on_exit set to true, when the iterator shall visit a node again after processing all children
universe@828 358 * @param loc_children offset in the node struct for the children linked list
universe@828 359 * @param loc_next offset in the node struct for the next pointer
universe@828 360 * @return the new tree iterator
universe@828 361 * @see cxTreeIteratorDispose()
universe@828 362 */
universe@828 363 __attribute__((__nonnull__))
universe@830 364 CxTreeIterator cx_tree_iterator(
universe@830 365 void *root,
universe@833 366 bool visit_on_exit,
universe@828 367 ptrdiff_t loc_children,
universe@828 368 ptrdiff_t loc_next
universe@828 369 );
universe@828 370
universe@845 371 /**
universe@845 372 * Creates a breadth-first iterator for a tree with the specified root node.
universe@845 373 *
universe@845 374 * @note A tree visitor needs to maintain a queue of to be visited nodes, which is allocated using stdlib malloc().
universe@845 375 * When the visitor becomes invalid, this memory is automatically released. However, if you wish to cancel the
universe@845 376 * iteration before the visitor becomes invalid by itself, you MUST call cxTreeVisitorDispose() manually to release
universe@845 377 * the memory.
universe@845 378 *
universe@845 379 * @remark The returned iterator does not support cxIteratorFlagRemoval().
universe@845 380 *
universe@845 381 * @param root the root node
universe@845 382 * @param loc_children offset in the node struct for the children linked list
universe@845 383 * @param loc_next offset in the node struct for the next pointer
universe@845 384 * @return the new tree visitor
universe@845 385 * @see cxTreeVisitorDispose()
universe@845 386 */
universe@845 387 __attribute__((__nonnull__))
universe@845 388 CxTreeVisitor cx_tree_visitor(
universe@845 389 void *root,
universe@845 390 ptrdiff_t loc_children,
universe@845 391 ptrdiff_t loc_next
universe@845 392 );
universe@845 393
universe@816 394 #ifdef __cplusplus
universe@816 395 } // extern "C"
universe@816 396 #endif
universe@816 397
universe@816 398 #endif //UCX_TREE_H

mercurial