Thu, 18 Dec 2025 17:50:15 +0100
update ucx
| 174 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
| 4 | * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved. | |
| 5 | * | |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | /** | |
| 440 | 29 | * @file linked_list.h |
| 30 | * @brief Linked list implementation. | |
| 31 | * @author Mike Becker | |
| 32 | * @author Olaf Wintermann | |
| 33 | * @copyright 2-Clause BSD License | |
| 174 | 34 | */ |
| 35 | ||
| 36 | #ifndef UCX_LINKED_LIST_H | |
| 37 | #define UCX_LINKED_LIST_H | |
| 38 | ||
| 39 | #include "common.h" | |
| 40 | #include "list.h" | |
| 41 | ||
| 42 | #ifdef __cplusplus | |
| 43 | extern "C" { | |
| 44 | #endif | |
| 45 | ||
| 46 | /** | |
| 845 | 47 | * Metadata for a linked list. |
| 48 | */ | |
| 49 | typedef struct cx_linked_list_s { | |
| 50 | /** Base members. */ | |
| 51 | struct cx_list_s base; | |
| 52 | /** | |
| 53 | * Location of the prev pointer (mandatory). | |
| 54 | */ | |
| 55 | off_t loc_prev; | |
| 56 | /** | |
| 57 | * Location of the next pointer (mandatory). | |
| 58 | */ | |
| 59 | off_t loc_next; | |
| 60 | /** | |
| 61 | * Location of the payload (mandatory). | |
| 62 | */ | |
| 63 | off_t loc_data; | |
| 64 | /** | |
|
943
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
65 | * Location of extra data (optional). |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
66 | * Negative when no extra data is requested. |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
67 | * @see cx_linked_list_extra_data() |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
68 | */ |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
69 | off_t loc_extra; |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
70 | /** |
| 845 | 71 | * Additional bytes to allocate @em behind the payload (e.g. for metadata). |
|
943
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
72 | * @see cx_linked_list_extra_data() |
| 845 | 73 | */ |
| 74 | size_t extra_data_len; | |
| 75 | /** | |
| 76 | * Pointer to the first node. | |
| 77 | */ | |
| 78 | void *begin; | |
| 79 | /** | |
| 80 | * Pointer to the last node. | |
| 81 | */ | |
| 82 | void *end; | |
| 83 | } cx_linked_list; | |
| 84 | ||
| 85 | /** | |
| 440 | 86 | * Allocates a linked list for storing elements with @p elem_size bytes each. |
| 174 | 87 | * |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
88 | * If @p elem_size is #CX_STORE_POINTERS, the created list stores pointers instead of |
| 845 | 89 | * copies of the added elements, and the compare function will be automatically set |
| 1016 | 90 | * to cx_cmp_ptr(). |
| 174 | 91 | * |
| 92 | * @param allocator the allocator for allocating the list nodes | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
93 | * (if @c NULL, the cxDefaultAllocator will be used) |
| 324 | 94 | * @param elem_size the size of each element in bytes |
| 174 | 95 | * @return the created list |
| 96 | */ | |
| 870 | 97 | cx_attr_nodiscard cx_attr_malloc cx_attr_dealloc(cxListFree, 1) |
| 98 | CX_EXPORT CxList *cxLinkedListCreate(const CxAllocator *allocator, | |
| 1016 | 99 | size_t elem_size); |
| 174 | 100 | |
| 101 | /** | |
|
943
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
102 | * Instructs the linked list to reserve extra data in each node. |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
103 | * |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
104 | * The extra data will be aligned and placed behind the element data. |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
105 | * The exact location in the node is stored in the @c loc_extra field |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
106 | * of the linked list. |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
107 | * |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
108 | * You should usually not use this function except when you are creating an |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
109 | * own linked-list implementation that is based on the UCX linked list and |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
110 | * needs to store extra data in each node. |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
111 | * |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
112 | * @param list the list (must be a linked list) |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
113 | * @param len the length of the extra data |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
114 | */ |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
115 | cx_attr_nonnull |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
116 | CX_EXPORT void cx_linked_list_extra_data(cx_linked_list *list, size_t len); |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
117 | |
|
9b5948aa5b90
update ucx to version 3.2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
870
diff
changeset
|
118 | /** |
| 174 | 119 | * Finds the node at a certain index. |
| 120 | * | |
| 121 | * This function can be used to start at an arbitrary position within the list. | |
| 845 | 122 | * If the search index is larger than the start index, @p loc_advance must denote |
| 123 | * the location of a @c next pointer (i.e., a pointer to the next node). | |
| 174 | 124 | * But it is also possible that the search index is smaller than the start index |
| 845 | 125 | * (e.g., in cases where traversing a list backwards is faster). |
| 126 | * In that case @p loc_advance must denote the location of a @c prev pointer | |
| 127 | * (i.e., a pointer to the previous node). | |
| 174 | 128 | * |
| 129 | * @param start a pointer to the start node | |
| 130 | * @param start_index the start index | |
| 131 | * @param loc_advance the location of the pointer to advance | |
| 132 | * @param index the search index | |
| 133 | * @return the node found at the specified index | |
| 134 | */ | |
| 870 | 135 | cx_attr_nonnull cx_attr_nodiscard |
| 136 | CX_EXPORT void *cx_linked_list_at(const void *start,size_t start_index, | |
| 137 | ptrdiff_t loc_advance, size_t index); | |
| 174 | 138 | |
| 139 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
140 | * Finds the node containing an element within a linked list. |
| 174 | 141 | * |
| 142 | * @param start a pointer to the start node | |
| 143 | * @param loc_advance the location of the pointer to advance | |
| 440 | 144 | * @param loc_data the location of the @c data pointer within your node struct |
| 174 | 145 | * @param elem a pointer to the element to find |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
146 | * @param found_index an optional pointer where the index of the found node |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
147 | * (given that @p start has index 0) is stored |
| 1016 | 148 | * @param cmp_func a compare function to compare @p elem against the node data |
| 845 | 149 | * @return a pointer to the found node or @c NULL if no matching node was found |
| 174 | 150 | */ |
| 1016 | 151 | cx_attr_nonnull_arg(1, 4, 6) |
| 870 | 152 | CX_EXPORT void *cx_linked_list_find(const void *start, ptrdiff_t loc_advance, |
| 1016 | 153 | ptrdiff_t loc_data, const void *elem, size_t *found_index, |
| 154 | cx_compare_func cmp_func); | |
| 155 | ||
| 156 | /** | |
| 157 | * Finds the node containing an element within a linked list. | |
| 158 | * | |
| 159 | * @param start a pointer to the start node | |
| 160 | * @param loc_advance the location of the pointer to advance | |
| 161 | * @param loc_data the location of the @c data pointer within your node struct | |
| 162 | * @param elem a pointer to the element to find | |
| 163 | * @param found_index an optional pointer where the index of the found node | |
| 164 | * (given that @p start has index 0) is stored | |
| 165 | * @param cmp_func a compare function to compare @p elem against the node data | |
| 166 | * @param context additional context for the compare function | |
| 167 | * @return a pointer to the found node or @c NULL if no matching node was found | |
| 168 | */ | |
| 169 | cx_attr_nonnull_arg(1, 4, 6) | |
| 170 | CX_EXPORT void *cx_linked_list_find_c(const void *start, ptrdiff_t loc_advance, | |
| 171 | ptrdiff_t loc_data, const void *elem, size_t *found_index, | |
| 172 | cx_compare_func2 cmp_func, void *context); | |
|
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
173 | |
|
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
174 | /** |
| 174 | 175 | * Finds the first node in a linked list. |
| 176 | * | |
| 440 | 177 | * The function starts with the pointer denoted by @p node and traverses the list |
| 174 | 178 | * along a prev pointer whose location within the node struct is |
| 440 | 179 | * denoted by @p loc_prev. |
| 174 | 180 | * |
| 181 | * @param node a pointer to a node in the list | |
| 440 | 182 | * @param loc_prev the location of the @c prev pointer |
| 174 | 183 | * @return a pointer to the first node |
| 184 | */ | |
| 870 | 185 | cx_attr_nonnull cx_attr_returns_nonnull |
| 186 | CX_EXPORT void *cx_linked_list_first(const void *node, ptrdiff_t loc_prev); | |
| 174 | 187 | |
| 188 | /** | |
| 189 | * Finds the last node in a linked list. | |
| 190 | * | |
| 440 | 191 | * The function starts with the pointer denoted by @p node and traverses the list |
| 174 | 192 | * along a next pointer whose location within the node struct is |
| 440 | 193 | * denoted by @p loc_next. |
| 174 | 194 | * |
| 195 | * @param node a pointer to a node in the list | |
| 440 | 196 | * @param loc_next the location of the @c next pointer |
| 174 | 197 | * @return a pointer to the last node |
| 198 | */ | |
| 870 | 199 | cx_attr_nonnull cx_attr_returns_nonnull |
| 200 | CX_EXPORT void *cx_linked_list_last(const void *node, ptrdiff_t loc_next); | |
| 174 | 201 | |
| 202 | /** | |
| 203 | * Finds the predecessor of a node in case it is not linked. | |
| 204 | * | |
| 440 | 205 | * @remark If @p node is not contained in the list starting with @p begin, the behavior is undefined. |
| 174 | 206 | * |
| 207 | * @param begin the node where to start the search | |
| 440 | 208 | * @param loc_next the location of the @c next pointer |
| 174 | 209 | * @param node the successor of the node to find |
| 440 | 210 | * @return the node or @c NULL if @p node has no predecessor |
| 174 | 211 | */ |
| 440 | 212 | cx_attr_nonnull |
| 870 | 213 | CX_EXPORT void *cx_linked_list_prev(const void *begin, ptrdiff_t loc_next, const void *node); |
| 174 | 214 | |
| 215 | /** | |
| 216 | * Adds a new node to a linked list. | |
| 845 | 217 | * The node must not be part of any list yet. |
| 174 | 218 | * |
| 440 | 219 | * @remark One of the pointers @p begin or @p end may be @c NULL, but not both. |
| 174 | 220 | * |
| 440 | 221 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 222 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 223 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 224 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 225 | * @param new_node a pointer to the node that shall be appended |
| 226 | */ | |
| 440 | 227 | cx_attr_nonnull_arg(5) |
| 870 | 228 | CX_EXPORT void cx_linked_list_add(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node); |
| 174 | 229 | |
| 230 | /** | |
| 231 | * Prepends a new node to a linked list. | |
| 845 | 232 | * The node must not be part of any list yet. |
| 174 | 233 | * |
| 440 | 234 | * @remark One of the pointers @p begin or @p end may be @c NULL, but not both. |
| 174 | 235 | * |
| 440 | 236 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 237 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 238 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 239 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 240 | * @param new_node a pointer to the node that shall be prepended |
| 241 | */ | |
| 440 | 242 | cx_attr_nonnull_arg(5) |
| 870 | 243 | CX_EXPORT void cx_linked_list_prepend(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node); |
| 174 | 244 | |
| 245 | /** | |
| 246 | * Links two nodes. | |
| 247 | * | |
| 440 | 248 | * @param left the new predecessor of @p right |
| 249 | * @param right the new successor of @p left | |
| 250 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 251 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 252 | */ |
| 440 | 253 | cx_attr_nonnull |
| 870 | 254 | CX_EXPORT void cx_linked_list_link(void *left, void *right, ptrdiff_t loc_prev, ptrdiff_t loc_next); |
| 174 | 255 | |
| 256 | /** | |
| 257 | * Unlinks two nodes. | |
| 258 | * | |
| 259 | * If right is not the successor of left, the behavior is undefined. | |
| 260 | * | |
| 440 | 261 | * @param left the predecessor of @p right |
| 262 | * @param right the successor of @p left | |
| 263 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 264 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 265 | */ |
| 440 | 266 | cx_attr_nonnull |
| 870 | 267 | CX_EXPORT void cx_linked_list_unlink(void *left, void *right, ptrdiff_t loc_prev, ptrdiff_t loc_next); |
| 174 | 268 | |
| 269 | /** | |
| 270 | * Inserts a new node after a given node of a linked list. | |
| 845 | 271 | * The new node must not be part of any list yet. |
| 174 | 272 | * |
| 440 | 273 | * @note If you specify @c NULL as the @p node to insert after, this function needs either the @p begin or |
| 274 | * the @p end pointer to determine the start of the list. Then the new node will be prepended to the list. | |
| 174 | 275 | * |
| 440 | 276 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 277 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 278 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 279 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 280 | * @param node the node after which to insert (@c NULL if you want to prepend the node to the list) | |
| 324 | 281 | * @param new_node a pointer to the node that shall be inserted |
| 174 | 282 | */ |
| 440 | 283 | cx_attr_nonnull_arg(6) |
| 870 | 284 | CX_EXPORT void cx_linked_list_insert(void **begin, void **end, |
| 285 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, void *new_node); | |
| 174 | 286 | |
| 287 | /** | |
| 288 | * Inserts a chain of nodes after a given node of a linked list. | |
| 845 | 289 | * The chain must not be part of any list yet. |
| 174 | 290 | * |
| 291 | * If you do not explicitly specify the end of the chain, it will be determined by traversing | |
| 440 | 292 | * the @c next pointer. |
| 174 | 293 | * |
| 440 | 294 | * @note If you specify @c NULL as the @p node to insert after, this function needs either the @p begin or |
| 295 | * the @p end pointer to determine the start of the list. If only the @p end pointer is specified, you also need | |
| 296 | * to provide a valid @p loc_prev location. | |
| 174 | 297 | * Then the chain will be prepended to the list. |
| 298 | * | |
| 440 | 299 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 300 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 301 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 302 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 303 | * @param node the node after which to insert (@c NULL to prepend the chain to the list) | |
| 174 | 304 | * @param insert_begin a pointer to the first node of the chain that shall be inserted |
| 305 | * @param insert_end a pointer to the last node of the chain (or NULL if the last node shall be determined) | |
| 306 | */ | |
| 440 | 307 | cx_attr_nonnull_arg(6) |
| 870 | 308 | CX_EXPORT void cx_linked_list_insert_chain(void **begin, void **end, |
| 309 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, void *insert_begin, void *insert_end); | |
| 324 | 310 | |
| 311 | /** | |
| 312 | * Inserts a node into a sorted linked list. | |
| 845 | 313 | * The new node must not be part of any list yet. |
| 324 | 314 | * |
| 440 | 315 | * If the list starting with the node pointed to by @p begin is not sorted |
| 324 | 316 | * already, the behavior is undefined. |
| 317 | * | |
| 440 | 318 | * @param begin a pointer to the beginning node pointer (required) |
| 324 | 319 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 320 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 321 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 324 | 322 | * @param new_node a pointer to the node that shall be inserted |
| 323 | * @param cmp_func a compare function that will receive the node pointers | |
| 324 | */ | |
| 440 | 325 | cx_attr_nonnull_arg(1, 5, 6) |
| 870 | 326 | CX_EXPORT void cx_linked_list_insert_sorted(void **begin, void **end, |
| 327 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func cmp_func); | |
| 324 | 328 | |
| 329 | /** | |
| 330 | * Inserts a chain of nodes into a sorted linked list. | |
| 845 | 331 | * The chain must not be part of any list yet. |
| 324 | 332 | * |
| 440 | 333 | * If either the list starting with the node pointed to by @p begin or the list |
| 334 | * starting with @p insert_begin is not sorted, the behavior is undefined. | |
| 324 | 335 | * |
| 440 | 336 | * @attention In contrast to cx_linked_list_insert_chain(), the source chain |
| 324 | 337 | * will be broken and inserted into the target list so that the resulting list |
| 845 | 338 | * will be sorted according to @p cmp_func. That means each node in the source |
| 324 | 339 | * chain may be re-linked with nodes from the target list. |
| 340 | * | |
| 440 | 341 | * @param begin a pointer to the beginning node pointer (required) |
| 324 | 342 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 343 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 344 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 324 | 345 | * @param insert_begin a pointer to the first node of the chain that shall be inserted |
| 346 | * @param cmp_func a compare function that will receive the node pointers | |
| 347 | */ | |
| 440 | 348 | cx_attr_nonnull_arg(1, 5, 6) |
| 870 | 349 | CX_EXPORT void cx_linked_list_insert_sorted_chain(void **begin, void **end, |
| 350 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func cmp_func); | |
| 174 | 351 | |
| 352 | /** | |
| 845 | 353 | * Inserts a node into a sorted linked list if no other node with the same value already exists. |
| 354 | * The new node must not be part of any list yet. | |
| 355 | * | |
| 356 | * If the list starting with the node pointed to by @p begin is not sorted | |
| 357 | * already, the behavior is undefined. | |
| 358 | * | |
| 359 | * @param begin a pointer to the beginning node pointer (required) | |
| 360 | * @param end a pointer to the end node pointer (if your list has one) | |
| 361 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 362 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 363 | * @param new_node a pointer to the node that shall be inserted | |
| 364 | * @param cmp_func a compare function that will receive the node pointers | |
| 365 | * @retval zero when the node was inserted | |
| 366 | * @retval non-zero when a node with the same value already exists | |
| 367 | */ | |
| 368 | cx_attr_nonnull_arg(1, 5, 6) | |
| 870 | 369 | CX_EXPORT int cx_linked_list_insert_unique(void **begin, void **end, |
| 370 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func cmp_func); | |
| 845 | 371 | |
| 372 | /** | |
| 373 | * Inserts a chain of nodes into a sorted linked list, avoiding duplicates. | |
| 374 | * The chain must not be part of any list yet. | |
| 375 | * | |
| 376 | * If either the list starting with the node pointed to by @p begin or the list | |
| 377 | * starting with @p insert_begin is not sorted, the behavior is undefined. | |
| 378 | * | |
| 379 | * @attention In contrast to cx_linked_list_insert_sorted(), not all nodes of the | |
| 380 | * chain might be added. This function returns a new chain consisting of all the duplicates. | |
| 381 | * | |
| 382 | * @param begin a pointer to the beginning node pointer (required) | |
| 383 | * @param end a pointer to the end node pointer (if your list has one) | |
| 384 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 385 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 386 | * @param insert_begin a pointer to the first node of the chain that shall be inserted | |
| 387 | * @param cmp_func a compare function that will receive the node pointers | |
| 388 | * @return a pointer to a new chain with all duplicates that were not inserted (or @c NULL when there were no duplicates) | |
| 389 | */ | |
| 870 | 390 | cx_attr_nonnull_arg(1, 5, 6) cx_attr_nodiscard |
| 391 | CX_EXPORT void *cx_linked_list_insert_unique_chain(void **begin, void **end, | |
| 392 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func cmp_func); | |
| 845 | 393 | |
| 394 | /** | |
| 440 | 395 | * Removes a chain of nodes from the linked list. |
| 174 | 396 | * |
| 845 | 397 | * If one of the nodes to remove is the beginning (resp. end) node of the list, and if @p begin (resp. @p end) |
| 174 | 398 | * addresses are provided, the pointers are adjusted accordingly. |
| 399 | * | |
| 400 | * The following combinations of arguments are valid (more arguments are optional): | |
| 440 | 401 | * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance) |
| 402 | * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance) | |
| 403 | * | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
404 | * @remark The @c next and @c prev pointers of the removed chain are not cleared by this function and may still be used |
| 440 | 405 | * to traverse to a former adjacent node in the list, or within the chain. |
| 174 | 406 | * |
| 440 | 407 | * @param begin a pointer to the beginning node pointer (optional) |
| 408 | * @param end a pointer to the end node pointer (optional) | |
| 409 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 410 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 411 | * @param node the start node of the chain | |
| 412 | * @param num the number of nodes to remove | |
| 413 | * @return the actual number of nodes that were removed (can be less when the list did not have enough nodes) | |
| 414 | */ | |
| 415 | cx_attr_nonnull_arg(5) | |
| 870 | 416 | CX_EXPORT size_t cx_linked_list_remove_chain(void **begin, void **end, |
| 417 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, size_t num); | |
| 440 | 418 | |
| 419 | /** | |
| 420 | * Removes a node from the linked list. | |
| 421 | * | |
| 845 | 422 | * If the node to remove is the beginning (resp. end) node of the list, and if @p begin (resp. @p end) |
| 440 | 423 | * addresses are provided, the pointers are adjusted accordingly. |
| 424 | * | |
| 425 | * The following combinations of arguments are valid (more arguments are optional): | |
| 426 | * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance) | |
| 427 | * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance) | |
| 428 | * | |
| 429 | * @remark The @c next and @c prev pointers of the removed node are not cleared by this function and may still be used | |
| 174 | 430 | * to traverse to a former adjacent node in the list. |
| 431 | * | |
| 440 | 432 | * @param begin a pointer to the beginning node pointer (optional) |
| 174 | 433 | * @param end a pointer to the end node pointer (optional) |
| 440 | 434 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 435 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 436 | * @param node the node to remove |
| 437 | */ | |
| 440 | 438 | cx_attr_nonnull_arg(5) |
| 870 | 439 | CX_EXPORT void cx_linked_list_remove(void **begin, void **end, |
| 440 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node); | |
| 174 | 441 | |
| 442 | /** | |
| 440 | 443 | * Determines the size of a linked list starting with @p node. |
| 444 | * | |
| 174 | 445 | * @param node the first node |
| 440 | 446 | * @param loc_next the location of the @c next pointer within the node struct |
| 447 | * @return the size of the list or zero if @p node is @c NULL | |
| 174 | 448 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
449 | cx_attr_nodiscard |
| 870 | 450 | CX_EXPORT size_t cx_linked_list_size(const void *node, ptrdiff_t loc_next); |
| 174 | 451 | |
| 452 | /** | |
| 453 | * Sorts a linked list based on a comparison function. | |
| 454 | * | |
| 455 | * @note This is a recursive function with at most logarithmic recursion depth. | |
| 456 | * | |
| 440 | 457 | * @param begin a pointer to the beginning node pointer (required) |
| 174 | 458 | * @param end a pointer to the end node pointer (optional) |
| 440 | 459 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if not present) |
| 460 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 461 | * @param loc_data the location of the @c data pointer within your node struct | |
| 174 | 462 | * @param cmp_func the compare function defining the sort order |
| 463 | */ | |
| 440 | 464 | cx_attr_nonnull_arg(1, 6) |
| 870 | 465 | CX_EXPORT void cx_linked_list_sort(void **begin, void **end, |
| 466 | ptrdiff_t loc_prev, ptrdiff_t loc_next, ptrdiff_t loc_data, cx_compare_func cmp_func); | |
| 174 | 467 | |
| 1016 | 468 | /** |
| 469 | * Sorts a linked list based on a comparison function. | |
| 470 | * | |
| 471 | * @note This is a recursive function with at most logarithmic recursion depth. | |
| 472 | * | |
| 473 | * @param begin a pointer to the beginning node pointer (required) | |
| 474 | * @param end a pointer to the end node pointer (optional) | |
| 475 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if not present) | |
| 476 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 477 | * @param loc_data the location of the @c data pointer within your node struct | |
| 478 | * @param cmp_func the compare function defining the sort order | |
| 479 | * @param context additional context for the compare function | |
| 480 | */ | |
| 481 | cx_attr_nonnull_arg(1, 6) | |
| 482 | CX_EXPORT void cx_linked_list_sort_c(void **begin, void **end, | |
| 483 | ptrdiff_t loc_prev, ptrdiff_t loc_next, ptrdiff_t loc_data, cx_compare_func2 cmp_func, void *context); | |
| 484 | ||
| 174 | 485 | |
| 486 | /** | |
| 487 | * Compares two lists element wise. | |
| 488 | * | |
| 845 | 489 | * @attention Both lists must have the same structure. |
| 174 | 490 | * |
| 440 | 491 | * @param begin_left the beginning of the left list (@c NULL denotes an empty list) |
| 492 | * @param begin_right the beginning of the right list (@c NULL denotes an empty list) | |
| 174 | 493 | * @param loc_advance the location of the pointer to advance |
| 440 | 494 | * @param loc_data the location of the @c data pointer within your node struct |
| 174 | 495 | * @param cmp_func the function to compare the elements |
| 440 | 496 | * @return the first non-zero result of invoking @p cmp_func or: negative if the left list is smaller than the |
| 174 | 497 | * right list, positive if the left list is larger than the right list, zero if both lists are equal. |
| 498 | */ | |
| 440 | 499 | cx_attr_nonnull_arg(5) |
| 870 | 500 | CX_EXPORT int cx_linked_list_compare(const void *begin_left, const void *begin_right, |
| 501 | ptrdiff_t loc_advance, ptrdiff_t loc_data, cx_compare_func cmp_func); | |
| 174 | 502 | |
| 503 | /** | |
| 1016 | 504 | * Compares two lists element wise. |
| 505 | * | |
| 506 | * @attention Both lists must have the same structure. | |
| 507 | * | |
| 508 | * @param begin_left the beginning of the left list (@c NULL denotes an empty list) | |
| 509 | * @param begin_right the beginning of the right list (@c NULL denotes an empty list) | |
| 510 | * @param loc_advance the location of the pointer to advance | |
| 511 | * @param loc_data the location of the @c data pointer within your node struct | |
| 512 | * @param cmp_func the function to compare the elements | |
| 513 | * @return the first non-zero result of invoking @p cmp_func or: negative if the left list is smaller than the | |
| 514 | * right list, positive if the left list is larger than the right list, zero if both lists are equal. | |
| 515 | */ | |
| 516 | cx_attr_nonnull_arg(5) | |
| 517 | CX_EXPORT int cx_linked_list_compare_c(const void *begin_left, const void *begin_right, | |
| 518 | ptrdiff_t loc_advance, ptrdiff_t loc_data, cx_compare_func2 cmp_func, void *context); | |
| 519 | ||
| 520 | /** | |
| 174 | 521 | * Reverses the order of the nodes in a linked list. |
| 522 | * | |
| 440 | 523 | * @param begin a pointer to the beginning node pointer (required) |
| 174 | 524 | * @param end a pointer to the end node pointer (optional) |
| 440 | 525 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 526 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 527 | */ |
| 440 | 528 | cx_attr_nonnull_arg(1) |
| 870 | 529 | CX_EXPORT void cx_linked_list_reverse(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next); |
| 174 | 530 | |
| 531 | #ifdef __cplusplus | |
| 532 | } // extern "C" | |
| 533 | #endif | |
| 534 | ||
| 535 | #endif // UCX_LINKED_LIST_H |