PipeWire 0.3.65
debug/format.h
Go to the documentation of this file.
1/* Simple Plugin API
2 *
3 * Copyright © 2018 Wim Taymans
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25#ifndef SPA_DEBUG_FORMAT_H
26#define SPA_DEBUG_FORMAT_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
37#include <spa/pod/parser.h>
38#include <spa/utils/string.h>
39#include <spa/debug/context.h>
40#include <spa/debug/types.h>
41#include <spa/param/type-info.h>
43
44static inline int
45spa_debug_strbuf_format_value(struct spa_strbuf *buffer, const struct spa_type_info *info,
46 uint32_t type, void *body, uint32_t size)
47{
48
49 switch (type) {
51 spa_strbuf_append(buffer, "%s", *(int32_t *) body ? "true" : "false");
52 break;
53 case SPA_TYPE_Id:
54 {
55 const char *str = spa_debug_type_find_short_name(info, *(int32_t *) body);
56 char tmp[64];
57 if (str == NULL) {
58 snprintf(tmp, sizeof(tmp), "%d", *(int32_t*)body);
59 str = tmp;
60 }
61 spa_strbuf_append(buffer, "%s", str);
62 break;
63 }
64 case SPA_TYPE_Int:
65 spa_strbuf_append(buffer, "%d", *(int32_t *) body);
66 break;
67 case SPA_TYPE_Long:
68 spa_strbuf_append(buffer, "%" PRIi64, *(int64_t *) body);
69 break;
70 case SPA_TYPE_Float:
71 spa_strbuf_append(buffer, "%f", *(float *) body);
72 break;
73 case SPA_TYPE_Double:
74 spa_strbuf_append(buffer, "%f", *(double *) body);
75 break;
76 case SPA_TYPE_String:
77 spa_strbuf_append(buffer, "%s", (char *) body);
78 break;
80 {
81 struct spa_rectangle *r = (struct spa_rectangle *)body;
82 spa_strbuf_append(buffer, "%" PRIu32 "x%" PRIu32, r->width, r->height);
83 break;
84 }
86 {
87 struct spa_fraction *f = (struct spa_fraction *)body;
88 spa_strbuf_append(buffer, "%" PRIu32 "/%" PRIu32, f->num, f->denom);
89 break;
90 }
91 case SPA_TYPE_Bitmap:
92 spa_strbuf_append(buffer, "Bitmap");
93 break;
94 case SPA_TYPE_Bytes:
95 spa_strbuf_append(buffer, "Bytes");
96 break;
97 case SPA_TYPE_Array:
98 {
99 void *p;
100 struct spa_pod_array_body *b = (struct spa_pod_array_body *)body;
101 int i = 0;
102 info = info && info->values ? info->values : info;
103 spa_strbuf_append(buffer, "< ");
104 SPA_POD_ARRAY_BODY_FOREACH(b, size, p) {
105 if (i++ > 0)
106 spa_strbuf_append(buffer, ", ");
107 spa_debug_strbuf_format_value(buffer, info, b->child.type, p, b->child.size);
108 }
109 spa_strbuf_append(buffer, " >");
110 break;
111 }
112 default:
113 spa_strbuf_append(buffer, "INVALID type %d", type);
114 break;
115 }
116 return 0;
117}
118
119static inline int
120spa_debug_format_value(const struct spa_type_info *info,
121 uint32_t type, void *body, uint32_t size)
122{
123 char buffer[1024];
124 struct spa_strbuf buf;
126 spa_debug_strbuf_format_value(&buf, info, type, body, size);
127 spa_debugn("%s", buffer);
128 return 0;
129}
130
131static inline int spa_debugc_format(struct spa_debug_context *ctx, int indent,
132 const struct spa_type_info *info, const struct spa_pod *format)
133{
134 const char *media_type;
135 const char *media_subtype;
136 struct spa_pod_prop *prop;
137 uint32_t mtype, mstype;
138
139 if (info == NULL)
140 info = spa_type_format;
141
142 if (format == NULL || SPA_POD_TYPE(format) != SPA_TYPE_Object)
143 return -EINVAL;
144
145 if (spa_format_parse(format, &mtype, &mstype) < 0)
146 return -EINVAL;
147
149 media_subtype = spa_debug_type_find_name(spa_type_media_subtype, mstype);
150
151 spa_debugc(ctx, "%*s %s/%s", indent, "",
152 media_type ? spa_debug_type_short_name(media_type) : "unknown",
153 media_subtype ? spa_debug_type_short_name(media_subtype) : "unknown");
154
155 SPA_POD_OBJECT_FOREACH((struct spa_pod_object*)format, prop) {
156 const char *key;
157 const struct spa_type_info *ti;
158 uint32_t i, type, size, n_vals, choice;
159 const struct spa_pod *val;
160 void *vals;
161 char buffer[1024];
162 struct spa_strbuf buf;
163
164 if (prop->key == SPA_FORMAT_mediaType ||
166 continue;
167
168 val = spa_pod_get_values(&prop->value, &n_vals, &choice);
169
170 type = val->type;
171 size = val->size;
172 vals = SPA_POD_BODY(val);
173
174 if (type < SPA_TYPE_None || type >= _SPA_TYPE_LAST)
175 continue;
176
177 ti = spa_debug_type_find(info, prop->key);
178 key = ti ? ti->name : NULL;
179
180 spa_strbuf_init(&buf, buffer, sizeof(buffer));
181 spa_strbuf_append(&buf, "%*s %16s : (%s) ", indent, "",
182 key ? spa_debug_type_short_name(key) : "unknown",
184
185 if (choice == SPA_CHOICE_None) {
186 spa_debug_strbuf_format_value(&buf, ti ? ti->values : NULL, type, vals, size);
187 } else {
188 const char *ssep, *esep, *sep;
189
190 switch (choice) {
191 case SPA_CHOICE_Range:
192 case SPA_CHOICE_Step:
193 ssep = "[ ";
194 sep = ", ";
195 esep = " ]";
196 break;
197 default:
198 case SPA_CHOICE_Enum:
199 case SPA_CHOICE_Flags:
200 ssep = "{ ";
201 sep = ", ";
202 esep = " }";
203 break;
204 }
205
206 spa_strbuf_append(&buf, "%s", ssep);
207
208 for (i = 1; i < n_vals; i++) {
209 vals = SPA_PTROFF(vals, size, void);
210 if (i > 1)
211 spa_strbuf_append(&buf, "%s", sep);
212 spa_debug_strbuf_format_value(&buf, ti ? ti->values : NULL, type, vals, size);
213 }
214 spa_strbuf_append(&buf, "%s", esep);
215 }
216 spa_debugc(ctx, "%s", buffer);
217 }
218 return 0;
219}
220
221static inline int spa_debug_format(int indent,
222 const struct spa_type_info *info, const struct spa_pod *format)
223{
224 return spa_debugc_format(NULL, indent, info, format);
225}
230#ifdef __cplusplus
231} /* extern "C" */
232#endif
233
234#endif /* SPA_DEBUG_FORMAT_H */
static int spa_debug_format(int indent, const struct spa_type_info *info, const struct spa_pod *format)
Definition: debug/format.h:226
#define spa_debugn(_fmt,...)
Definition: spa/include/spa/debug/context.h:47
#define spa_debugc(_c, _fmt,...)
Definition: spa/include/spa/debug/context.h:57
static const struct spa_type_info * spa_debug_type_find(const struct spa_type_info *info, uint32_t type)
Definition: types.h:46
static int spa_debugc_format(struct spa_debug_context *ctx, int indent, const struct spa_type_info *info, const struct spa_pod *format)
Definition: debug/format.h:136
static const char * spa_debug_type_find_name(const struct spa_type_info *info, uint32_t type)
Definition: types.h:73
static const char * spa_debug_type_short_name(const char *name)
Definition: types.h:65
static const char * spa_debug_type_find_short_name(const struct spa_type_info *info, uint32_t type)
Definition: types.h:80
static int spa_debug_format_value(const struct spa_type_info *info, uint32_t type, void *body, uint32_t size)
Definition: debug/format.h:125
static int spa_debug_strbuf_format_value(struct spa_strbuf *buffer, const struct spa_type_info *info, uint32_t type, void *body, uint32_t size)
Definition: debug/format.h:50
static const struct spa_type_info spa_type_media_subtype[]
Definition: format-types.h:74
static int spa_format_parse(const struct spa_pod *format, uint32_t *media_type, uint32_t *media_subtype)
Definition: format-utils.h:47
static const struct spa_type_info spa_type_format[]
Definition: format-types.h:148
static const struct spa_type_info spa_type_media_type[]
Definition: format-types.h:58
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition: param/format.h:112
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition: param/format.h:113
#define SPA_POD_OBJECT_FOREACH(obj, iter)
Definition: iter.h:128
#define SPA_POD_BODY(pod)
Definition: pod/pod.h:59
#define SPA_POD_TYPE(pod)
Definition: pod/pod.h:48
static struct spa_pod * spa_pod_get_values(const struct spa_pod *pod, uint32_t *n_vals, uint32_t *choice)
Definition: iter.h:367
#define SPA_POD_ARRAY_BODY_FOREACH(body, _size, iter)
Definition: iter.h:99
@ 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
static int spa_strbuf_append(struct spa_strbuf *buf, const char *fmt,...)
Definition: string.h:398
static void spa_strbuf_init(struct spa_strbuf *buf, char *buffer, size_t maxsize)
Definition: string.h:390
static const struct spa_type_info spa_types[]
Definition: utils/type-info.h:62
@ SPA_TYPE_Int
Definition: spa/include/spa/utils/type.h:54
@ SPA_TYPE_Rectangle
Definition: spa/include/spa/utils/type.h:60
@ SPA_TYPE_Long
Definition: spa/include/spa/utils/type.h:55
@ SPA_TYPE_Bool
Definition: spa/include/spa/utils/type.h:52
@ SPA_TYPE_Bytes
Definition: spa/include/spa/utils/type.h:59
@ SPA_TYPE_Bitmap
Definition: spa/include/spa/utils/type.h:62
@ SPA_TYPE_Object
Definition: spa/include/spa/utils/type.h:65
@ SPA_TYPE_Float
Definition: spa/include/spa/utils/type.h:56
@ SPA_TYPE_Fraction
Definition: spa/include/spa/utils/type.h:61
@ _SPA_TYPE_LAST
not part of ABI
Definition: spa/include/spa/utils/type.h:71
@ SPA_TYPE_Double
Definition: spa/include/spa/utils/type.h:57
@ SPA_TYPE_Id
Definition: spa/include/spa/utils/type.h:53
@ SPA_TYPE_Array
Definition: spa/include/spa/utils/type.h:63
@ SPA_TYPE_String
Definition: spa/include/spa/utils/type.h:58
#define SPA_PTROFF(ptr_, offset_, type_)
Return the address (buffer + offset) as pointer of type.
Definition: defs.h:210
spa/pod/parser.h
spa/debug/context.h
spa/utils/string.h
Definition: spa/include/spa/debug/context.h:53
Definition: defs.h:139
uint32_t num
Definition: defs.h:140
uint32_t denom
Definition: defs.h:141
Definition: pod/pod.h:141
struct spa_pod child
Definition: pod/pod.h:142
Definition: pod/pod.h:203
Definition: pod/pod.h:228
uint32_t key
key of property, list of valid keys depends on the object type
Definition: pod/pod.h:229
struct spa_pod value
Definition: pod/pod.h:246
Definition: pod/pod.h:63
uint32_t type
Definition: pod/pod.h:65
uint32_t size
Definition: pod/pod.h:64
Definition: defs.h:118
uint32_t width
Definition: defs.h:119
uint32_t height
Definition: defs.h:120
Definition: string.h:384
char * buffer
Definition: string.h:385
Definition: spa/include/spa/utils/type.h:162
uint32_t type
Definition: spa/include/spa/utils/type.h:163
const struct spa_type_info * values
Definition: spa/include/spa/utils/type.h:166
spa/debug/types.h