Fri, 20 Jun 2025 12:01:08 +0200
add list initializer
| 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 | ||
| 29 | /** | |
| 440 | 30 | * @file common.h |
| 174 | 31 | * |
| 440 | 32 | * @brief Common definitions and feature checks. |
| 174 | 33 | * |
| 440 | 34 | * @author Mike Becker |
| 35 | * @author Olaf Wintermann | |
| 36 | * @copyright 2-Clause BSD License | |
| 174 | 37 | * |
| 440 | 38 | * @mainpage UAP Common Extensions |
| 174 | 39 | * Library with common and useful functions, macros and data structures. |
| 40 | * <p> | |
| 41 | * Latest available source:<br> | |
| 42 | * <a href="https://sourceforge.net/projects/ucx/files/">https://sourceforge.net/projects/ucx/files/</a> | |
| 43 | * </p> | |
| 44 | * | |
| 45 | * <p> | |
| 46 | * Repositories:<br> | |
| 47 | * <a href="https://sourceforge.net/p/ucx/code">https://sourceforge.net/p/ucx/code</a> | |
| 48 | * - or - | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
49 | * <a href="https://uap-core.de/hg/ucx">https://uap-core.de/hg/ucx</a> |
| 174 | 50 | * </p> |
| 51 | * | |
| 52 | * <h2>LICENCE</h2> | |
| 53 | * | |
| 54 | * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved. | |
| 55 | * | |
| 56 | * Redistribution and use in source and binary forms, with or without | |
| 57 | * modification, are permitted provided that the following conditions are met: | |
| 58 | * | |
| 59 | * 1. Redistributions of source code must retain the above copyright | |
| 60 | * notice, this list of conditions and the following disclaimer. | |
| 61 | * | |
| 62 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 63 | * notice, this list of conditions and the following disclaimer in the | |
| 64 | * documentation and/or other materials provided with the distribution. | |
| 65 | * | |
| 66 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 67 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 68 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 69 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 70 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 71 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 72 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 73 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 74 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 75 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 76 | * POSSIBILITY OF SUCH DAMAGE. | |
| 77 | */ | |
| 78 | ||
| 79 | #ifndef UCX_COMMON_H | |
| 80 | #define UCX_COMMON_H | |
| 81 | ||
| 82 | /** Major UCX version as integer constant. */ | |
| 83 | #define UCX_VERSION_MAJOR 3 | |
| 84 | ||
| 85 | /** Minor UCX version as integer constant. */ | |
|
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
86 | #define UCX_VERSION_MINOR 1 |
| 174 | 87 | |
| 88 | /** Version constant which ensures to increase monotonically. */ | |
| 89 | #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR) | |
| 90 | ||
| 440 | 91 | // --------------------------------------------------------------------------- |
| 92 | // Common includes | |
| 93 | // --------------------------------------------------------------------------- | |
| 174 | 94 | |
| 95 | #include <stdlib.h> | |
| 96 | #include <stddef.h> | |
| 97 | #include <stdbool.h> | |
| 98 | #include <stdint.h> | |
| 99 | #include <sys/types.h> | |
| 100 | ||
| 440 | 101 | // --------------------------------------------------------------------------- |
| 102 | // Architecture Detection | |
| 103 | // --------------------------------------------------------------------------- | |
| 104 | ||
| 105 | #ifndef INTPTR_MAX | |
| 106 | #error Missing INTPTR_MAX definition | |
| 107 | #endif | |
| 108 | #if INTPTR_MAX == INT64_MAX | |
| 109 | /** | |
| 110 | * The address width in bits on this platform. | |
| 111 | */ | |
| 112 | #define CX_WORDSIZE 64 | |
| 113 | #elif INTPTR_MAX == INT32_MAX | |
| 114 | /** | |
| 115 | * The address width in bits on this platform. | |
| 116 | */ | |
| 117 | #define CX_WORDSIZE 32 | |
| 118 | #else | |
| 119 | #error Unknown pointer size or missing size macros! | |
| 120 | #endif | |
| 121 | ||
| 122 | // --------------------------------------------------------------------------- | |
| 123 | // Attribute definitions | |
| 124 | // --------------------------------------------------------------------------- | |
| 125 | ||
| 126 | #ifndef __GNUC__ | |
| 127 | /** | |
| 128 | * Removes GNU C attributes where they are not supported. | |
| 129 | */ | |
| 130 | #define __attribute__(x) | |
| 131 | #endif | |
| 132 | ||
| 133 | /** | |
| 134 | * All pointer arguments must be non-NULL. | |
| 135 | */ | |
| 136 | #define cx_attr_nonnull __attribute__((__nonnull__)) | |
| 137 | ||
| 138 | /** | |
| 139 | * The specified pointer arguments must be non-NULL. | |
| 140 | */ | |
| 141 | #define cx_attr_nonnull_arg(...) __attribute__((__nonnull__(__VA_ARGS__))) | |
| 142 | ||
| 143 | /** | |
| 144 | * The returned value is guaranteed to be non-NULL. | |
| 145 | */ | |
| 146 | #define cx_attr_returns_nonnull __attribute__((__returns_nonnull__)) | |
| 147 | ||
| 148 | /** | |
| 149 | * The attributed function always returns freshly allocated memory. | |
| 150 | */ | |
| 151 | #define cx_attr_malloc __attribute__((__malloc__)) | |
| 152 | ||
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
153 | #if !defined(__clang__) && __GNUC__ >= 11 |
| 440 | 154 | /** |
| 155 | * The pointer returned by the attributed function is supposed to be freed | |
| 156 | * by @p freefunc. | |
| 157 | * | |
| 158 | * @param freefunc the function that shall be used to free the memory | |
| 159 | * @param freefunc_arg the index of the pointer argument in @p freefunc | |
| 160 | */ | |
| 161 | #define cx_attr_dealloc(freefunc, freefunc_arg) \ | |
| 162 | __attribute__((__malloc__(freefunc, freefunc_arg))) | |
| 163 | #else | |
| 164 | /** | |
| 165 | * Not supported in clang. | |
| 166 | */ | |
| 167 | #define cx_attr_dealloc(...) | |
| 168 | #endif // __clang__ | |
| 169 | ||
| 170 | /** | |
| 171 | * Shortcut to specify #cxFree() as deallocator. | |
| 172 | */ | |
| 173 | #define cx_attr_dealloc_ucx cx_attr_dealloc(cxFree, 2) | |
| 174 | ||
| 175 | /** | |
| 176 | * Specifies the parameters from which the allocation size is calculated. | |
| 177 | */ | |
| 178 | #define cx_attr_allocsize(...) __attribute__((__alloc_size__(__VA_ARGS__))) | |
| 179 | ||
| 180 | ||
| 181 | #ifdef __clang__ | |
| 182 | /** | |
| 183 | * No support for @c null_terminated_string_arg in clang or GCC below 14. | |
| 184 | */ | |
| 185 | #define cx_attr_cstr_arg(idx) | |
| 186 | /** | |
| 187 | * No support for access attribute in clang. | |
| 188 | */ | |
| 189 | #define cx_attr_access(mode, ...) | |
| 190 | #else | |
| 191 | #if __GNUC__ < 10 | |
| 192 | /** | |
| 193 | * No support for access attribute in GCC < 10. | |
| 194 | */ | |
| 195 | #define cx_attr_access(mode, ...) | |
| 196 | #else | |
| 197 | /** | |
| 198 | * Helper macro to define access macros. | |
| 199 | */ | |
| 200 | #define cx_attr_access(mode, ...) __attribute__((__access__(mode, __VA_ARGS__))) | |
| 201 | #endif // __GNUC__ < 10 | |
| 202 | #if __GNUC__ < 14 | |
| 203 | /** | |
| 204 | * No support for @c null_terminated_string_arg in clang or GCC below 14. | |
| 205 | */ | |
| 206 | #define cx_attr_cstr_arg(idx) | |
| 207 | #else | |
| 208 | /** | |
| 209 | * The specified argument is expected to be a zero-terminated string. | |
| 210 | * | |
| 211 | * @param idx the index of the argument | |
| 212 | */ | |
| 213 | #define cx_attr_cstr_arg(idx) \ | |
| 214 | __attribute__((__null_terminated_string_arg__(idx))) | |
| 215 | #endif // __GNUC__ < 14 | |
| 216 | #endif // __clang__ | |
| 217 | ||
| 218 | ||
| 219 | /** | |
| 220 | * Specifies that the function will only read through the given pointer. | |
| 221 | * | |
| 222 | * Takes one or two arguments: the index of the pointer and (optionally) the | |
| 223 | * index of another argument specifying the maximum number of accessed bytes. | |
| 224 | */ | |
| 225 | #define cx_attr_access_r(...) cx_attr_access(__read_only__, __VA_ARGS__) | |
| 226 | ||
| 227 | /** | |
| 228 | * Specifies that the function will read and write through the given pointer. | |
| 229 | * | |
| 230 | * Takes one or two arguments: the index of the pointer and (optionally) the | |
| 231 | * index of another argument specifying the maximum number of accessed bytes. | |
| 232 | */ | |
| 233 | #define cx_attr_access_rw(...) cx_attr_access(__read_write__, __VA_ARGS__) | |
| 234 | ||
| 235 | /** | |
| 236 | * Specifies that the function will only write through the given pointer. | |
| 237 | * | |
| 238 | * Takes one or two arguments: the index of the pointer and (optionally) the | |
| 239 | * index of another argument specifying the maximum number of accessed bytes. | |
| 240 | */ | |
| 241 | #define cx_attr_access_w(...) cx_attr_access(__write_only__, __VA_ARGS__) | |
| 242 | ||
| 243 | /** | |
| 244 | * Do not warn about unused variable. | |
| 245 | */ | |
| 246 | #define cx_attr_unused __attribute__((__unused__)) | |
| 247 | ||
| 248 | /** | |
| 249 | * Warn about discarded return value. | |
| 250 | */ | |
| 251 | #define cx_attr_nodiscard __attribute__((__warn_unused_result__)) | |
| 252 | ||
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
253 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
254 | // --------------------------------------------------------------------------- |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
255 | // MSVC specifics |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
256 | // --------------------------------------------------------------------------- |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
257 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
258 | #ifdef _MSC_VER |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
259 | // fix missing _Thread_local support |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
260 | #define _Thread_local __declspec(thread) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
261 | #endif // _MSC_VER |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
262 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
263 | #if defined(CX_WINDLL_EXPORT) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
264 | #define cx_attr_export __declspec(dllexport) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
265 | #elif defined(CX_WINDLL) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
266 | #define cx_attr_export __declspec(dllimport) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
267 | #else |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
268 | /** Only used for building Windows DLLs. */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
269 | #define cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
270 | #endif // CX_WINDLL / CX_WINDLL_EXPORT |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
271 | |
| 440 | 272 | // --------------------------------------------------------------------------- |
| 273 | // Useful function pointers | |
| 274 | // --------------------------------------------------------------------------- | |
| 275 | ||
| 174 | 276 | /** |
| 277 | * Function pointer compatible with fwrite-like functions. | |
| 278 | */ | |
| 279 | typedef size_t (*cx_write_func)( | |
| 324 | 280 | const void *, |
| 174 | 281 | size_t, |
| 282 | size_t, | |
| 283 | void * | |
| 284 | ); | |
| 285 | ||
| 286 | /** | |
| 287 | * Function pointer compatible with fread-like functions. | |
| 288 | */ | |
| 289 | typedef size_t (*cx_read_func)( | |
| 290 | void *, | |
| 291 | size_t, | |
| 292 | size_t, | |
| 293 | void * | |
| 294 | ); | |
| 295 | ||
| 440 | 296 | // --------------------------------------------------------------------------- |
| 297 | // Utility macros | |
| 298 | // --------------------------------------------------------------------------- | |
| 174 | 299 | |
| 440 | 300 | /** |
| 301 | * Determines the number of members in a static C array. | |
| 302 | * | |
| 303 | * @attention never use this to determine the size of a dynamically allocated | |
| 304 | * array. | |
| 305 | * | |
| 306 | * @param arr the array identifier | |
| 307 | * @return the number of elements | |
| 308 | */ | |
| 309 | #define cx_nmemb(arr) (sizeof(arr)/sizeof((arr)[0])) | |
| 174 | 310 | |
| 440 | 311 | // --------------------------------------------------------------------------- |
| 312 | // szmul implementation | |
| 313 | // --------------------------------------------------------------------------- | |
| 314 | ||
| 315 | #if (__GNUC__ >= 5 || defined(__clang__)) && !defined(CX_NO_SZMUL_BUILTIN) | |
| 316 | #define CX_SZMUL_BUILTIN | |
| 317 | #define cx_szmul(a, b, result) __builtin_mul_overflow(a, b, result) | |
| 318 | #else // no GNUC or clang bultin | |
| 174 | 319 | /** |
| 440 | 320 | * Performs a multiplication of size_t values and checks for overflow. |
| 321 | * | |
| 322 | * @param a (@c size_t) first operand | |
| 323 | * @param b (@c size_t) second operand | |
| 324 | * @param result (@c size_t*) a pointer to a variable, where the result should | |
| 325 | * be stored | |
| 326 | * @retval zero success | |
| 327 | * @retval non-zero the multiplication would overflow | |
| 174 | 328 | */ |
| 440 | 329 | #define cx_szmul(a, b, result) cx_szmul_impl(a, b, result) |
| 330 | ||
| 331 | /** | |
| 332 | * Implementation of cx_szmul() when no compiler builtin is available. | |
| 333 | * | |
| 334 | * Do not use in application code. | |
| 335 | * | |
| 336 | * @param a first operand | |
| 337 | * @param b second operand | |
| 338 | * @param result a pointer to a variable, where the result should | |
| 339 | * be stored | |
| 340 | * @retval zero success | |
| 341 | * @retval non-zero the multiplication would overflow | |
| 342 | */ | |
| 343 | #if __cplusplus | |
| 344 | extern "C" | |
| 174 | 345 | #endif |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
346 | cx_attr_export int cx_szmul_impl(size_t a, size_t b, size_t *result); |
| 440 | 347 | #endif // cx_szmul |
| 348 | ||
| 349 | ||
| 174 | 350 | |
| 351 | #endif // UCX_COMMON_H |