src/ucx/cx/linked_list.h

Sun, 30 Nov 2025 18:25:55 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 30 Nov 2025 18:25:55 +0100
changeset 645
0c85c4cd0dd8
parent 621
956c03c25edd
permissions
-rw-r--r--

update ucx to version 3.2

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

mercurial