Sun, 07 Dec 2025 15:45:30 +0100
rename combobox to dropdown
| 174 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
| 4 | * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved. | |
| 5 | * | |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | /** | |
| 440 | 29 | * @file allocator.h |
| 174 | 30 | * Interface for custom allocators. |
| 31 | */ | |
| 32 | ||
| 33 | #ifndef UCX_ALLOCATOR_H | |
| 34 | #define UCX_ALLOCATOR_H | |
| 35 | ||
| 36 | #include "common.h" | |
| 37 | ||
| 38 | #ifdef __cplusplus | |
| 39 | extern "C" { | |
| 40 | #endif | |
| 41 | ||
| 42 | /** | |
| 43 | * The class definition for an allocator. | |
| 44 | */ | |
| 45 | typedef struct { | |
| 46 | /** | |
| 47 | * The allocator's malloc() implementation. | |
| 48 | */ | |
| 870 | 49 | void *(*malloc)(void *data, size_t n); |
| 174 | 50 | |
| 51 | /** | |
| 52 | * The allocator's realloc() implementation. | |
| 53 | */ | |
| 870 | 54 | void *(*realloc)(void *data, void *mem, size_t n); |
| 174 | 55 | |
| 56 | /** | |
| 57 | * The allocator's calloc() implementation. | |
| 58 | */ | |
| 870 | 59 | void *(*calloc)(void *data, size_t nmemb, size_t size); |
| 174 | 60 | |
| 61 | /** | |
| 62 | * The allocator's free() implementation. | |
| 63 | */ | |
| 870 | 64 | void (*free)(void *data, void *mem); |
| 174 | 65 | } cx_allocator_class; |
| 66 | ||
| 67 | /** | |
| 68 | * Structure holding the data for an allocator. | |
| 69 | */ | |
| 70 | struct cx_allocator_s { | |
| 71 | /** | |
| 72 | * A pointer to the instance of the allocator class. | |
| 73 | */ | |
| 74 | cx_allocator_class *cl; | |
| 75 | /** | |
| 76 | * A pointer to the data this allocator uses. | |
| 77 | */ | |
| 78 | void *data; | |
| 79 | }; | |
| 80 | ||
| 81 | /** | |
| 82 | * High-Level type alias for the allocator type. | |
| 83 | */ | |
| 84 | typedef struct cx_allocator_s CxAllocator; | |
| 85 | ||
| 86 | /** | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
87 | * A pre-defined allocator using standard library malloc() etc. |
| 174 | 88 | */ |
| 870 | 89 | CX_EXPORT extern const CxAllocator * const cxStdlibAllocator; |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
90 | |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
91 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
92 | * The default allocator that is used by UCX. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
93 | * Initialized with cxStdlibAllocator, but you may change it. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
94 | */ |
| 870 | 95 | CX_EXPORT extern const CxAllocator * cxDefaultAllocator; |
| 174 | 96 | |
| 97 | /** | |
| 98 | * Function pointer type for destructor functions. | |
| 99 | * | |
| 100 | * A destructor function deallocates possible contents and MAY free the memory | |
| 440 | 101 | * pointed to by @p memory. Read the documentation of the respective function |
| 102 | * pointer to learn if a destructor SHALL, MAY, or MUST NOT free the memory in | |
| 103 | * that particular implementation. | |
| 174 | 104 | * |
| 105 | * @param memory a pointer to the object to destruct | |
| 106 | */ | |
| 324 | 107 | typedef void (*cx_destructor_func)(void *memory); |
| 174 | 108 | |
| 109 | /** | |
| 110 | * Function pointer type for destructor functions. | |
| 111 | * | |
| 112 | * A destructor function deallocates possible contents and MAY free the memory | |
| 440 | 113 | * pointed to by @p memory. Read the documentation of the respective function |
| 114 | * pointer to learn if a destructor SHALL, MAY, or MUST NOT free the memory in | |
| 115 | * that particular implementation. | |
| 174 | 116 | * |
| 117 | * @param data an optional pointer to custom data | |
| 118 | * @param memory a pointer to the object to destruct | |
| 119 | */ | |
| 870 | 120 | typedef void (*cx_destructor_func2)(void *data, void *memory); |
| 121 | ||
| 122 | ||
| 123 | /** | |
| 124 | * Function pointer type for clone functions. | |
| 125 | * | |
| 126 | * A clone function is supposed to create a deep copy of the memory pointed to | |
| 127 | * by the @p source pointer. | |
| 128 | * If the @p target pointer is non-null, the clone function is supposed to store | |
| 129 | * the copy into that memory region. | |
| 130 | * Otherwise, the clone function shall use the specified @p allocator to create | |
| 131 | * a new object. | |
| 132 | * | |
| 133 | * The return value of a clone function is always a pointer to the target | |
| 134 | * memory region, or @c NULL if any allocation failed. | |
| 135 | * A clone function SHOULD NOT fail for any other reason than an allocation | |
| 136 | * failure. | |
| 137 | * | |
| 138 | * @param target the target memory or @c NULL, if memory shall be allocated | |
| 139 | * @param source the source memory | |
| 140 | * @param allocator the allocator that shall be used | |
| 141 | * @param data optional additional data | |
| 142 | * @return either the specified @p target, a pointer to the allocated memory, | |
| 143 | * or @c NULL, if any error occurred | |
| 144 | */ | |
| 145 | typedef void*(cx_clone_func)(void *target, const void *source, | |
| 146 | const CxAllocator *allocator, void *data); | |
| 174 | 147 | |
| 148 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
149 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 150 | * if necessary. |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
151 | * |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
152 | * @note This will use stdlib reallocate and @em not the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
153 | * |
| 440 | 154 | * @par Error handling |
| 155 | * @c errno will be set by realloc() on failure. | |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
156 | * |
|
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
157 | * @param mem pointer to the pointer to allocated block |
|
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
158 | * @param n the new size in bytes |
| 440 | 159 | * @retval zero success |
| 160 | * @retval non-zero failure | |
| 161 | * @see cx_reallocatearray() | |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
162 | */ |
| 870 | 163 | cx_attr_nonnull cx_attr_nodiscard |
| 164 | CX_EXPORT int cx_reallocate_(void **mem, size_t n); | |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
165 | |
|
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
166 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
167 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 168 | * if necessary. |
| 169 | * | |
| 170 | * The size is calculated by multiplying @p nemb and @p size. | |
| 171 | * | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
172 | * @note This will use stdlib reallocate and @em not the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
173 | * |
| 440 | 174 | * @par Error handling |
| 175 | * @c errno will be set by realloc() on failure or when the multiplication of | |
| 176 | * @p nmemb and @p size overflows. | |
| 177 | * | |
| 178 | * @param mem pointer to the pointer to allocated block | |
| 179 | * @param nmemb the number of elements | |
| 180 | * @param size the size of each element | |
| 181 | * @retval zero success | |
| 182 | * @retval non-zero failure | |
| 183 | * @see cx_reallocate() | |
| 184 | */ | |
| 870 | 185 | cx_attr_nonnull cx_attr_nodiscard |
| 186 | CX_EXPORT int cx_reallocatearray_(void **mem, size_t nmemb, size_t size); | |
| 440 | 187 | |
| 188 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
189 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 190 | * if necessary. |
| 191 | * | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
192 | * @note This will use stdlib reallocate and @em not the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
193 | * |
| 440 | 194 | * @par Error handling |
| 195 | * @c errno will be set by realloc() on failure. | |
| 196 | * | |
| 197 | * @param mem (@c void**) pointer to the pointer to allocated block | |
| 198 | * @param n (@c size_t) the new size in bytes | |
| 199 | * @retval zero success | |
| 200 | * @retval non-zero failure | |
| 201 | * @see cx_reallocatearray() | |
| 202 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
203 | #define cx_reallocate(mem, n) cx_reallocate_((void**)(mem), n) |
| 440 | 204 | |
| 205 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
206 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 207 | * if necessary. |
| 208 | * | |
| 209 | * The size is calculated by multiplying @p nemb and @p size. | |
| 210 | * | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
211 | * @note This will use stdlib reallocate and @em not the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
212 | * |
| 440 | 213 | * @par Error handling |
| 214 | * @c errno will be set by realloc() on failure or when the multiplication of | |
| 215 | * @p nmemb and @p size overflows. | |
| 216 | * | |
| 217 | * @param mem (@c void**) pointer to the pointer to allocated block | |
| 218 | * @param nmemb (@c size_t) the number of elements | |
| 219 | * @param size (@c size_t) the size of each element | |
| 220 | * @retval zero success | |
| 221 | * @retval non-zero failure | |
| 222 | */ | |
| 223 | #define cx_reallocatearray(mem, nmemb, size) \ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
224 | cx_reallocatearray_((void**)(mem), nmemb, size) |
| 440 | 225 | |
| 226 | /** | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
227 | * Allocates memory and sets every byte to zero. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
228 | * |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
229 | * @param n (@c size_t) the number of bytes |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
230 | * @return (@c void*) a pointer to the allocated memory |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
231 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
232 | #define cx_zalloc(n) calloc(1, n) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
233 | |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
234 | /** |
| 440 | 235 | * Free a block allocated by this allocator. |
| 236 | * | |
| 237 | * @note Freeing a block of a different allocator is undefined. | |
| 238 | * | |
| 239 | * @param allocator the allocator | |
| 240 | * @param mem a pointer to the block to free | |
| 241 | */ | |
| 242 | cx_attr_nonnull_arg(1) | |
| 870 | 243 | CX_EXPORT void cxFree(const CxAllocator *allocator, void *mem); |
| 440 | 244 | |
| 245 | /** | |
| 246 | * Allocate @p n bytes of memory. | |
| 174 | 247 | * |
| 248 | * @param allocator the allocator | |
| 249 | * @param n the number of bytes | |
| 250 | * @return a pointer to the allocated memory | |
| 251 | */ | |
| 870 | 252 | cx_attr_nodiscard cx_attr_nonnull |
| 253 | cx_attr_malloc cx_attr_dealloc_ucx cx_attr_allocsize(2) | |
| 254 | CX_EXPORT void *cxMalloc(const CxAllocator *allocator, size_t n); | |
| 174 | 255 | |
| 256 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
257 | * Reallocate the previously allocated block in @p mem, making the new block |
| 440 | 258 | * @p n bytes long. |
| 845 | 259 | * This function may return the same pointer passed to it if moving |
| 440 | 260 | * the memory was not necessary. |
| 174 | 261 | * |
| 440 | 262 | * @note Re-allocating a block allocated by a different allocator is undefined. |
| 174 | 263 | * |
| 264 | * @param allocator the allocator | |
| 265 | * @param mem pointer to the previously allocated block | |
| 266 | * @param n the new size in bytes | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
267 | * @return a pointer to the reallocated memory |
| 174 | 268 | */ |
| 870 | 269 | cx_attr_nodiscard cx_attr_nonnull_arg(1) |
| 270 | cx_attr_dealloc_ucx cx_attr_allocsize(3) | |
| 271 | CX_EXPORT void *cxRealloc(const CxAllocator *allocator, void *mem, size_t n); | |
| 174 | 272 | |
| 273 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
274 | * Reallocate the previously allocated block in @p mem, making the new block |
| 440 | 275 | * @p n bytes long. |
| 845 | 276 | * This function may return the same pointer passed to it if moving |
| 440 | 277 | * the memory was not necessary. |
| 278 | * | |
| 279 | * The size is calculated by multiplying @p nemb and @p size. | |
| 845 | 280 | * If that multiplication overflows, this function returns @c NULL, and @c errno |
| 440 | 281 | * will be set. |
| 282 | * | |
| 283 | * @note Re-allocating a block allocated by a different allocator is undefined. | |
| 174 | 284 | * |
| 440 | 285 | * @param allocator the allocator |
| 286 | * @param mem pointer to the previously allocated block | |
| 287 | * @param nmemb the number of elements | |
| 288 | * @param size the size of each element | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
289 | * @return a pointer to the reallocated memory |
| 440 | 290 | */ |
| 870 | 291 | cx_attr_nodiscard cx_attr_nonnull_arg(1) |
| 292 | cx_attr_dealloc_ucx cx_attr_allocsize(3, 4) | |
| 293 | CX_EXPORT void *cxReallocArray(const CxAllocator *allocator, | |
| 294 | void *mem, size_t nmemb, size_t size); | |
| 440 | 295 | |
| 296 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
297 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 298 | * if necessary. |
| 299 | * This function acts like cxRealloc() using the pointer pointed to by @p mem. | |
| 174 | 300 | * |
| 440 | 301 | * @note Re-allocating a block allocated by a different allocator is undefined. |
| 302 | * | |
| 303 | * @par Error handling | |
| 845 | 304 | * @c errno will be set if the underlying realloc function does so. |
| 174 | 305 | * |
| 306 | * @param allocator the allocator | |
| 307 | * @param mem pointer to the pointer to allocated block | |
| 308 | * @param n the new size in bytes | |
| 440 | 309 | * @retval zero success |
| 310 | * @retval non-zero failure | |
| 174 | 311 | */ |
| 870 | 312 | cx_attr_nodiscard cx_attr_nonnull |
| 313 | CX_EXPORT int cxReallocate_(const CxAllocator *allocator, void **mem, size_t n); | |
| 174 | 314 | |
| 315 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
316 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 317 | * if necessary. |
| 318 | * This function acts like cxRealloc() using the pointer pointed to by @p mem. | |
| 319 | * | |
| 320 | * @note Re-allocating a block allocated by a different allocator is undefined. | |
| 321 | * | |
| 322 | * @par Error handling | |
| 845 | 323 | * @c errno will be set if the underlying realloc function does so. |
| 440 | 324 | * |
| 325 | * @param allocator (@c CxAllocator*) the allocator | |
| 326 | * @param mem (@c void**) pointer to the pointer to allocated block | |
| 327 | * @param n (@c size_t) the new size in bytes | |
| 328 | * @retval zero success | |
| 329 | * @retval non-zero failure | |
| 330 | */ | |
| 331 | #define cxReallocate(allocator, mem, n) \ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
332 | cxReallocate_(allocator, (void**)(mem), n) |
| 440 | 333 | |
| 334 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
335 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 336 | * if necessary. |
| 337 | * This function acts like cxReallocArray() using the pointer pointed to | |
| 338 | * by @p mem. | |
| 339 | * | |
| 340 | * @note Re-allocating a block allocated by a different allocator is undefined. | |
| 341 | * | |
| 342 | * @par Error handling | |
| 343 | * @c errno will be set, if the underlying realloc function does so or the | |
| 344 | * multiplication of @p nmemb and @p size overflows. | |
| 345 | * | |
| 346 | * @param allocator the allocator | |
| 347 | * @param mem pointer to the pointer to allocated block | |
| 348 | * @param nmemb the number of elements | |
| 349 | * @param size the size of each element | |
| 350 | * @retval zero success | |
| 351 | * @retval non-zero on failure | |
| 352 | */ | |
| 870 | 353 | cx_attr_nodiscard cx_attr_nonnull |
| 354 | CX_EXPORT int cxReallocateArray_(const CxAllocator *allocator, | |
| 355 | void **mem, size_t nmemb, size_t size); | |
| 440 | 356 | |
| 357 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
358 | * Reallocate a previously allocated block and changes the pointer in-place, |
| 440 | 359 | * if necessary. |
| 360 | * This function acts like cxReallocArray() using the pointer pointed to | |
| 361 | * by @p mem. | |
| 362 | * | |
| 363 | * @note Re-allocating a block allocated by a different allocator is undefined. | |
| 364 | * | |
| 365 | * @par Error handling | |
| 366 | * @c errno will be set, if the underlying realloc function does so or the | |
| 367 | * multiplication of @p nmemb and @p size overflows. | |
| 368 | * | |
| 369 | * @param allocator (@c CxAllocator*) the allocator | |
| 370 | * @param mem (@c void**) pointer to the pointer to allocated block | |
| 371 | * @param nmemb (@c size_t) the number of elements | |
| 372 | * @param size (@c size_t) the size of each element | |
| 373 | * @retval zero success | |
| 374 | * @retval non-zero failure | |
| 375 | */ | |
| 376 | #define cxReallocateArray(allocator, mem, nmemb, size) \ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
377 | cxReallocateArray_(allocator, (void**) (mem), nmemb, size) |
| 440 | 378 | |
| 379 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
380 | * Allocate @p nmemb elements of @p n bytes each, all initialized to zero. |
| 174 | 381 | * |
| 382 | * @param allocator the allocator | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
383 | * @param nmemb the number of elements |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
384 | * @param size the size of each element in bytes |
| 174 | 385 | * @return a pointer to the allocated memory |
| 386 | */ | |
| 870 | 387 | cx_attr_nonnull_arg(1) cx_attr_nodiscard |
| 388 | cx_attr_malloc cx_attr_dealloc_ucx cx_attr_allocsize(2, 3) | |
| 389 | CX_EXPORT void *cxCalloc(const CxAllocator *allocator, size_t nmemb, size_t size); | |
| 174 | 390 | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
391 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
392 | * Allocate @p n bytes of memory and sets every byte to zero. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
393 | * |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
394 | * @param allocator the allocator |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
395 | * @param n the number of bytes |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
396 | * @return a pointer to the allocated memory |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
397 | */ |
| 870 | 398 | cx_attr_nodiscard cx_attr_nonnull |
| 399 | cx_attr_malloc cx_attr_dealloc_ucx cx_attr_allocsize(2) | |
| 400 | CX_EXPORT void *cxZalloc(const CxAllocator *allocator, size_t n); | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
401 | |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
402 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
403 | * Convenience macro that invokes cxMalloc() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
404 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
405 | #define cxMallocDefault(...) cxMalloc(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
406 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
407 | * Convenience macro that invokes cxZalloc() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
408 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
409 | #define cxZallocDefault(...) cxZalloc(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
410 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
411 | * Convenience macro that invokes cxCalloc() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
412 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
413 | #define cxCallocDefault(...) cxCalloc(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
414 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
415 | * Convenience macro that invokes cxRealloc() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
416 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
417 | #define cxReallocDefault(...) cxRealloc(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
418 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
419 | * Convenience macro that invokes cxReallocate() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
420 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
421 | #define cxReallocateDefault(...) cxReallocate(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
422 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
423 | * Convenience macro that invokes cxReallocateArray() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
424 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
425 | #define cxReallocateArrayDefault(...) cxReallocateArray(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
426 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
427 | * Convenience macro that invokes cxReallocArray() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
428 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
429 | #define cxReallocArrayDefault(...) cxReallocArray(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
430 | /** |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
431 | * Convenience macro that invokes cxFree() with the cxDefaultAllocator. |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
432 | */ |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
433 | #define cxFreeDefault(...) cxFree(cxDefaultAllocator, __VA_ARGS__) |
|
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
434 | |
| 174 | 435 | #ifdef __cplusplus |
| 436 | } // extern "C" | |
| 437 | #endif | |
| 438 | ||
| 439 | #endif // UCX_ALLOCATOR_H |