PipeWire  1.2.7
defs.h
Go to the documentation of this file.
1 /* Simple Plugin API */
2 /* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
3 /* SPDX-License-Identifier: MIT */
4 
5 #ifndef SPA_UTILS_DEFS_H
6 #define SPA_UTILS_DEFS_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 # if __cplusplus >= 201103L
11 # define SPA_STATIC_ASSERT_IMPL(expr, msg, ...) static_assert(expr, msg)
12 # define SPA_ALIGNOF alignof
13 # endif
14 #elif __STDC_VERSION__ >= 202311L
15 # define SPA_STATIC_ASSERT_IMPL(expr, msg, ...) static_assert(expr, msg)
16 # define SPA_ALIGNOF alignof
17 #else
18 # include <stdbool.h>
19 # if __STDC_VERSION__ >= 201112L
20 # define SPA_STATIC_ASSERT_IMPL(expr, msg, ...) _Static_assert(expr, msg)
21 # define SPA_ALIGNOF _Alignof
22 # endif
23 #endif
24 #ifndef SPA_STATIC_ASSERT_IMPL
25 #define SPA_STATIC_ASSERT_IMPL(expr, ...) \
26  ((void)sizeof(struct { int spa_static_assertion_failed : 2 * !!(expr) - 1; }))
27 #endif
28 #ifndef SPA_ALIGNOF
29 #define SPA_ALIGNOF __alignof__
30 #endif
31 
32 #define SPA_STATIC_ASSERT(expr, ...) SPA_STATIC_ASSERT_IMPL(expr, ## __VA_ARGS__, "`" #expr "` evaluated to false")
33 
34 #define SPA_CONCAT_NOEXPAND(a, b) a ## b
35 #define SPA_CONCAT(a, b) SPA_CONCAT_NOEXPAND(a, b)
36 
37 #include <inttypes.h>
38 #include <signal.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <stddef.h>
42 #include <stdio.h>
43 
69 #if defined(__clang__) && defined(__cplusplus) && __cplusplus >= 201103L
70  /* clang's fallthrough annotations are only available starting in C++11. */
71 # define SPA_FALLTHROUGH [[clang::fallthrough]];
72 #elif __GNUC__ >= 7 || __clang_major__ >= 10
73 # define SPA_FALLTHROUGH __attribute__ ((fallthrough));
74 #else
75 # define SPA_FALLTHROUGH /* FALLTHROUGH */
76 #endif
77 
78 #define SPA_FLAG_MASK(field,mask,flag) (((field) & (mask)) == (flag))
79 #define SPA_FLAG_IS_SET(field,flag) SPA_FLAG_MASK(field, flag, flag)
80 
81 #define SPA_FLAG_SET(field,flag) ((field) |= (flag))
82 #define SPA_FLAG_CLEAR(field, flag) \
83 ({ \
84  SPA_STATIC_ASSERT(__builtin_constant_p(flag) ? \
85  (__typeof__(flag))(__typeof__(field))(__typeof__(flag))(flag) == (flag) : \
86  sizeof(field) >= sizeof(flag), \
87  "truncation problem when masking " #field \
88  " with ~" #flag); \
89  ((field) &= ~(__typeof__(field))(flag)); \
90 })
91 #define SPA_FLAG_UPDATE(field,flag,val) ((val) ? SPA_FLAG_SET((field),(flag)) : SPA_FLAG_CLEAR((field),(flag)))
92 
96 };
97 
98 #define SPA_DIRECTION_REVERSE(d) ((d) ^ 1)
99 
100 #define SPA_RECTANGLE(width,height) ((struct spa_rectangle){ (width), (height) })
101 struct spa_rectangle {
102  uint32_t width;
103  uint32_t height;
104 };
105 
106 #define SPA_POINT(x,y) ((struct spa_point){ (x), (y) })
107 struct spa_point {
108  int32_t x;
109  int32_t y;
110 };
111 
112 #define SPA_REGION(x,y,width,height) ((struct spa_region){ SPA_POINT(x,y), SPA_RECTANGLE(width,height) })
113 struct spa_region {
114  struct spa_point position;
116 };
117 
118 #define SPA_FRACTION(num,denom) ((struct spa_fraction){ (num), (denom) })
119 struct spa_fraction {
120  uint32_t num;
121  uint32_t denom;
122 };
123 
124 #define SPA_N_ELEMENTS(arr) (sizeof(arr) / sizeof((arr)[0]))
135 #define SPA_FOR_EACH_ELEMENT(arr, ptr) \
136  for ((ptr) = arr; (void*)(ptr) < SPA_PTROFF(arr, sizeof(arr), void); (ptr)++)
137 
138 #define SPA_FOR_EACH_ELEMENT_VAR(arr, var) \
139  for (__typeof__((arr)[0])* var = arr; (void*)(var) < SPA_PTROFF(arr, sizeof(arr), void); (var)++)
140 
141 #define SPA_ABS(a) \
142 ({ \
143  __typeof__(a) _a = (a); \
144  SPA_LIKELY(_a >= 0) ? _a : -_a; \
145 })
146 #define SPA_MIN(a,b) \
147 ({ \
148  __typeof__(a) _min_a = (a); \
149  __typeof__(b) _min_b = (b); \
150  SPA_LIKELY(_min_a <= _min_b) ? _min_a : _min_b; \
151 })
152 #define SPA_MAX(a,b) \
153 ({ \
154  __typeof__(a) _max_a = (a); \
155  __typeof__(b) _max_b = (b); \
156  SPA_LIKELY(_max_a >= _max_b) ? _max_a : _max_b; \
157 })
158 #define SPA_CLAMP(v,low,high) \
159 ({ \
160  __typeof__(v) _v = (v); \
161  __typeof__(low) _low = (low); \
162  __typeof__(high) _high = (high); \
163  SPA_MIN(SPA_MAX(_v, _low), _high); \
164 })
165 
166 #define SPA_CLAMPF(v,low,high) \
167 ({ \
168  fminf(fmaxf(v, low), high); \
169 })
170 #define SPA_CLAMPD(v,low,high) \
171 ({ \
172  fmin(fmax(v, low), high); \
173 })
174 
175 
176 #define SPA_SWAP(a,b) \
177 ({ \
178  __typeof__(a) _t = (a); \
179  (a) = b; (b) = _t; \
180 })
181 
182 #define SPA_TYPECHECK(type,x) \
183 ({ type _dummy; \
184  typeof(x) _dummy2; \
185  (void)(&_dummy == &_dummy2); \
186  x; \
187 })
188 
190 #define SPA_CMP(a, b) \
191 ({ \
192  __typeof__(a) _a = (a); \
193  __typeof__(b) _b = (b); \
194  (_a > _b) ? 1 : (_a == _b) ? 0 : (_a < _b) ? -1 \
195  : (_a == _a) ? -1 : (_b == _b) ? 1 \
196  : 1; \
197 })
198 
202 #define SPA_PTROFF(ptr_,offset_,type_) ((type_*)((uintptr_t)(ptr_) + (ptrdiff_t)(offset_)))
203 #define SPA_PTROFF_ALIGN(ptr_,offset_,alignment_,type_) \
204  SPA_PTR_ALIGN(SPA_PTROFF(ptr_,offset_,type_),alignment_,type_)
205 
209 #define SPA_MEMBER(b,o,t) SPA_PTROFF(b,o,t)
210 #define SPA_MEMBER_ALIGN(b,o,a,t) SPA_PTROFF_ALIGN(b,o,a,t)
211 
212 #define SPA_CONTAINER_OF(p,t,m) ((t*)((uintptr_t)(p) - offsetof(t,m)))
213 
214 #define SPA_PTRDIFF(p1,p2) ((intptr_t)(p1) - (intptr_t)(p2))
215 
216 #define SPA_PTR_TO_UINT32(p) ((uint32_t) ((uintptr_t) (p)))
217 #define SPA_UINT32_TO_PTR(u) ((void*) ((uintptr_t) (u)))
218 
219 #define SPA_TIME_INVALID ((int64_t)INT64_MIN)
220 #define SPA_IDX_INVALID ((unsigned int)-1)
221 #define SPA_ID_INVALID ((uint32_t)0xffffffff)
222 
223 #define SPA_NSEC_PER_SEC (1000000000LL)
224 #define SPA_NSEC_PER_MSEC (1000000ll)
225 #define SPA_NSEC_PER_USEC (1000ll)
226 #define SPA_USEC_PER_SEC (1000000ll)
227 #define SPA_USEC_PER_MSEC (1000ll)
228 #define SPA_MSEC_PER_SEC (1000ll)
229 
230 #define SPA_TIMESPEC_TO_NSEC(ts) ((ts)->tv_sec * SPA_NSEC_PER_SEC + (ts)->tv_nsec)
231 #define SPA_TIMESPEC_TO_USEC(ts) ((ts)->tv_sec * SPA_USEC_PER_SEC + (ts)->tv_nsec / SPA_NSEC_PER_USEC)
232 #define SPA_TIMEVAL_TO_NSEC(tv) ((tv)->tv_sec * SPA_NSEC_PER_SEC + (tv)->tv_usec * SPA_NSEC_PER_USEC)
233 #define SPA_TIMEVAL_TO_USEC(tv) ((tv)->tv_sec * SPA_USEC_PER_SEC + (tv)->tv_usec)
234 
235 #ifdef __GNUC__
236 #define SPA_PRINTF_FUNC(fmt, arg1) __attribute__((format(printf, fmt, arg1)))
237 #define SPA_FORMAT_ARG_FUNC(arg1) __attribute__((format_arg(arg1)))
238 #define SPA_ALIGNED(align) __attribute__((aligned(align)))
239 #define SPA_DEPRECATED __attribute__ ((deprecated))
240 #define SPA_EXPORT __attribute__((visibility("default")))
241 #define SPA_SENTINEL __attribute__((__sentinel__))
242 #define SPA_UNUSED __attribute__ ((unused))
243 #define SPA_NORETURN __attribute__ ((noreturn))
244 #define SPA_WARN_UNUSED_RESULT __attribute__ ((warn_unused_result))
245 #else
246 #define SPA_PRINTF_FUNC(fmt, arg1)
247 #define SPA_FORMAT_ARG_FUNC(arg1)
248 #define SPA_ALIGNED(align)
249 #define SPA_DEPRECATED
250 #define SPA_EXPORT
251 #define SPA_SENTINEL
252 #define SPA_UNUSED
253 #define SPA_NORETURN
254 #define SPA_WARN_UNUSED_RESULT
255 #endif
256 
257 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
258 #define SPA_RESTRICT restrict
259 #elif defined(__GNUC__) && __GNUC__ >= 4
260 #define SPA_RESTRICT __restrict__
261 #else
262 #define SPA_RESTRICT
263 #endif
264 
265 #define SPA_ROUND_DOWN(num,value) \
266 ({ \
267  __typeof__(num) _num = (num); \
268  ((_num) - ((_num) % (value))); \
269 })
270 #define SPA_ROUND_UP(num,value) \
271 ({ \
272  __typeof__(value) _v = (value); \
273  ((((num) + (_v) - 1) / (_v)) * (_v)); \
274 })
275 
276 #define SPA_ROUND_MASK(num,mask) ((__typeof__(num))((mask)-1))
277 
278 #define SPA_ROUND_DOWN_N(num,align) ((num) & ~SPA_ROUND_MASK(num, align))
279 #define SPA_ROUND_UP_N(num,align) ((((num)-1) | SPA_ROUND_MASK(num, align))+1)
280 
281 #define SPA_SCALE32_UP(val,num,denom) \
282 ({ \
283  uint64_t _val = (val); \
284  uint64_t _denom = (denom); \
285  (uint32_t)(((_val) * (num) + (_denom)-1) / (_denom)); \
286 })
287 
288 
289 #define SPA_PTR_ALIGNMENT(p,align) ((uintptr_t)(p) & ((align)-1))
290 #define SPA_IS_ALIGNED(p,align) (SPA_PTR_ALIGNMENT(p,align) == 0)
291 #define SPA_PTR_ALIGN(p,align,type) ((type*)SPA_ROUND_UP_N((intptr_t)(p), (intptr_t)(align)))
292 
293 #ifndef SPA_LIKELY
294 #ifdef __GNUC__
295 #define SPA_LIKELY(x) (__builtin_expect(!!(x),1))
296 #define SPA_UNLIKELY(x) (__builtin_expect(!!(x),0))
297 #else
298 #define SPA_LIKELY(x) (x)
299 #define SPA_UNLIKELY(x) (x)
300 #endif
301 #endif
302 
303 static inline bool spa_ptrinside(const void *p1, size_t s1, const void *p2, size_t s2,
304  size_t *remaining)
305 {
306  if (SPA_LIKELY((uintptr_t)p1 <= (uintptr_t)p2 && s2 <= s1 &&
307  (uintptr_t)p2 - (uintptr_t)p1 <= s1 - s2)) {
308  if (remaining != NULL)
309  *remaining = ((uintptr_t)p1 + s1) - ((uintptr_t)p2 + s2);
310  return true;
311  } else {
312  if (remaining != NULL)
313  *remaining = 0;
314  return false;
315  }
316 }
317 
318 static inline bool spa_ptr_inside_and_aligned(const void *p1, size_t s1,
319  const void *p2, size_t s2, size_t align,
320  size_t *remaining)
321 {
322  if (SPA_IS_ALIGNED(p2, align)) {
323  return spa_ptrinside(p1, s1, p2, s2, remaining);
324  } else {
325  if (remaining != NULL)
326  *remaining = 0;
327  return false;
328  }
329 }
330 
331 #define spa_ptr_type_inside(p1, s1, p2, type, remaining) \
332  spa_ptr_inside_and_aligned(p1, s1, p2, sizeof(type), SPA_ALIGNOF(type), remaining)
333 
334 #define SPA_PTR_TO_INT(p) ((int) ((intptr_t) (p)))
335 #define SPA_INT_TO_PTR(u) ((void*) ((intptr_t) (u)))
336 
337 #define SPA_STRINGIFY_1(...) #__VA_ARGS__
338 #define SPA_STRINGIFY(...) SPA_STRINGIFY_1(__VA_ARGS__)
339 
341  int line;
342  int col;
343  size_t len;
344  const char *location;
345  const char *reason;
346 };
347 
348 #define spa_return_if_fail(expr) \
349  do { \
350  if (SPA_UNLIKELY(!(expr))) { \
351  fprintf(stderr, "'%s' failed at %s:%u %s()\n", \
352  #expr , __FILE__, __LINE__, __func__); \
353  return; \
354  } \
355  } while(false)
356 
357 #define spa_return_val_if_fail(expr, val) \
358  do { \
359  if (SPA_UNLIKELY(!(expr))) { \
360  fprintf(stderr, "'%s' failed at %s:%u %s()\n", \
361  #expr , __FILE__, __LINE__, __func__); \
362  return (val); \
363  } \
364  } while(false)
365 
366 /* spa_assert_se() is an assert which guarantees side effects of x,
367  * i.e. is never optimized away, regardless of NDEBUG or FASTPATH. */
368 #ifndef __COVERITY__
369 #define spa_assert_se(expr) \
370  do { \
371  if (SPA_UNLIKELY(!(expr))) { \
372  fprintf(stderr, "'%s' failed at %s:%u %s()\n", \
373  #expr , __FILE__, __LINE__, __func__); \
374  abort(); \
375  } \
376  } while (false)
377 #else
378 #define spa_assert_se(expr) \
379  do { \
380  int _unique_var = (expr); \
381  if (!_unique_var) \
382  abort(); \
383  } while (false)
384 #endif
385 
386 /* Does exactly nothing */
387 #define spa_nop() do {} while (false)
388 
389 #ifdef NDEBUG
390 #define spa_assert(expr) spa_nop()
391 #elif defined (FASTPATH)
392 #define spa_assert(expr) spa_assert_se(expr)
393 #else
394 #define spa_assert(expr) spa_assert_se(expr)
395 #endif
396 
397 #ifdef NDEBUG
398 #define spa_assert_not_reached() abort()
399 #else
400 #define spa_assert_not_reached() \
401  do { \
402  fprintf(stderr, "Code should not be reached at %s:%u %s()\n", \
403  __FILE__, __LINE__, __func__); \
404  abort(); \
405  } while (false)
406 #endif
407 
408 #define spa_memzero(x,l) (memset((x), 0, (l)))
409 #define spa_zero(x) (spa_memzero(&(x), sizeof(x)))
410 
411 #ifdef SPA_DEBUG_MEMCPY
412 #define spa_memcpy(d,s,n) \
413 ({ \
414  fprintf(stderr, "%s:%u %s() memcpy(%p, %p, %zd)\n", \
415  __FILE__, __LINE__, __func__, (d), (s), (size_t)(n)); \
416  memcpy(d,s,n); \
417 })
418 #define spa_memmove(d,s,n) \
419 ({ \
420  fprintf(stderr, "%s:%u %s() memmove(%p, %p, %zd)\n", \
421  __FILE__, __LINE__, __func__, (d), (s), (size_t)(n)); \
422  memmove(d,s,n); \
423 })
424 #else
425 #define spa_memcpy(d,s,n) memcpy(d,s,n)
426 #define spa_memmove(d,s,n) memmove(d,s,n)
427 #endif
428 
429 #define spa_aprintf(_fmt, ...) \
430 ({ \
431  char *_strp; \
432  if (asprintf(&(_strp), (_fmt), ## __VA_ARGS__ ) == -1) \
433  _strp = NULL; \
434  _strp; \
435 })
436 
441 #ifdef __cplusplus
442 } /* extern "C" */
443 #endif
444 
445 #endif /* SPA_UTILS_DEFS_H */
static bool spa_ptrinside(const void *p1, size_t s1, const void *p2, size_t s2, size_t *remaining)
Definition: defs.h:373
#define SPA_LIKELY(x)
Definition: defs.h:367
spa_direction
Definition: defs.h:106
static bool spa_ptr_inside_and_aligned(const void *p1, size_t s1, const void *p2, size_t s2, size_t align, size_t *remaining)
Definition: defs.h:388
#define SPA_IS_ALIGNED(p, align)
Definition: defs.h:355
@ SPA_DIRECTION_INPUT
Definition: defs.h:107
@ SPA_DIRECTION_OUTPUT
Definition: defs.h:108
spa/utils/string.h
Definition: defs.h:414
int line
Definition: defs.h:415
const char * location
Definition: defs.h:418
int col
Definition: defs.h:416
size_t len
Definition: defs.h:417
const char * reason
Definition: defs.h:419
Definition: defs.h:137
uint32_t num
Definition: defs.h:138
uint32_t denom
Definition: defs.h:139
Definition: defs.h:123
int32_t y
Definition: defs.h:125
int32_t x
Definition: defs.h:124
Definition: defs.h:116
uint32_t width
Definition: defs.h:117
uint32_t height
Definition: defs.h:118
Definition: defs.h:130
struct spa_point position
Definition: defs.h:131
struct spa_rectangle size
Definition: defs.h:132