25#ifndef SPA_POD_BUILDER_H
26#define SPA_POD_BUILDER_H
49#define SPA_POD_BUILDER_FLAG_BODY (1<<0)
50#define SPA_POD_BUILDER_FLAG_FIRST (1<<1)
58#define SPA_VERSION_POD_BUILDER_CALLBACKS 0
61 int (*
overflow) (
void *data, uint32_t size);
72#define SPA_POD_BUILDER_INIT(buffer,size) ((struct spa_pod_builder){ (buffer), (size), 0, {}, {} })
92 builder->
state = *state;
106 if (offset + 8 <=
size) {
146 if (offset <= builder->size)
149 overflow, 0,
offset + size);
151 if (res == 0 && data)
217#define SPA_POD_INIT(size,type) ((struct spa_pod) { (size), (type) })
219#define SPA_POD_INIT_None() SPA_POD_INIT(0, SPA_TYPE_None)
234#define SPA_POD_INIT_Bool(val) ((struct spa_pod_bool){ { sizeof(uint32_t), SPA_TYPE_Bool }, (val) ? 1 : 0, 0 })
242#define SPA_POD_INIT_Id(val) ((struct spa_pod_id){ { sizeof(uint32_t), SPA_TYPE_Id }, (val), 0 })
250#define SPA_POD_INIT_Int(val) ((struct spa_pod_int){ { sizeof(int32_t), SPA_TYPE_Int }, (val), 0 })
258#define SPA_POD_INIT_Long(val) ((struct spa_pod_long){ { sizeof(int64_t), SPA_TYPE_Long }, (val) })
266#define SPA_POD_INIT_Float(val) ((struct spa_pod_float){ { sizeof(float), SPA_TYPE_Float }, (val), 0 })
274#define SPA_POD_INIT_Double(val) ((struct spa_pod_double){ { sizeof(double), SPA_TYPE_Double }, (val) })
282#define SPA_POD_INIT_String(len) ((struct spa_pod_string){ { (len), SPA_TYPE_String } })
308 uint32_t len = str ? strlen(str) : 0;
312#define SPA_POD_INIT_Bytes(len) ((struct spa_pod_bytes){ { (len), SPA_TYPE_Bytes } })
332#define SPA_POD_INIT_Pointer(type,value) ((struct spa_pod_pointer){ { sizeof(struct spa_pod_pointer_body), SPA_TYPE_Pointer }, { (type), 0, (value) } })
341#define SPA_POD_INIT_Fd(fd) ((struct spa_pod_fd){ { sizeof(int64_t), SPA_TYPE_Fd }, (fd) })
349#define SPA_POD_INIT_Rectangle(val) ((struct spa_pod_rectangle){ { sizeof(struct spa_rectangle), SPA_TYPE_Rectangle }, (val) })
358#define SPA_POD_INIT_Fraction(val) ((struct spa_pod_fraction){ { sizeof(struct spa_fraction), SPA_TYPE_Fraction }, (val) })
381 uint32_t child_size, uint32_t child_type, uint32_t n_elems,
const void *elems)
385 {{child_size, child_type}}
393#define SPA_POD_INIT_CHOICE_BODY(type, flags, child_size, child_type) \
394 ((struct spa_pod_choice_body) { (type), (flags), { (child_size), (child_type) }})
396#define SPA_POD_INIT_Choice(type, ctype, child_type, n_vals, ...) \
397 ((struct { struct spa_pod_choice choice; ctype vals[(n_vals)];}) \
398 { { { (n_vals) * sizeof(ctype) + sizeof(struct spa_pod_choice_body), SPA_TYPE_Choice }, \
399 { (type), 0, { sizeof(ctype), (child_type) } } }, { __VA_ARGS__ } })
403 uint32_t type, uint32_t flags)
414#define SPA_POD_INIT_Struct(size) ((struct spa_pod_struct){ { (size), SPA_TYPE_Struct } })
426#define SPA_POD_INIT_Object(size,type,id,...) ((struct spa_pod_object){ { (size), SPA_TYPE_Object }, { (type), (id) }, ##__VA_ARGS__ })
430 uint32_t type, uint32_t
id)
440#define SPA_POD_INIT_Prop(key,flags,size,type) \
441 ((struct spa_pod_prop){ (key), (flags), { (size), (type) } })
446 const struct { uint32_t key; uint32_t flags; } p = { key, flags };
450#define SPA_POD_INIT_Sequence(size,unit) \
451 ((struct spa_pod_sequence){ { (size), SPA_TYPE_Sequence}, {(unit), 0 } })
464static inline uint32_t
467 const struct { uint32_t offset; uint32_t type; } p = { offset, type };
488#define SPA_POD_BUILDER_COLLECT(builder,type,args) \
492 spa_pod_builder_bool(builder, !!va_arg(args, int)); \
495 spa_pod_builder_id(builder, va_arg(args, uint32_t)); \
498 spa_pod_builder_int(builder, va_arg(args, int)); \
501 spa_pod_builder_long(builder, va_arg(args, int64_t)); \
504 spa_pod_builder_float(builder, va_arg(args, double)); \
507 spa_pod_builder_double(builder, va_arg(args, double)); \
511 char *strval = va_arg(args, char *); \
512 if (strval != NULL) { \
513 size_t len = strlen(strval); \
514 spa_pod_builder_string_len(builder, strval, len); \
517 spa_pod_builder_none(builder); \
522 char *strval = va_arg(args, char *); \
523 size_t len = va_arg(args, int); \
524 spa_pod_builder_string_len(builder, strval, len); \
529 void *ptr = va_arg(args, void *); \
530 int len = va_arg(args, int); \
531 spa_pod_builder_bytes(builder, ptr, len); \
536 struct spa_rectangle *rectval = \
537 va_arg(args, struct spa_rectangle *); \
538 spa_pod_builder_rectangle(builder, \
539 rectval->width, rectval->height); \
544 struct spa_fraction *fracval = \
545 va_arg(args, struct spa_fraction *); \
546 spa_pod_builder_fraction(builder, fracval->num, fracval->denom);\
551 int child_size = va_arg(args, int); \
552 int child_type = va_arg(args, int); \
553 int n_elems = va_arg(args, int); \
554 void *elems = va_arg(args, void *); \
555 spa_pod_builder_array(builder, child_size, \
556 child_type, n_elems, elems); \
561 int t = va_arg(args, uint32_t); \
562 spa_pod_builder_pointer(builder, t, va_arg(args, void *)); \
566 spa_pod_builder_fd(builder, va_arg(args, int)); \
573 struct spa_pod *pod = va_arg(args, struct spa_pod *); \
575 spa_pod_builder_none(builder); \
577 spa_pod_builder_primitive(builder, pod); \
599 uint32_t key = va_arg(args, uint32_t);
607 uint32_t
offset = va_arg(args, uint32_t);
608 uint32_t type = va_arg(args, uint32_t);
617 if ((format = va_arg(args,
const char *)) == NULL)
620 choice = *format ==
'?';
628 n_values = va_arg(args,
int);
630 while (n_values-- > 0)
646 va_start(args, builder);
653#define spa_pod_builder_add_object(b,type,id,...) \
655 struct spa_pod_builder *_b = (b); \
656 struct spa_pod_frame _f; \
657 spa_pod_builder_push_object(_b, &_f, type, id); \
658 spa_pod_builder_add(_b, ##__VA_ARGS__, 0); \
659 spa_pod_builder_pop(_b, &_f); \
662#define spa_pod_builder_add_struct(b,...) \
664 struct spa_pod_builder *_b = (b); \
665 struct spa_pod_frame _f; \
666 spa_pod_builder_push_struct(_b, &_f); \
667 spa_pod_builder_add(_b, ##__VA_ARGS__, NULL); \
668 spa_pod_builder_pop(_b, &_f); \
671#define spa_pod_builder_add_sequence(b,unit,...) \
673 struct spa_pod_builder *_b = (b); \
674 struct spa_pod_frame _f; \
675 spa_pod_builder_push_sequence(_b, &_f, unit); \
676 spa_pod_builder_add(_b, ##__VA_ARGS__, 0, 0); \
677 spa_pod_builder_pop(_b, &_f); \
#define SPA_CALLBACKS_INIT(_funcs, _data)
Initialize the set of functions funcs as a spa_callbacks, together with _data.
Definition: hook.h:154
#define spa_callbacks_call_res(callbacks, type, res, method, vers,...)
Invoke method named method in the callbacks.
Definition: hook.h:219
#define SPA_POD_INIT_Double(val)
Definition: builder.h:292
static void * spa_pod_builder_reserve_bytes(struct spa_pod_builder *builder, uint32_t len)
Definition: builder.h:344
static int spa_pod_builder_prop(struct spa_pod_builder *builder, uint32_t key, uint32_t flags)
Definition: builder.h:470
#define SPA_POD_INIT_None()
Definition: builder.h:231
#define SPA_POD_INIT(size, type)
Definition: builder.h:228
static int spa_pod_builder_string(struct spa_pod_builder *builder, const char *str)
Definition: builder.h:325
static int spa_pod_builder_child(struct spa_pod_builder *builder, uint32_t size, uint32_t type)
Definition: builder.h:239
static int spa_pod_builder_fraction(struct spa_pod_builder *builder, uint32_t num, uint32_t denom)
Definition: builder.h:385
static int spa_pod_builder_rectangle(struct spa_pod_builder *builder, uint32_t width, uint32_t height)
Definition: builder.h:375
static int spa_pod_builder_float(struct spa_pod_builder *builder, float val)
Definition: builder.h:285
#define SPA_POD_BODY_CONST(pod)
Definition: pod/pod.h:61
#define SPA_POD_INIT_Object(size, type, id,...)
Definition: builder.h:452
#define SPA_POD_BUILDER_FLAG_BODY
Definition: builder.h:55
static void spa_pod_builder_push(struct spa_pod_builder *builder, struct spa_pod_frame *frame, const struct spa_pod *pod, uint32_t offset)
Definition: builder.h:133
static int spa_pod_builder_double(struct spa_pod_builder *builder, double val)
Definition: builder.h:294
static int spa_pod_builder_write_string(struct spa_pod_builder *builder, const char *str, uint32_t len)
Definition: builder.h:304
#define SPA_POD_INIT_Sequence(size, unit)
Definition: builder.h:476
#define SPA_POD_INIT_Rectangle(val)
Definition: builder.h:372
static void spa_pod_builder_set_callbacks(struct spa_pod_builder *builder, const struct spa_pod_builder_callbacks *callbacks, void *data)
Definition: builder.h:91
#define SPA_POD_INIT_Bool(val)
Definition: builder.h:247
static int spa_pod_builder_id(struct spa_pod_builder *builder, uint32_t val)
Definition: builder.h:258
static int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition: builder.h:667
#define SPA_POD_INIT_String(len)
Definition: builder.h:301
static int spa_pod_builder_fd(struct spa_pod_builder *builder, int64_t fd)
Definition: builder.h:365
#define SPA_POD_BODY(pod)
Definition: pod/pod.h:59
static struct spa_pod * spa_pod_builder_frame(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:125
static void spa_pod_builder_reset(struct spa_pod_builder *builder, struct spa_pod_builder_state *state)
Definition: builder.h:98
static int spa_pod_builder_none(struct spa_pod_builder *builder)
Definition: builder.h:233
#define SPA_POD_INIT_Id(val)
Definition: builder.h:256
static int spa_pod_builder_push_sequence(struct spa_pod_builder *builder, struct spa_pod_frame *frame, uint32_t unit)
Definition: builder.h:480
static int spa_pod_builder_raw_padded(struct spa_pod_builder *builder, const void *data, uint32_t size)
Definition: builder.h:180
#define SPA_POD_BODY_SIZE(pod)
Definition: pod/pod.h:46
#define SPA_POD_BUILDER_INIT(buffer, size)
Definition: builder.h:82
static void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:188
static int spa_pod_builder_pad(struct spa_pod_builder *builder, uint32_t size)
Definition: builder.h:172
static int spa_pod_builder_string_len(struct spa_pod_builder *builder, const char *str, uint32_t len)
Definition: builder.h:316
#define SPA_POD_INIT_Struct(size)
Definition: builder.h:439
static int spa_pod_builder_push_array(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:392
static int spa_pod_builder_primitive(struct spa_pod_builder *builder, const struct spa_pod *p)
Definition: builder.h:206
static uint32_t spa_choice_from_id(char id)
Definition: builder.h:497
static int spa_pod_builder_push_struct(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:442
static uint32_t spa_pod_builder_control(struct spa_pod_builder *builder, uint32_t offset, uint32_t type)
Definition: builder.h:491
static void spa_pod_builder_get_state(struct spa_pod_builder *builder, struct spa_pod_builder_state *state)
Definition: builder.h:85
static int spa_pod_builder_bool(struct spa_pod_builder *builder, bool val)
Definition: builder.h:249
#define SPA_POD_BUILDER_COLLECT(builder, type, args)
Definition: builder.h:514
static struct spa_pod * spa_pod_copy(const struct spa_pod *pod)
Copy a pod structure.
Definition: builder.h:708
static int spa_pod_builder_raw(struct spa_pod_builder *builder, const void *data, uint32_t size)
Definition: builder.h:148
#define SPA_POD_INIT_Int(val)
Definition: builder.h:265
static int spa_pod_builder_bytes(struct spa_pod_builder *builder, const void *bytes, uint32_t len)
Definition: builder.h:335
static int spa_pod_builder_push_choice(struct spa_pod_builder *builder, struct spa_pod_frame *frame, uint32_t type, uint32_t flags)
Definition: builder.h:426
static int spa_pod_builder_int(struct spa_pod_builder *builder, int32_t val)
Definition: builder.h:267
static void spa_pod_builder_init(struct spa_pod_builder *builder, void *data, uint32_t size)
Definition: builder.h:107
static int spa_pod_builder_push_object(struct spa_pod_builder *builder, struct spa_pod_frame *frame, uint32_t type, uint32_t id)
Definition: builder.h:455
#define SPA_POD_INIT_Float(val)
Definition: builder.h:283
static int spa_pod_builder_long(struct spa_pod_builder *builder, int64_t val)
Definition: builder.h:276
#define SPA_POD_INIT_Bytes(len)
Definition: builder.h:332
#define SPA_POD_INIT_Fd(fd)
Definition: builder.h:363
static int spa_pod_builder_array(struct spa_pod_builder *builder, uint32_t child_size, uint32_t child_type, uint32_t n_elems, const void *elems)
Definition: builder.h:404
#define SPA_POD_INIT_Long(val)
Definition: builder.h:274
#define SPA_POD_INIT_Pointer(type, value)
Definition: builder.h:353
#define SPA_POD_INIT_Fraction(val)
Definition: builder.h:382
#define SPA_POD_BUILDER_FLAG_FIRST
Definition: builder.h:57
#define SPA_POD_SIZE(pod)
Definition: pod/pod.h:50
static int spa_pod_builder_addv(struct spa_pod_builder *builder, va_list args)
Definition: builder.h:610
static struct spa_pod * spa_pod_builder_deref(struct spa_pod_builder *builder, uint32_t offset)
Definition: builder.h:113
static int spa_pod_builder_pointer(struct spa_pod_builder *builder, uint32_t type, const void *val)
Definition: builder.h:356
@ SPA_CHOICE_Step
range with step: default, min, max, step
Definition: pod/pod.h:169
@ SPA_CHOICE_None
no choice, first value is current
Definition: pod/pod.h:167
@ SPA_CHOICE_Flags
flags: default, possible flags,...
Definition: pod/pod.h:171
@ SPA_CHOICE_Range
range: default, min, max
Definition: pod/pod.h:168
@ SPA_CHOICE_Enum
list: default, alternative,...
Definition: pod/pod.h:170
@ SPA_TYPE_Object
Definition: spa/include/spa/utils/type.h:65
@ SPA_TYPE_None
Definition: spa/include/spa/utils/type.h:51
@ SPA_TYPE_Sequence
Definition: spa/include/spa/utils/type.h:66
@ SPA_TYPE_Choice
Definition: spa/include/spa/utils/type.h:69
@ SPA_TYPE_Array
Definition: spa/include/spa/utils/type.h:63
#define SPA_ROUND_UP_N(num, align)
Definition: defs.h:336
#define SPA_FRACTION(num, denom)
Definition: defs.h:138
#define SPA_FLAG_IS_SET(field, flag)
Definition: defs.h:92
#define SPA_FALLTHROUGH
SPA_FALLTHROUGH is an annotation to suppress compiler warnings about switch cases that fall through w...
Definition: defs.h:86
#define SPA_FLAG_CLEAR(field, flag)
Definition: defs.h:96
#define SPA_PTROFF(ptr_, offset_, type_)
Return the address (buffer + offset) as pointer of type.
Definition: defs.h:210
#define SPA_RECTANGLE(width, height)
Definition: defs.h:117
Callbacks, contains the structure with functions and the data passed to the functions.
Definition: hook.h:136
void * data
Definition: hook.h:138
Definition: pod/pod.h:141
Definition: pod/pod.h:146
struct spa_pod pod
Definition: pod/pod.h:147
struct spa_pod pod
Definition: pod/pod.h:72
int(* overflow)(void *data, uint32_t size)
Definition: builder.h:70
uint32_t version
Definition: builder.h:68
uint32_t flags
Definition: builder.h:58
uint32_t offset
Definition: builder.h:53
struct spa_pod_frame * frame
Definition: builder.h:59
uint32_t _padding
Definition: builder.h:76
struct spa_callbacks callbacks
Definition: builder.h:78
void * data
Definition: builder.h:74
struct spa_pod_builder_state state
Definition: builder.h:77
uint32_t size
Definition: builder.h:75
Definition: pod/pod.h:110
Definition: pod/pod.h:174
uint32_t type
type of choice, one of enum spa_choice_type
Definition: pod/pod.h:175
uint32_t flags
extra flags
Definition: pod/pod.h:176
Definition: pod/pod.h:182
struct spa_pod pod
Definition: pod/pod.h:183
Definition: pod/pod.h:100
struct spa_pod pod
Definition: pod/pod.h:101
Definition: pod/pod.h:219
struct spa_pod pod
Definition: pod/pod.h:220
struct spa_pod pod
Definition: pod/pod.h:95
Definition: pod/pod.h:120
struct spa_pod pod
Definition: pod/pod.h:121
struct spa_pod pod
Definition: iter.h:48
uint32_t offset
Definition: iter.h:50
struct spa_pod_frame * parent
Definition: iter.h:49
uint32_t flags
Definition: iter.h:51
struct spa_pod pod
Definition: pod/pod.h:78
struct spa_pod pod
Definition: pod/pod.h:84
struct spa_pod pod
Definition: pod/pod.h:90
Definition: pod/pod.h:197
Definition: pod/pod.h:203
struct spa_pod pod
Definition: pod/pod.h:204
Definition: pod/pod.h:214
struct spa_pod pod
Definition: pod/pod.h:215
Definition: pod/pod.h:115
struct spa_pod pod
Definition: pod/pod.h:116
Definition: pod/pod.h:261
a sequence of timed controls
Definition: pod/pod.h:268
struct spa_pod pod
Definition: pod/pod.h:269
Definition: pod/pod.h:105
Definition: pod/pod.h:187
struct spa_pod pod
Definition: pod/pod.h:188
uint32_t type
Definition: pod/pod.h:65
uint32_t size
Definition: pod/pod.h:64