src/cx/collection.h

Sun, 28 Dec 2025 17:31:20 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 28 Dec 2025 17:31:20 +0100
changeset 1675
36c0fb2b60b2
parent 1631
74c6582adabb
permissions
-rw-r--r--

overhaul all attributes

677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 /*
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4 * Copyright 2023 Mike Becker, Olaf Wintermann All rights reserved.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 */
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 /**
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
29 * @file collection.h
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
30 * @brief Common definitions for various collection implementations.
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
31 * @author Mike Becker
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
32 * @author Olaf Wintermann
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
33 * @copyright 2-Clause BSD License
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34 */
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
35
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
36 #ifndef UCX_COLLECTION_H
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37 #define UCX_COLLECTION_H
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 #include "allocator.h"
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
40 #include "iterator.h"
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
41 #include "compare.h"
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
42
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
43 /**
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
44 * Special constant used for creating collections that are storing pointers.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
45 */
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
46 #define CX_STORE_POINTERS 0
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
47
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
48 /**
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
49 * Base attributes of a collection.
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
50 */
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
51 struct cx_collection_s {
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
52 /**
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
53 * The allocator to use.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
54 */
890
54565fd74e74 move all const keywords to the west - fixes #426
Mike Becker <universe@uap-core.de>
parents: 857
diff changeset
55 const CxAllocator *allocator;
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
56 /**
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
57 * The size of each element.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
58 */
855
35bcb3216c0d fix inconsistent use of item_size and elem_size
Mike Becker <universe@uap-core.de>
parents: 854
diff changeset
59 size_t elem_size;
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
60 /**
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
61 * The number of currently stored elements.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
62 */
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
63 size_t size;
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
64 /**
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
65 * A two-argument comparator function for the elements.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
66 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
67 cx_compare_func simple_cmp;
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
68 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
69 * A three-argument comparator function for the elements.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
70 * If specified, this function has precedence over the @c simple_cmp function.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
71 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
72 cx_compare_func2 advanced_cmp;
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
73 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
74 * A pointer to custom data for the @c advanced_cmp function
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
75 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
76 void *cmp_data;
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
77 /**
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
78 * An optional simple destructor for the collection's elements.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
79 *
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
80 * @attention Read the documentation of the particular collection implementation
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
81 * whether this destructor shall only destroy the contents or also free the memory.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
82 */
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
83 cx_destructor_func simple_destructor;
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
84 /**
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
85 * An optional advanced destructor for the collection's elements.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
86 *
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
87 * @attention Read the documentation of the particular collection implementation
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
88 * whether this destructor shall only destroy the contents or also free the memory.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
89 */
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
90 cx_destructor_func2 advanced_destructor;
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
91 /**
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
92 * The pointer to additional data that is passed to the advanced destructor.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
93 */
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
94 void *destructor_data;
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
95 /**
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
96 * Indicates if this list is supposed to store pointers
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
97 * instead of copies of the actual objects.
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
98 */
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
99 bool store_pointer;
1163
68ff0839bc6a optimize cx_arl_find_remove for sorted arrays - fixes #547
Mike Becker <universe@uap-core.de>
parents: 1091
diff changeset
100 /**
68ff0839bc6a optimize cx_arl_find_remove for sorted arrays - fixes #547
Mike Becker <universe@uap-core.de>
parents: 1091
diff changeset
101 * Indicates if this collection is guaranteed to be sorted.
68ff0839bc6a optimize cx_arl_find_remove for sorted arrays - fixes #547
Mike Becker <universe@uap-core.de>
parents: 1091
diff changeset
102 * Note that the elements can still be sorted, even when the collection is not aware of that.
68ff0839bc6a optimize cx_arl_find_remove for sorted arrays - fixes #547
Mike Becker <universe@uap-core.de>
parents: 1091
diff changeset
103 */
68ff0839bc6a optimize cx_arl_find_remove for sorted arrays - fixes #547
Mike Becker <universe@uap-core.de>
parents: 1091
diff changeset
104 bool sorted;
854
fe0d69d72bcd fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents: 786
diff changeset
105 };
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
106
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
107 /**
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
108 * Use this macro to declare common members for a collection structure.
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
109 *
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
110 * @par Example Use
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
111 * @code
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
112 * struct MyCustomSet {
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
113 * CX_COLLECTION_BASE;
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
114 * MySetElements *data;
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
115 * }
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
116 * @endcode
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
117 */
856
6bbbf219251d fix name of collection base member (to avoid base.base)
Mike Becker <universe@uap-core.de>
parents: 855
diff changeset
118 #define CX_COLLECTION_BASE struct cx_collection_s collection
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
119
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
120 /**
1171
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
121 * Returns the number of elements currently stored.
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
122 *
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
123 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
124 * @return (@c size_t) the number of currently stored elements
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
125 */
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
126 #define cxCollectionSize(c) ((c)->collection.size)
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
127
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
128 /**
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
129 * Returns the size of one element.
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
130 *
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
131 * If #cxCollectionStoresPointers() returns true, this is the size of a pointer.
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
132 *
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
133 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
134 * @return (@c size_t) the size of one element in bytes
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
135 */
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
136 #define cxCollectionElementSize(c) ((c)->collection.elem_size)
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
137
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
138 /**
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
139 * Indicates whether this collection only stores pointers instead of the actual data.
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
140 *
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
141 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
142 * @retval true if this collection stores only pointers to data
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
143 * @retval false if this collection stores the actual element's data
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
144 */
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
145 #define cxCollectionStoresPointers(c) ((c)->collection.store_pointer)
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
146
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
147
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
148 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
149 * Convenience macro for adding indirection to an element if the collection is storing pointers.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
150 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
151 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
152 * @param elem the pointer that shall be taken the address from, if the collection is storing pointers
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
153 * @return if the collection is storing pointers, takes the address of @p elem, otherwise returns @p elem
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
154 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
155 #define cx_ref(c, elem) (cxCollectionStoresPointers(c) ? ((void*)&(elem)) : (elem))
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
156
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
157 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
158 * Convenience macro for dereferencing an element if the collection is storing pointers.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
159 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
160 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
161 * @param elem a pointer to the collection element
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
162 * @return if the collection is storing pointers, dereferences @p elem, otherwise returns @p elem
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
163 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
164 #define cx_deref(c, elem) (cxCollectionStoresPointers(c) ? *((void**)(elem)) : (elem))
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
165
1171
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
166 /**
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
167 * Indicates whether the collection can guarantee that the stored elements are currently sorted.
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
168 *
1424
563033aa998c fixes tons of typos and grammar issues across the documentation - fixes #667
Mike Becker <universe@uap-core.de>
parents: 1171
diff changeset
169 * This may return @c false even when the elements are sorted.
563033aa998c fixes tons of typos and grammar issues across the documentation - fixes #667
Mike Becker <universe@uap-core.de>
parents: 1171
diff changeset
170 * It is totally up to the implementation of the collection when to check if the elements are sorted.
563033aa998c fixes tons of typos and grammar issues across the documentation - fixes #667
Mike Becker <universe@uap-core.de>
parents: 1171
diff changeset
171 * It is usually a good practice to establish this property as an invariant that does not need
563033aa998c fixes tons of typos and grammar issues across the documentation - fixes #667
Mike Becker <universe@uap-core.de>
parents: 1171
diff changeset
172 * to be re-checked on certain operations.
1171
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
173 *
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
174 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
175 * @retval true if the elements are currently sorted wrt. the collection's compare function
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
176 * @retval false if the order of elements is unknown
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
177 */
1427
943bfd9e7978 make cxCollectionSorted() always return true for empty collections regardless of the sorted flag
Mike Becker <universe@uap-core.de>
parents: 1424
diff changeset
178 #define cxCollectionSorted(c) ((c)->collection.sorted || (c)->collection.size == 0)
1171
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
179
155bc3b0dcb3 adds documentation for destructor functions and collections
Mike Becker <universe@uap-core.de>
parents: 1163
diff changeset
180 /**
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
181 * Sets a simple compare function for a collection.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
182 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
183 * Erases a possible advanced compare function.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
184 * If you want to set both, because you want to access the simple function
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
185 * in your advanced function, you must set the simple function first.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
186 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
187 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
188 * @param func (@c cx_compare_func) the compare function
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
189 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
190 #define cxSetCompareFunc(c, func) \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
191 (c)->collection.simple_cmp = (cx_compare_func)(func); \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
192 (c)->collection.advanced_cmp = NULL
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
193
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
194 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
195 * Sets an advanced compare function that supports custom data for a collection.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
196 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
197 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
198 * @param func (@c cx_compare_func2) the compare function
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
199 * @param data (@c void*) the pointer to custom data that is passed to the compare function
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
200 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
201 #define cxSetAdvancedCompareFunc(c, func, data) \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
202 (c)->collection.advanced_cmp = (cx_compare_func2) func; \
1631
74c6582adabb fix cxSetAdvancedCompareFunc() setting the wrong custom data field
Mike Becker <universe@uap-core.de>
parents: 1618
diff changeset
203 (c)->collection.cmp_data = data
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
204
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
205 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
206 * Invokes the simple comparator function for two elements.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
207 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
208 * Usually only used by collection implementations. There should be no need
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
209 * to invoke this macro manually.
1464
9a10af83cfab add cxCollectionCompareFunc() macro
Mike Becker <universe@uap-core.de>
parents: 1427
diff changeset
210 *
9a10af83cfab add cxCollectionCompareFunc() macro
Mike Becker <universe@uap-core.de>
parents: 1427
diff changeset
211 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
212 * @param left (@c void*) pointer to data
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
213 * @param right (@c void*) pointer to data
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
214 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
215 #define cx_invoke_simple_compare_func(c, left, right) \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
216 (c)->collection.simple_cmp(left, right)
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
217
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
218 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
219 * Invokes the advanced comparator function for two elements.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
220 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
221 * Usually only used by collection implementations. There should be no need
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
222 * to invoke this macro manually.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
223 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
224 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
225 * @param left (@c void*) pointer to data
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
226 * @param right (@c void*) pointer to data
1464
9a10af83cfab add cxCollectionCompareFunc() macro
Mike Becker <universe@uap-core.de>
parents: 1427
diff changeset
227 */
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
228 #define cx_invoke_advanced_compare_func(c, left, right) \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
229 (c)->collection.advanced_cmp(left, right, (c)->collection.cmp_data)
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
230
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
231
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
232 /**
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
233 * Invokes the configured comparator function for two elements.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
234 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
235 * Usually only used by collection implementations. There should be no need
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
236 * to invoke this macro manually.
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
237 *
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
238 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
239 * @param left (@c void*) pointer to data
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
240 * @param right (@c void*) pointer to data
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
241 */
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
242 #define cx_invoke_compare_func(c, left, right) \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
243 (((c)->collection.advanced_cmp) ? \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
244 cx_invoke_advanced_compare_func(c,left,right) : \
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
245 cx_invoke_simple_compare_func(c,left,right))
1464
9a10af83cfab add cxCollectionCompareFunc() macro
Mike Becker <universe@uap-core.de>
parents: 1427
diff changeset
246
9a10af83cfab add cxCollectionCompareFunc() macro
Mike Becker <universe@uap-core.de>
parents: 1427
diff changeset
247 /**
857
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
248 * Sets a simple destructor function for this collection.
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
249 *
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
250 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
251 * @param destr (@c cx_destructor_func) the destructor function
857
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
252 */
1605
55b13f583356 refactor the list and map construction functions and remove the simple macros
Mike Becker <universe@uap-core.de>
parents: 1464
diff changeset
253 #define cxSetDestructor(c, destr) \
857
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
254 (c)->collection.simple_destructor = (cx_destructor_func) destr
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
255
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
256 /**
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
257 * Sets an advanced destructor function for this collection.
857
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
258 *
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
259 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
1618
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
260 * @param destr (@c cx_destructor_func2) the destructor function
ef7cab6eb131 huge refactoring of collections to add support for 3-arg compare functions
Mike Becker <universe@uap-core.de>
parents: 1605
diff changeset
261 * @param data (@c void*) the additional data the advanced destructor is invoked with
857
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
262 */
1605
55b13f583356 refactor the list and map construction functions and remove the simple macros
Mike Becker <universe@uap-core.de>
parents: 1464
diff changeset
263 #define cxSetAdvancedDestructor(c, destr, data) \
857
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
264 (c)->collection.advanced_destructor = (cx_destructor_func2) destr; \
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
265 (c)->collection.destructor_data = data
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
266
4d12e34bb130 add missing convenience functions
Mike Becker <universe@uap-core.de>
parents: 856
diff changeset
267 /**
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
268 * Invokes the simple destructor function for a specific element.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
269 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
270 * Usually only used by collection implementations. There should be no need
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
271 * to invoke this macro manually.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
272 *
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
273 * When the collection stores pointers, those pointers are directly passed
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
274 * to the destructor. Otherwise, a pointer to the element is passed.
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
275 *
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
276 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
277 * @param e the element (the type is @c void* or @c void** depending on context)
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
278 */
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
279 #define cx_invoke_simple_destructor(c, e) \
856
6bbbf219251d fix name of collection base member (to avoid base.base)
Mike Becker <universe@uap-core.de>
parents: 855
diff changeset
280 (c)->collection.simple_destructor((c)->collection.store_pointer ? (*((void **) (e))) : (e))
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
281
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
282 /**
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
283 * Invokes the advanced destructor function for a specific element.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
284 *
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
285 * Usually only used by collection implementations. There should be no need
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
286 * to invoke this macro manually.
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
287 *
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
288 * When the collection stores pointers, those pointers are directly passed
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
289 * to the destructor. Otherwise, a pointer to the element is passed.
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
290 *
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
291 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
292 * @param e the element (the type is @c void* or @c void** depending on context)
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
293 */
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
294 #define cx_invoke_advanced_destructor(c, e) \
856
6bbbf219251d fix name of collection base member (to avoid base.base)
Mike Becker <universe@uap-core.de>
parents: 855
diff changeset
295 (c)->collection.advanced_destructor((c)->collection.destructor_data, \
6bbbf219251d fix name of collection base member (to avoid base.base)
Mike Becker <universe@uap-core.de>
parents: 855
diff changeset
296 (c)->collection.store_pointer ? (*((void **) (e))) : (e))
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
297
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
298
712
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
299 /**
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
300 * Invokes all available destructor functions for a specific element.
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
301 *
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
302 * Usually only used by collection implementations. There should be no need
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
303 * to invoke this macro manually.
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
304 *
1091
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
305 * When the collection stores pointers, those pointers are directly passed
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
306 * to the destructor. Otherwise, a pointer to the element is passed.
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
307 *
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
308 * @param c a pointer to a struct that contains #CX_COLLECTION_BASE
04a114799d9d refine docs for collection.h - issue #548
Mike Becker <universe@uap-core.de>
parents: 890
diff changeset
309 * @param e the element (the type is @c void* or @c void** depending on context)
712
cff828e156a9 add missing docs for cx_invoke_destructor()
Mike Becker <universe@uap-core.de>
parents: 681
diff changeset
310 */
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
311 #define cx_invoke_destructor(c, e) \
856
6bbbf219251d fix name of collection base member (to avoid base.base)
Mike Becker <universe@uap-core.de>
parents: 855
diff changeset
312 if ((c)->collection.simple_destructor) cx_invoke_simple_destructor(c,e); \
6bbbf219251d fix name of collection base member (to avoid base.base)
Mike Becker <universe@uap-core.de>
parents: 855
diff changeset
313 if ((c)->collection.advanced_destructor) cx_invoke_advanced_destructor(c,e)
677
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
314
b09aae58bba4 refactoring of collections to make use of destructors in map implementations
Mike Becker <universe@uap-core.de>
parents:
diff changeset
315 #endif // UCX_COLLECTION_H

mercurial