5#ifndef PIPEWIRE_UTILS_H
6#define PIPEWIRE_UTILS_H
15#ifndef _POSIX_C_SOURCE
16# include <sys/mount.h>
41pw_split_walk(
const char *str,
const char *delimiter,
size_t *len,
const char **state);
44pw_split_strv(
const char *str,
const char *delimiter,
int max_tokens,
int *n_tokens);
47pw_split_ip(
char *str,
const char *delimiter,
int max_tokens,
char *tokens[]);
49char **
pw_strv_parse(
const char *val,
size_t len,
int max_tokens,
int *n_tokens);
59pw_strip(
char *str,
const char *whitespace);
62# define strndupa(s, n) \
64 const char *__old = (s); \
65 size_t __len = strnlen(__old, (n)); \
66 char *__new = (char *) __builtin_alloca(__len + 1); \
67 memcpy(__new, __old, __len); \
68 __new[__len] = '\0'; \
76 const char *__old = (s); \
77 size_t __len = strlen(__old) + 1; \
78 char *__new = (char *) alloca(__len); \
79 (char *) memcpy(__new, __old, __len); \
84ssize_t
pw_getrandom(
void *buf,
size_t buflen,
unsigned int flags);
88#define pw_rand32() ({ uint32_t val; pw_random(&val, sizeof(val)); val; })
92#ifdef PW_ENABLE_DEPRECATED
93#define PW_DEPRECATED(v) (v)
95#define PW_DEPRECATED(v) ({ __typeof__(v) _v SPA_DEPRECATED = (v); (void)_v; (v); })
int pw_strv_find(char **a, const char *b)
Find a string in a NULL terminated array of strings.
Definition utils.c:166
void(* pw_destroy_t)(void *object)
a function to destroy an item
Definition utils.h:42
ssize_t pw_getrandom(void *buf, size_t buflen, unsigned int flags)
Fill a buffer with random data.
Definition utils.c:279
void pw_random(void *buf, size_t buflen)
Fill a buffer with random data.
Definition utils.c:306
void pw_free_strv(char **str)
Free a NULL terminated array of strings.
Definition utils.c:206
const char * pw_split_walk(const char *str, const char *delimiter, size_t *len, const char **state)
Split a string based on delimiters.
Definition utils.c:36
void * pw_reallocarray(void *ptr, size_t nmemb, size_t size)
Definition utils.c:338
int pw_strv_find_common(char **a, char **b)
Check if two NULL terminated arrays of strings have a common string.
Definition utils.c:186
int pw_split_ip(char *str, const char *delimiter, int max_tokens, char *tokens[])
Split a string in-place based on delimiters.
Definition utils.c:97
char ** pw_strv_parse(const char *val, size_t len, int max_tokens, int *n_tokens)
Parse an array of strings.
Definition utils.c:130
char * pw_strip(char *str, const char *whitespace)
Strip all whitespace before and after a string.
Definition utils.c:227
char ** pw_split_strv(const char *str, const char *delimiter, int max_tokens, int *n_tokens)
Split a string based on delimiters.
Definition utils.c:59
#define SPA_WARN_UNUSED_RESULT
Definition defs.h:293