lib: create_packet_message(): make assertion message less convoluted
[babeltrace.git] / lib / lib-logging.c
CommitLineData
57ffc2f1
PP
1/*
2 * Copyright 2018 Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
8deee039
PP
23#define BT_LOG_TAG "LIB-LOGGING"
24
57ffc2f1
PP
25#include <stdarg.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <inttypes.h>
30#include <stdint.h>
57ffc2f1
PP
31#include <wchar.h>
32#include <glib.h>
8c6884d9
PP
33#include <babeltrace/lib-logging-internal.h>
34#include <babeltrace/assert-pre-internal.h>
57ffc2f1
PP
35#include <babeltrace/common-internal.h>
36#include <babeltrace/lib-logging-internal.h>
0f15f666
PP
37#include <babeltrace/value-internal.h>
38#include <babeltrace/value-internal.h>
a6918753 39#include <babeltrace/object-pool-internal.h>
0f15f666
PP
40#include <babeltrace/trace-ir/field-class-internal.h>
41#include <babeltrace/trace-ir/field-internal.h>
108b91d0 42#include <babeltrace/trace-ir/event-class-internal.h>
10b7a2e4 43#include <babeltrace/trace-ir/event-const.h>
108b91d0 44#include <babeltrace/trace-ir/event-internal.h>
10b7a2e4 45#include <babeltrace/trace-ir/packet-const.h>
108b91d0
PP
46#include <babeltrace/trace-ir/packet-internal.h>
47#include <babeltrace/trace-ir/stream-class-internal.h>
48#include <babeltrace/trace-ir/stream-internal.h>
10b7a2e4 49#include <babeltrace/trace-ir/stream-const.h>
108b91d0 50#include <babeltrace/trace-ir/trace-internal.h>
10b7a2e4 51#include <babeltrace/trace-ir/trace-class-internal.h>
108b91d0 52#include <babeltrace/trace-ir/clock-class-internal.h>
ecbb78c0 53#include <babeltrace/trace-ir/clock-snapshot-internal.h>
108b91d0
PP
54#include <babeltrace/trace-ir/field-path-internal.h>
55#include <babeltrace/trace-ir/utils-internal.h>
57ffc2f1
PP
56#include <babeltrace/graph/component-class-internal.h>
57#include <babeltrace/graph/component-class-sink-colander-internal.h>
58#include <babeltrace/graph/component-filter-internal.h>
59#include <babeltrace/graph/component-internal.h>
60#include <babeltrace/graph/component-sink-internal.h>
61#include <babeltrace/graph/component-source-internal.h>
62#include <babeltrace/graph/connection-internal.h>
63#include <babeltrace/graph/graph-internal.h>
b09a5592 64#include <babeltrace/graph/message-event-internal.h>
40bf6fd0 65#include <babeltrace/graph/message-message-iterator-inactivity-internal.h>
b09a5592
PP
66#include <babeltrace/graph/message-internal.h>
67#include <babeltrace/graph/message-iterator-internal.h>
68#include <babeltrace/graph/message-packet-internal.h>
69#include <babeltrace/graph/message-stream-internal.h>
a1f053a9 70#include <babeltrace/graph/message-stream-activity-internal.h>
8f1a1bbb 71#include <babeltrace/graph/message-discarded-items-internal.h>
57ffc2f1
PP
72#include <babeltrace/graph/port-internal.h>
73#include <babeltrace/plugin/plugin-internal.h>
74#include <babeltrace/plugin/plugin-so-internal.h>
57ffc2f1
PP
75
76#define LIB_LOGGING_BUF_SIZE (4096 * 4)
77
91f92a2f 78static __thread char lib_logging_buf[LIB_LOGGING_BUF_SIZE];
57ffc2f1
PP
79
80#define BUF_APPEND(_fmt, ...) \
81 do { \
82 int _count; \
83 size_t _size = LIB_LOGGING_BUF_SIZE - \
84 (size_t) (*buf_ch - lib_logging_buf); \
85 _count = snprintf(*buf_ch, _size, (_fmt), __VA_ARGS__); \
8b45963b 86 BT_ASSERT(_count >= 0); \
57ffc2f1
PP
87 *buf_ch += MIN(_count, _size); \
88 if (*buf_ch >= lib_logging_buf + LIB_LOGGING_BUF_SIZE - 1) { \
89 return; \
90 } \
91 } while (0)
92
93#define BUF_APPEND_UUID(_uuid) \
7b33a0e0
PP
94 do { \
95 BUF_APPEND(", %suuid=", prefix); \
96 format_uuid(buf_ch, (_uuid)); \
97 } while (0)
57ffc2f1
PP
98
99#define PRFIELD(_expr) prefix, (_expr)
100
834e9996
PP
101#define PRFIELD_GSTRING(_expr) PRFIELD((_expr) ? (_expr)->str : NULL)
102
ed47d568 103#define TMP_PREFIX_LEN 64
57ffc2f1
PP
104#define SET_TMP_PREFIX(_prefix2) \
105 do { \
cd6d1a17
FD
106 snprintf(tmp_prefix, TMP_PREFIX_LEN - 1, "%s%s", \
107 prefix, (_prefix2)); \
108 tmp_prefix[TMP_PREFIX_LEN - 1] = '\0'; \
57ffc2f1
PP
109 } while (0)
110
111static inline void format_component(char **buf_ch, bool extended,
10b7a2e4 112 const char *prefix, const struct bt_component *component);
57ffc2f1
PP
113
114static inline void format_port(char **buf_ch, bool extended,
10b7a2e4 115 const char *prefix, const struct bt_port *port);
57ffc2f1
PP
116
117static inline void format_connection(char **buf_ch, bool extended,
10b7a2e4 118 const char *prefix, const struct bt_connection *connection);
57ffc2f1 119
ecbb78c0
PP
120static inline void format_clock_snapshot(char **buf_ch, bool extended,
121 const char *prefix, const struct bt_clock_snapshot *clock_snapshot);
8fc063a2 122
7b33a0e0 123static inline void format_field_path(char **buf_ch, bool extended,
10b7a2e4 124 const char *prefix, const struct bt_field_path *field_path);
7b33a0e0 125
1d7bf349 126static inline void format_object(char **buf_ch, bool extended,
10b7a2e4 127 const char *prefix, const struct bt_object *obj)
57ffc2f1 128{
1d7bf349 129 BUF_APPEND(", %sref-count=%llu", prefix, obj->ref_count);
57ffc2f1
PP
130}
131
7b33a0e0 132static inline void format_uuid(char **buf_ch, bt_uuid uuid)
8fc063a2 133{
7b33a0e0
PP
134 BUF_APPEND("\"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\"",
135 (unsigned int) uuid[0],
136 (unsigned int) uuid[1],
137 (unsigned int) uuid[2],
138 (unsigned int) uuid[3],
139 (unsigned int) uuid[4],
140 (unsigned int) uuid[5],
141 (unsigned int) uuid[6],
142 (unsigned int) uuid[7],
143 (unsigned int) uuid[8],
144 (unsigned int) uuid[9],
145 (unsigned int) uuid[10],
146 (unsigned int) uuid[11],
147 (unsigned int) uuid[12],
148 (unsigned int) uuid[13],
149 (unsigned int) uuid[14],
150 (unsigned int) uuid[15]);
8fc063a2
PP
151}
152
a6918753 153static inline void format_object_pool(char **buf_ch, bool extended,
10b7a2e4 154 const char *prefix, const struct bt_object_pool *pool)
a6918753
PP
155{
156 BUF_APPEND(", %ssize=%zu", PRFIELD(pool->size));
157
158 if (pool->objects) {
159 BUF_APPEND(", %scap=%u", PRFIELD(pool->objects->len));
160 }
161}
162
939190b3 163static inline void format_integer_field_class(char **buf_ch,
7b33a0e0 164 bool extended, const char *prefix,
10b7a2e4 165 const struct bt_field_class *field_class)
7b33a0e0 166{
10b7a2e4
PP
167 const struct bt_field_class_integer *int_fc =
168 (const void *) field_class;
7b33a0e0
PP
169
170 BUF_APPEND(", %srange-size=%" PRIu64 ", %sbase=%s",
939190b3
PP
171 PRFIELD(int_fc->range),
172 PRFIELD(bt_common_field_class_integer_preferred_display_base_string(int_fc->base)));
7b33a0e0
PP
173}
174
939190b3 175static inline void format_array_field_class(char **buf_ch,
7b33a0e0 176 bool extended, const char *prefix,
10b7a2e4 177 const struct bt_field_class *field_class)
7b33a0e0 178{
10b7a2e4
PP
179 const struct bt_field_class_array *array_fc =
180 (const void *) field_class;
7b33a0e0 181
af0c18e3 182 BUF_APPEND(", %selement-fc-addr=%p, %selement-fc-type=%s",
939190b3 183 PRFIELD(array_fc->element_fc),
af0c18e3 184 PRFIELD(bt_common_field_class_type_string(array_fc->element_fc->type)));
7b33a0e0
PP
185}
186
939190b3 187static inline void format_field_class(char **buf_ch, bool extended,
10b7a2e4 188 const char *prefix, const struct bt_field_class *field_class)
57ffc2f1 189{
ed47d568 190 char tmp_prefix[TMP_PREFIX_LEN];
7b33a0e0 191
af0c18e3
PP
192 BUF_APPEND(", %stype=%s",
193 PRFIELD(bt_common_field_class_type_string(field_class->type)));
57ffc2f1
PP
194
195 if (extended) {
939190b3 196 BUF_APPEND(", %sis-frozen=%d", PRFIELD(field_class->frozen));
10b7a2e4
PP
197 BUF_APPEND(", %sis-part-of-trace-class=%d",
198 PRFIELD(field_class->part_of_trace_class));
57ffc2f1
PP
199 } else {
200 return;
201 }
202
af0c18e3
PP
203 switch (field_class->type) {
204 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
205 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER:
57ffc2f1 206 {
939190b3 207 format_integer_field_class(buf_ch, extended, prefix, field_class);
57ffc2f1
PP
208 break;
209 }
af0c18e3 210 case BT_FIELD_CLASS_TYPE_REAL:
57ffc2f1 211 {
10b7a2e4 212 const struct bt_field_class_real *real_fc = (void *) field_class;
57ffc2f1 213
7b33a0e0 214 BUF_APPEND(", %sis-single-precision=%d",
939190b3 215 PRFIELD(real_fc->is_single_precision));
57ffc2f1
PP
216 break;
217 }
af0c18e3
PP
218 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
219 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
57ffc2f1 220 {
10b7a2e4
PP
221 const struct bt_field_class_enumeration *enum_fc =
222 (const void *) field_class;
57ffc2f1 223
939190b3 224 format_integer_field_class(buf_ch, extended, prefix, field_class);
57ffc2f1 225 BUF_APPEND(", %smapping-count=%u",
939190b3 226 PRFIELD(enum_fc->mappings->len));
57ffc2f1
PP
227 break;
228 }
af0c18e3 229 case BT_FIELD_CLASS_TYPE_STRUCTURE:
57ffc2f1 230 {
10b7a2e4
PP
231 const struct bt_field_class_structure *struct_fc =
232 (const void *) field_class;
7b33a0e0 233
939190b3 234 if (struct_fc->common.named_fcs) {
7b33a0e0 235 BUF_APPEND(", %smember-count=%u",
939190b3 236 PRFIELD(struct_fc->common.named_fcs->len));
7b33a0e0 237 }
57ffc2f1 238
57ffc2f1
PP
239 break;
240 }
af0c18e3 241 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
57ffc2f1 242 {
10b7a2e4
PP
243 const struct bt_field_class_static_array *array_fc =
244 (const void *) field_class;
57ffc2f1 245
939190b3
PP
246 format_array_field_class(buf_ch, extended, prefix, field_class);
247 BUF_APPEND(", %slength=%" PRIu64, PRFIELD(array_fc->length));
57ffc2f1
PP
248 break;
249 }
af0c18e3 250 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY:
57ffc2f1 251 {
10b7a2e4
PP
252 const struct bt_field_class_dynamic_array *array_fc =
253 (const void *) field_class;
7b33a0e0 254
939190b3 255 format_array_field_class(buf_ch, extended, prefix, field_class);
7b33a0e0 256
939190b3
PP
257 if (array_fc->length_fc) {
258 SET_TMP_PREFIX("length-fc-");
259 format_field_class(buf_ch, extended, tmp_prefix,
260 array_fc->length_fc);
7b33a0e0
PP
261 }
262
939190b3 263 if (array_fc->length_field_path) {
7b33a0e0
PP
264 SET_TMP_PREFIX("length-field-path-");
265 format_field_path(buf_ch, extended, tmp_prefix,
939190b3 266 array_fc->length_field_path);
7b33a0e0 267 }
57ffc2f1 268
57ffc2f1
PP
269 break;
270 }
af0c18e3 271 case BT_FIELD_CLASS_TYPE_VARIANT:
57ffc2f1 272 {
10b7a2e4
PP
273 const struct bt_field_class_variant *var_fc =
274 (const void *) field_class;
7b33a0e0 275
939190b3 276 if (var_fc->common.named_fcs) {
7b33a0e0 277 BUF_APPEND(", %soption-count=%u",
939190b3 278 PRFIELD(var_fc->common.named_fcs->len));
7b33a0e0
PP
279 }
280
939190b3
PP
281 if (var_fc->selector_fc) {
282 SET_TMP_PREFIX("selector-fc-");
283 format_field_class(buf_ch, extended, tmp_prefix,
284 var_fc->selector_fc);
7b33a0e0
PP
285 }
286
939190b3 287 if (var_fc->selector_field_path) {
7b33a0e0
PP
288 SET_TMP_PREFIX("selector-field-path-");
289 format_field_path(buf_ch, extended, tmp_prefix,
939190b3 290 var_fc->selector_field_path);
7b33a0e0 291 }
57ffc2f1 292
57ffc2f1
PP
293 break;
294 }
295 default:
296 break;
297 }
298}
299
18acc6f8 300static inline void format_field_integer_extended(char **buf_ch,
10b7a2e4 301 const char *prefix, const struct bt_field *field)
57ffc2f1 302{
10b7a2e4
PP
303 const struct bt_field_integer *integer = (void *) field;
304 const struct bt_field_class_integer *field_class =
305 (void *) field->class;
57ffc2f1
PP
306 const char *fmt = NULL;
307
939190b3 308 BT_ASSERT(field_class);
a6918753 309
939190b3 310 if (field_class->base == BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL) {
57ffc2f1 311 fmt = ", %svalue=%" PRIo64;
939190b3 312 } else if (field_class->base == BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL) {
57ffc2f1
PP
313 fmt = ", %svalue=%" PRIx64;
314 }
315
af0c18e3
PP
316 if (field_class->common.type == BT_FIELD_CLASS_TYPE_SIGNED_INTEGER ||
317 field_class->common.type == BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION) {
57ffc2f1
PP
318 if (!fmt) {
319 fmt = ", %svalue=%" PRId64;
320 }
321
7b33a0e0 322 BUF_APPEND(fmt, PRFIELD(integer->value.i));
57ffc2f1
PP
323 } else {
324 if (!fmt) {
325 fmt = ", %svalue=%" PRIu64;
326 }
327
7b33a0e0 328 BUF_APPEND(fmt, PRFIELD(integer->value.u));
57ffc2f1
PP
329 }
330}
331
18acc6f8 332static inline void format_field(char **buf_ch, bool extended,
10b7a2e4 333 const char *prefix, const struct bt_field *field)
57ffc2f1 334{
7b33a0e0 335 BUF_APPEND(", %sis-set=%d", PRFIELD(field->is_set));
57ffc2f1
PP
336
337 if (extended) {
338 BUF_APPEND(", %sis-frozen=%d", PRFIELD(field->frozen));
339 }
340
af0c18e3 341 BUF_APPEND(", %sclass-addr=%p", PRFIELD(field->class));
a6918753 342
939190b3 343 if (!field->class) {
a6918753
PP
344 return;
345 }
346
af0c18e3
PP
347 BUF_APPEND(", %sclass-type=%s",
348 PRFIELD(bt_common_field_class_type_string(field->class->type)));
57ffc2f1 349
7b33a0e0 350 if (!extended || !field->is_set) {
57ffc2f1
PP
351 return;
352 }
353
af0c18e3
PP
354 switch (field->class->type) {
355 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
356 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER:
357 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
358 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
57ffc2f1 359 {
18acc6f8 360 format_field_integer_extended(buf_ch, prefix, field);
57ffc2f1
PP
361 break;
362 }
af0c18e3 363 case BT_FIELD_CLASS_TYPE_REAL:
57ffc2f1 364 {
10b7a2e4 365 const struct bt_field_real *real_field = (const void *) field;
57ffc2f1 366
7b33a0e0 367 BUF_APPEND(", %svalue=%f", PRFIELD(real_field->value));
57ffc2f1
PP
368 break;
369 }
af0c18e3 370 case BT_FIELD_CLASS_TYPE_STRING:
57ffc2f1 371 {
10b7a2e4 372 const struct bt_field_string *str = (const void *) field;
57ffc2f1 373
e42dd763
PP
374 if (str->buf) {
375 BT_ASSERT(str->buf->data);
a6918753 376 BUF_APPEND(", %spartial-value=\"%.32s\"",
e42dd763 377 PRFIELD(str->buf->data));
a6918753 378 }
7b33a0e0 379
57ffc2f1
PP
380 break;
381 }
af0c18e3
PP
382 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
383 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY:
57ffc2f1 384 {
10b7a2e4 385 const struct bt_field_array *array_field = (const void *) field;
57ffc2f1 386
7b33a0e0 387 BUF_APPEND(", %slength=%" PRIu64, PRFIELD(array_field->length));
a6918753 388
7b33a0e0 389 if (array_field->fields) {
a6918753 390 BUF_APPEND(", %sallocated-length=%u",
7b33a0e0 391 PRFIELD(array_field->fields->len));
a6918753 392 }
7b33a0e0 393
57ffc2f1
PP
394 break;
395 }
af0c18e3 396 case BT_FIELD_CLASS_TYPE_VARIANT:
57ffc2f1 397 {
10b7a2e4 398 const struct bt_field_variant *var_field = (const void *) field;
a6918753 399
7b33a0e0
PP
400 BUF_APPEND(", %sselected-field-index=%" PRIu64,
401 PRFIELD(var_field->selected_index));
a6918753
PP
402 break;
403 }
404 default:
405 break;
406 }
8deee039
PP
407}
408
57ffc2f1 409static inline void format_field_path(char **buf_ch, bool extended,
10b7a2e4 410 const char *prefix, const struct bt_field_path *field_path)
57ffc2f1
PP
411{
412 uint64_t i;
413
1d4afa5f
PP
414 if (field_path->items) {
415 BT_ASSERT(field_path->items);
416 BUF_APPEND(", %sitem-count=%u",
417 PRFIELD(field_path->items->len));
a6918753 418 }
57ffc2f1 419
1d4afa5f 420 if (!extended || !field_path->items) {
57ffc2f1
PP
421 return;
422 }
423
18acc6f8
PP
424 BUF_APPEND(", %spath=[%s",
425 PRFIELD(bt_common_scope_string(field_path->root)));
57ffc2f1 426
1d4afa5f
PP
427 for (i = 0; i < bt_field_path_get_item_count(field_path); i++) {
428 const struct bt_field_path_item *fp_item =
429 bt_field_path_borrow_item_by_index_const(field_path, i);
430
431 switch (bt_field_path_item_get_type(fp_item)) {
432 case BT_FIELD_PATH_ITEM_TYPE_INDEX:
433 BUF_APPEND(", %" PRIu64,
434 bt_field_path_item_index_get_index(fp_item));
435 break;
436 case BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT:
437 BUF_APPEND("%s", ", <CUR>");
438 break;
439 default:
440 abort();
441 }
57ffc2f1
PP
442 }
443
444 BUF_APPEND("%s", "]");
445}
446
10b7a2e4
PP
447static inline void format_trace_class(char **buf_ch, bool extended,
448 const char *prefix, const struct bt_trace_class *trace_class)
57ffc2f1 449{
10b7a2e4
PP
450 if (trace_class->name.value) {
451 BUF_APPEND(", %sname=\"%s\"",
452 PRFIELD(trace_class->name.value));
57ffc2f1
PP
453 }
454
455 if (!extended) {
456 return;
457 }
458
10b7a2e4 459 BUF_APPEND(", %sis-frozen=%d", PRFIELD(trace_class->frozen));
57ffc2f1 460
10b7a2e4
PP
461 if (trace_class->uuid.value) {
462 BUF_APPEND_UUID(trace_class->uuid.value);
a6918753
PP
463 }
464
10b7a2e4 465 if (trace_class->stream_classes) {
a6918753 466 BUF_APPEND(", %sstream-class-count=%u",
10b7a2e4 467 PRFIELD(trace_class->stream_classes->len));
a6918753
PP
468 }
469
0476f6f7 470 BUF_APPEND(", %sassigns-auto-sc-id=%d",
10b7a2e4 471 PRFIELD(trace_class->assigns_automatic_stream_class_id));
10b7a2e4
PP
472}
473
474static inline void format_trace(char **buf_ch, bool extended,
475 const char *prefix, const struct bt_trace *trace)
476{
ed47d568 477 char tmp_prefix[TMP_PREFIX_LEN];
10b7a2e4
PP
478
479 if (trace->name.value) {
480 BUF_APPEND(", %sname=\"%s\"", PRFIELD(trace->name.value));
481 }
482
483 if (!extended) {
484 return;
485 }
486
487 BUF_APPEND(", %sis-frozen=%d", PRFIELD(trace->frozen));
488
a6918753
PP
489 if (trace->streams) {
490 BUF_APPEND(", %sstream-count=%u",
491 PRFIELD(trace->streams->len));
492 }
493
10b7a2e4
PP
494 if (!trace->class) {
495 return;
496 }
497
498 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace->class));
499 SET_TMP_PREFIX("trace-class-");
500 format_trace_class(buf_ch, false, tmp_prefix, trace->class);
8deee039
PP
501}
502
18acc6f8 503static inline void format_stream_class(char **buf_ch, bool extended,
10b7a2e4
PP
504 const char *prefix,
505 const struct bt_stream_class *stream_class)
8deee039 506{
10b7a2e4 507 const struct bt_trace_class *trace_class;
ed47d568 508 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1 509
7b33a0e0 510 BUF_APPEND(", %sid=%" PRIu64, PRFIELD(stream_class->id));
57ffc2f1 511
7b33a0e0
PP
512 if (stream_class->name.value) {
513 BUF_APPEND(", %sname=\"%s\"",
514 PRFIELD(stream_class->name.value));
57ffc2f1
PP
515 }
516
517 if (!extended) {
518 return;
519 }
520
521 BUF_APPEND(", %sis-frozen=%d", PRFIELD(stream_class->frozen));
a6918753
PP
522
523 if (stream_class->event_classes) {
524 BUF_APPEND(", %sevent-class-count=%u",
525 PRFIELD(stream_class->event_classes->len));
526 }
527
939190b3 528 BUF_APPEND(", %spacket-context-fc-addr=%p, "
0476f6f7 529 "%sevent-common-context-fc-addr=%p",
939190b3 530 PRFIELD(stream_class->packet_context_fc),
939190b3 531 PRFIELD(stream_class->event_common_context_fc));
10b7a2e4
PP
532 trace_class = bt_stream_class_borrow_trace_class_inline(stream_class);
533 if (!trace_class) {
57ffc2f1
PP
534 return;
535 }
536
3f511a69
PP
537 BUF_APPEND(", %sassigns-auto-ec-id=%d, %sassigns-auto-stream-id=%d, "
538 "%spackets-have-default-beginning-cs=%d, "
539 "%spackets-have-default-end-cs=%d, ",
7b33a0e0 540 PRFIELD(stream_class->assigns_automatic_event_class_id),
3f511a69
PP
541 PRFIELD(stream_class->assigns_automatic_stream_id),
542 PRFIELD(stream_class->packets_have_default_beginning_clock_snapshot),
543 PRFIELD(stream_class->packets_have_default_end_clock_snapshot));
10b7a2e4
PP
544 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class));
545 SET_TMP_PREFIX("trace-class-");
546 format_trace_class(buf_ch, false, tmp_prefix, trace_class);
f7c3ac09 547 SET_TMP_PREFIX("pcf-pool-");
09f603c6 548 format_object_pool(buf_ch, extended, tmp_prefix,
f7c3ac09 549 &stream_class->packet_context_field_pool);
8deee039
PP
550}
551
18acc6f8 552static inline void format_event_class(char **buf_ch, bool extended,
10b7a2e4 553 const char *prefix, const struct bt_event_class *event_class)
8deee039 554{
10b7a2e4
PP
555 const struct bt_stream_class *stream_class;
556 const struct bt_trace_class *trace_class;
ed47d568 557 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1 558
7b33a0e0 559 BUF_APPEND(", %sid=%" PRIu64, PRFIELD(event_class->id));
57ffc2f1 560
7b33a0e0 561 if (event_class->name.value) {
18acc6f8 562 BUF_APPEND(", %sname=\"%s\"",
7b33a0e0 563 PRFIELD(event_class->name.value));
57ffc2f1
PP
564 }
565
566 if (!extended) {
567 return;
568 }
569
7b33a0e0
PP
570 BUF_APPEND(", %sis-frozen=%d", PRFIELD(event_class->frozen));
571
572 if (event_class->log_level.base.avail) {
573 BUF_APPEND(", %slog-level=%s",
574 PRFIELD(bt_common_event_class_log_level_string(
575 (int) event_class->log_level.value)));
576 }
57ffc2f1 577
7b33a0e0 578 if (event_class->emf_uri.value) {
57ffc2f1 579 BUF_APPEND(", %semf-uri=\"%s\"",
7b33a0e0 580 PRFIELD(event_class->emf_uri.value));
57ffc2f1
PP
581 }
582
939190b3
PP
583 BUF_APPEND(", %sspecific-context-fc-addr=%p, %spayload-fc-addr=%p",
584 PRFIELD(event_class->specific_context_fc),
585 PRFIELD(event_class->payload_fc));
57ffc2f1 586
10b7a2e4 587 stream_class = bt_event_class_borrow_stream_class_const(event_class);
57ffc2f1
PP
588 if (!stream_class) {
589 return;
590 }
591
592 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class));
593 SET_TMP_PREFIX("stream-class-");
18acc6f8 594 format_stream_class(buf_ch, false, tmp_prefix, stream_class);
10b7a2e4
PP
595 trace_class = bt_stream_class_borrow_trace_class_inline(stream_class);
596 if (!trace_class) {
57ffc2f1
PP
597 return;
598 }
599
10b7a2e4
PP
600 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class));
601 SET_TMP_PREFIX("trace-class-");
602 format_trace_class(buf_ch, false, tmp_prefix, trace_class);
a6918753 603 SET_TMP_PREFIX("event-pool-");
09f603c6
PP
604 format_object_pool(buf_ch, extended, tmp_prefix,
605 &event_class->event_pool);
8deee039
PP
606}
607
18acc6f8 608static inline void format_stream(char **buf_ch, bool extended,
10b7a2e4 609 const char *prefix, const struct bt_stream *stream)
8deee039 610{
10b7a2e4
PP
611 const struct bt_stream_class *stream_class;
612 const struct bt_trace_class *trace_class = NULL;
613 const struct bt_trace *trace = NULL;
ed47d568 614 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1 615
7b33a0e0 616 BUF_APPEND(", %sid=%" PRIu64, PRFIELD(stream->id));
57ffc2f1 617
7b33a0e0
PP
618 if (stream->name.value) {
619 BUF_APPEND(", %sname=\"%s\"", PRFIELD(stream->name.value));
57ffc2f1
PP
620 }
621
57ffc2f1
PP
622 if (!extended) {
623 return;
624 }
625
10b7a2e4
PP
626 stream_class = bt_stream_borrow_class_const(stream);
627 if (stream_class) {
628 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class));
629 SET_TMP_PREFIX("stream-class-");
630 format_stream_class(buf_ch, false, tmp_prefix, stream_class);
631 trace_class = bt_stream_class_borrow_trace_class_inline(stream_class);
57ffc2f1
PP
632 }
633
10b7a2e4
PP
634 if (trace_class) {
635 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class));
636 SET_TMP_PREFIX("trace-class-");
637 format_trace_class(buf_ch, false, tmp_prefix, trace_class);
638 }
639
640 trace = bt_stream_borrow_trace_inline(stream);
641 if (trace) {
642 BUF_APPEND(", %strace-addr=%p", PRFIELD(trace));
643 SET_TMP_PREFIX("trace-");
644 format_trace(buf_ch, false, tmp_prefix, trace);
57ffc2f1
PP
645 }
646
a6918753 647 SET_TMP_PREFIX("packet-pool-");
09f603c6 648 format_object_pool(buf_ch, extended, tmp_prefix, &stream->packet_pool);
8deee039
PP
649}
650
57ffc2f1 651static inline void format_packet(char **buf_ch, bool extended,
10b7a2e4 652 const char *prefix, const struct bt_packet *packet)
57ffc2f1 653{
10b7a2e4
PP
654 const struct bt_stream *stream;
655 const struct bt_trace_class *trace_class;
ed47d568 656 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
657
658 if (!extended) {
659 return;
660 }
661
0476f6f7 662 BUF_APPEND(", %sis-frozen=%d, %scontext-field-addr=%p",
57ffc2f1 663 PRFIELD(packet->frozen),
7b33a0e0 664 PRFIELD(packet->context_field ? packet->context_field->field : NULL));
10b7a2e4 665 stream = bt_packet_borrow_stream_const(packet);
57ffc2f1
PP
666 if (!stream) {
667 return;
668 }
669
670 BUF_APPEND(", %sstream-addr=%p", PRFIELD(stream));
671 SET_TMP_PREFIX("stream-");
672 format_stream(buf_ch, false, tmp_prefix, stream);
10b7a2e4
PP
673 trace_class = (const struct bt_trace_class *) bt_object_borrow_parent(&stream->base);
674 if (!trace_class) {
57ffc2f1
PP
675 return;
676 }
677
10b7a2e4
PP
678 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class));
679 SET_TMP_PREFIX("trace-class-");
680 format_trace_class(buf_ch, false, tmp_prefix, trace_class);
57ffc2f1
PP
681}
682
18acc6f8 683static inline void format_event(char **buf_ch, bool extended,
10b7a2e4 684 const char *prefix, const struct bt_event *event)
57ffc2f1 685{
10b7a2e4
PP
686 const struct bt_packet *packet;
687 const struct bt_stream *stream;
688 const struct bt_trace_class *trace_class;
689 const struct bt_stream_class *stream_class;
ed47d568 690 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
691
692 if (!extended) {
693 return;
694 }
695
0476f6f7 696 BUF_APPEND(", %sis-frozen=%d, "
7b33a0e0 697 "%scommon-context-field-addr=%p, "
834e9996 698 "%sspecific-context-field-addr=%p, "
7b33a0e0 699 "%spayload-field-addr=%p, ",
57ffc2f1 700 PRFIELD(event->frozen),
7b33a0e0
PP
701 PRFIELD(event->common_context_field),
702 PRFIELD(event->specific_context_field),
8deee039
PP
703 PRFIELD(event->payload_field));
704 BUF_APPEND(", %sevent-class-addr=%p", PRFIELD(event->class));
a6918753
PP
705
706 if (!event->class) {
707 return;
708 }
709
57ffc2f1 710 SET_TMP_PREFIX("event-class-");
18acc6f8
PP
711 format_event_class(buf_ch, false, tmp_prefix, event->class);
712 stream_class = bt_event_class_borrow_stream_class(event->class);
57ffc2f1
PP
713 if (stream_class) {
714 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class));
715 SET_TMP_PREFIX("stream-class-");
18acc6f8 716 format_stream_class(buf_ch, false, tmp_prefix,
8deee039 717 stream_class);
57ffc2f1 718
10b7a2e4
PP
719 trace_class = bt_stream_class_borrow_trace_class_inline(
720 stream_class);
721 if (trace_class) {
722 BUF_APPEND(", %strace-class-addr=%p",
723 PRFIELD(trace_class));
724 SET_TMP_PREFIX("trace-class-");
725 format_trace_class(buf_ch, false, tmp_prefix,
726 trace_class);
57ffc2f1
PP
727 }
728 }
8deee039 729
10b7a2e4 730 packet = bt_event_borrow_packet_const(event);
57ffc2f1
PP
731 if (!packet) {
732 return;
733 }
734
735 BUF_APPEND(", %spacket-addr=%p", PRFIELD(packet));
736 SET_TMP_PREFIX("packet-");
737 format_packet(buf_ch, false, tmp_prefix, packet);
10b7a2e4 738 stream = bt_packet_borrow_stream_const(packet);
57ffc2f1
PP
739 if (!stream) {
740 return;
741 }
742
743 BUF_APPEND(", %sstream-addr=%p", PRFIELD(stream));
744 SET_TMP_PREFIX("stream-");
745 format_stream(buf_ch, false, tmp_prefix, stream);
746}
747
748static inline void format_clock_class(char **buf_ch, bool extended,
10b7a2e4 749 const char *prefix, const struct bt_clock_class *clock_class)
57ffc2f1 750{
ed47d568 751 char tmp_prefix[TMP_PREFIX_LEN];
a6918753 752
7b33a0e0
PP
753 if (clock_class->name.value) {
754 BUF_APPEND(", %sname=\"%s\"", PRFIELD(clock_class->name.value));
755 }
756
757 BUF_APPEND(", %sfreq=%" PRIu64, PRFIELD(clock_class->frequency));
57ffc2f1
PP
758
759 if (!extended) {
760 return;
761 }
762
7b33a0e0
PP
763 if (clock_class->description.value) {
764 BUF_APPEND(", %spartial-descr=\"%.32s\"",
765 PRFIELD(clock_class->description.value));
766 }
767
768 if (clock_class->uuid.value) {
769 BUF_APPEND_UUID(clock_class->uuid.value);
57ffc2f1
PP
770 }
771
772 BUF_APPEND(", %sis-frozen=%d, %sprecision=%" PRIu64 ", "
773 "%soffset-s=%" PRId64 ", "
d608d675 774 "%soffset-cycles=%" PRIu64 ", %sorigin-is-unix-epoch=%d, "
7b33a0e0 775 "%sbase-offset-ns=%" PRId64,
57ffc2f1 776 PRFIELD(clock_class->frozen), PRFIELD(clock_class->precision),
7b33a0e0
PP
777 PRFIELD(clock_class->offset_seconds),
778 PRFIELD(clock_class->offset_cycles),
d608d675 779 PRFIELD(clock_class->origin_is_unix_epoch),
7b33a0e0 780 PRFIELD(clock_class->base_offset.value_ns));
a6918753 781
ecbb78c0 782 SET_TMP_PREFIX("cs-pool-");
09f603c6
PP
783 format_object_pool(buf_ch, extended, tmp_prefix,
784 &clock_class->cs_pool);
57ffc2f1
PP
785}
786
ecbb78c0
PP
787static inline void format_clock_snapshot(char **buf_ch, bool extended,
788 const char *prefix, const struct bt_clock_snapshot *clock_snapshot)
57ffc2f1 789{
ed47d568 790 char tmp_prefix[TMP_PREFIX_LEN];
7b33a0e0 791 BUF_APPEND(", %svalue=%" PRIu64 ", %sns-from-origin=%" PRId64,
ecbb78c0
PP
792 PRFIELD(clock_snapshot->value_cycles),
793 PRFIELD(clock_snapshot->ns_from_origin));
57ffc2f1
PP
794
795 if (!extended) {
796 return;
797 }
798
ecbb78c0 799 BUF_APPEND(", %sis-set=%d", PRFIELD(clock_snapshot->is_set));
834e9996 800
ecbb78c0 801 if (clock_snapshot->clock_class) {
834e9996 802 BUF_APPEND(", %sclock-class-addr=%p",
ecbb78c0 803 PRFIELD(clock_snapshot->clock_class));
834e9996
PP
804 SET_TMP_PREFIX("clock-class-");
805 format_clock_class(buf_ch, false, tmp_prefix,
ecbb78c0 806 clock_snapshot->clock_class);
834e9996 807 }
57ffc2f1
PP
808}
809
810static inline void format_value(char **buf_ch, bool extended,
10b7a2e4 811 const char *prefix, const struct bt_value *value)
57ffc2f1
PP
812{
813 BUF_APPEND(", %stype=%s",
17582c6d 814 PRFIELD(bt_common_value_type_string(bt_value_get_type(value))));
57ffc2f1
PP
815
816 if (!extended) {
817 return;
818 }
819
820 switch (bt_value_get_type(value)) {
821 case BT_VALUE_TYPE_BOOL:
822 {
b5cdc106 823 bt_bool val = bt_value_bool_get(value);
57ffc2f1 824
57ffc2f1
PP
825 BUF_APPEND(", %svalue=%d", PRFIELD(val));
826 break;
827 }
68d9d039 828 case BT_VALUE_TYPE_UNSIGNED_INTEGER:
57ffc2f1 829 {
68d9d039
PP
830 BUF_APPEND(", %svalue=%" PRIu64,
831 PRFIELD(bt_value_unsigned_integer_get(value)));
832 break;
833 }
834 case BT_VALUE_TYPE_SIGNED_INTEGER:
835 {
836 BUF_APPEND(", %svalue=%" PRId64,
837 PRFIELD(bt_value_signed_integer_get(value)));
57ffc2f1
PP
838 break;
839 }
944421ed 840 case BT_VALUE_TYPE_REAL:
57ffc2f1 841 {
b5cdc106 842 double val = bt_value_real_get(value);
57ffc2f1 843
57ffc2f1
PP
844 BUF_APPEND(", %svalue=%f", PRFIELD(val));
845 break;
846 }
847 case BT_VALUE_TYPE_STRING:
848 {
b5cdc106 849 const char *val = bt_value_string_get(value);
57ffc2f1 850
57ffc2f1
PP
851 BUF_APPEND(", %spartial-value=\"%.32s\"", PRFIELD(val));
852 break;
853 }
854 case BT_VALUE_TYPE_ARRAY:
855 {
44514773 856 int64_t count = bt_value_array_get_size(value);
57ffc2f1 857
8b45963b 858 BT_ASSERT(count >= 0);
57ffc2f1
PP
859 BUF_APPEND(", %selement-count=%" PRId64, PRFIELD(count));
860 break;
861 }
862 case BT_VALUE_TYPE_MAP:
863 {
44514773 864 int64_t count = bt_value_map_get_size(value);
57ffc2f1 865
8b45963b 866 BT_ASSERT(count >= 0);
57ffc2f1
PP
867 BUF_APPEND(", %selement-count=%" PRId64, PRFIELD(count));
868 break;
869 }
870 default:
871 break;
872 }
873}
874
b09a5592
PP
875static inline void format_message(char **buf_ch, bool extended,
876 const char *prefix, const struct bt_message *msg)
57ffc2f1 877{
ed47d568 878 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
879
880 BUF_APPEND(", %stype=%s",
b09a5592 881 PRFIELD(bt_message_type_string(msg->type)));
57ffc2f1
PP
882
883 if (!extended) {
884 return;
885 }
886
f7c3ac09 887 BUF_APPEND(", %sis-frozen=%d, %sgraph-addr=%p",
b09a5592 888 PRFIELD(msg->frozen), PRFIELD(msg->graph));
57ffc2f1 889
b09a5592
PP
890 switch (msg->type) {
891 case BT_MESSAGE_TYPE_EVENT:
57ffc2f1 892 {
b09a5592
PP
893 const struct bt_message_event *msg_event =
894 (const void *) msg;
57ffc2f1 895
b09a5592 896 if (msg_event->event) {
834e9996 897 SET_TMP_PREFIX("event-");
a1f053a9
PP
898 format_event(buf_ch, true, tmp_prefix,
899 msg_event->event);
834e9996
PP
900 }
901
7370b11d
PP
902 if (msg_event->default_cs) {
903 SET_TMP_PREFIX("default-cs-");
904 format_clock_snapshot(buf_ch, true, tmp_prefix,
905 msg_event->default_cs);
906 }
907
57ffc2f1
PP
908 break;
909 }
b09a5592 910 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
a1f053a9 911 case BT_MESSAGE_TYPE_STREAM_END:
57ffc2f1 912 {
a1f053a9 913 const struct bt_message_stream *msg_stream = (const void *) msg;
57ffc2f1 914
b09a5592 915 if (msg_stream->stream) {
834e9996 916 SET_TMP_PREFIX("stream-");
a1f053a9
PP
917 format_stream(buf_ch, true, tmp_prefix,
918 msg_stream->stream);
834e9996
PP
919 }
920
57ffc2f1
PP
921 break;
922 }
a1f053a9
PP
923 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_BEGINNING:
924 case BT_MESSAGE_TYPE_STREAM_ACTIVITY_END:
57ffc2f1 925 {
a1f053a9 926 const struct bt_message_stream_activity *msg_stream_activity =
b09a5592 927 (const void *) msg;
57ffc2f1 928
a1f053a9 929 if (msg_stream_activity->stream) {
834e9996 930 SET_TMP_PREFIX("stream-");
a1f053a9
PP
931 format_stream(buf_ch, true, tmp_prefix,
932 msg_stream_activity->stream);
834e9996
PP
933 }
934
a1f053a9
PP
935 BUF_APPEND(", %sdefault-cs-state=%s",
936 PRFIELD(bt_message_stream_activity_clock_snapshot_state_string(
937 msg_stream_activity->default_cs_state)));
57ffc2f1 938
a1f053a9
PP
939 if (msg_stream_activity->default_cs) {
940 SET_TMP_PREFIX("default-cs-");
941 format_clock_snapshot(buf_ch, true, tmp_prefix,
942 msg_stream_activity->default_cs);
834e9996
PP
943 }
944
57ffc2f1
PP
945 break;
946 }
a1f053a9 947 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
b09a5592 948 case BT_MESSAGE_TYPE_PACKET_END:
57ffc2f1 949 {
a1f053a9 950 const struct bt_message_packet *msg_packet = (const void *) msg;
57ffc2f1 951
b09a5592 952 if (msg_packet->packet) {
834e9996 953 SET_TMP_PREFIX("packet-");
a1f053a9
PP
954 format_packet(buf_ch, true, tmp_prefix,
955 msg_packet->packet);
834e9996
PP
956 }
957
7370b11d
PP
958 if (msg_packet->default_cs) {
959 SET_TMP_PREFIX("default-cs-");
960 format_clock_snapshot(buf_ch, true, tmp_prefix,
961 msg_packet->default_cs);
962 }
963
57ffc2f1
PP
964 break;
965 }
8f1a1bbb 966 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
2df5d26f 967 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
8f1a1bbb
PP
968 {
969 const struct bt_message_discarded_items *msg_disc_items =
970 (const void *) msg;
971
972 if (msg_disc_items->stream) {
973 SET_TMP_PREFIX("stream-");
974 format_stream(buf_ch, true, tmp_prefix,
975 msg_disc_items->stream);
976 }
977
978 if (msg_disc_items->default_begin_cs) {
979 SET_TMP_PREFIX("default-begin-cs-");
980 format_clock_snapshot(buf_ch, true, tmp_prefix,
981 msg_disc_items->default_begin_cs);
982 }
983
984 if (msg_disc_items->default_end_cs) {
985 SET_TMP_PREFIX("default-end-cs-");
986 format_clock_snapshot(buf_ch, true, tmp_prefix,
987 msg_disc_items->default_end_cs);
988 }
989
990 if (msg_disc_items->count.base.avail) {
991 BUF_APPEND(", %scount=%" PRIu64,
992 PRFIELD(msg_disc_items->count.value));
993 }
994
995 break;
996 }
57ffc2f1
PP
997 default:
998 break;
999 }
1000}
1001
1002static inline void format_plugin_so_shared_lib_handle(char **buf_ch,
1003 const char *prefix,
10b7a2e4 1004 const struct bt_plugin_so_shared_lib_handle *handle)
57ffc2f1
PP
1005{
1006 BUF_APPEND(", %saddr=%p", PRFIELD(handle));
1007
1008 if (handle->path) {
834e9996 1009 BUF_APPEND(", %spath=\"%s\"", PRFIELD_GSTRING(handle->path));
57ffc2f1
PP
1010 }
1011}
1012
1013static inline void format_component_class(char **buf_ch, bool extended,
10b7a2e4
PP
1014 const char *prefix,
1015 const struct bt_component_class *comp_class)
57ffc2f1 1016{
ed47d568 1017 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
1018
1019 BUF_APPEND(", %stype=%s, %sname=\"%s\"",
1020 PRFIELD(bt_component_class_type_string(comp_class->type)),
834e9996 1021 PRFIELD_GSTRING(comp_class->name));
57ffc2f1
PP
1022
1023 if (comp_class->description) {
1024 BUF_APPEND(", %spartial-descr=\"%.32s\"",
834e9996 1025 PRFIELD_GSTRING(comp_class->description));
57ffc2f1
PP
1026 }
1027
1028 if (!extended) {
1029 return;
1030 }
1031
1032 BUF_APPEND(", %sis-frozen=%d", PRFIELD(comp_class->frozen));
1033
1034 if (comp_class->so_handle) {
1035 SET_TMP_PREFIX("so-handle-");
1036 format_plugin_so_shared_lib_handle(buf_ch, tmp_prefix,
1037 comp_class->so_handle);
1038 }
1039}
1040
1041static inline void format_component(char **buf_ch, bool extended,
10b7a2e4 1042 const char *prefix, const struct bt_component *component)
57ffc2f1 1043{
ed47d568 1044 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1 1045
834e9996
PP
1046 BUF_APPEND(", %sname=\"%s\"",
1047 PRFIELD_GSTRING(component->name));
1048
1049 if (component->class) {
1050 SET_TMP_PREFIX("class-");
1051 format_component_class(buf_ch, extended, tmp_prefix,
1052 component->class);
1053 }
57ffc2f1
PP
1054
1055 if (!extended) {
1056 return;
1057 }
1058
a6918753
PP
1059 if (component->input_ports) {
1060 BUF_APPEND(", %sinput-port-count=%u",
1061 PRFIELD(component->input_ports->len));
1062 }
1063
1064 if (component->output_ports) {
1065 BUF_APPEND(", %soutput-port-count=%u",
1066 PRFIELD(component->output_ports->len));
1067 }
57ffc2f1
PP
1068}
1069
1070static inline void format_port(char **buf_ch, bool extended,
10b7a2e4 1071 const char *prefix, const struct bt_port *port)
57ffc2f1 1072{
ed47d568 1073 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
1074
1075 BUF_APPEND(", %stype=%s, %sname=\"%s\"",
1076 PRFIELD(bt_port_type_string(port->type)),
834e9996 1077 PRFIELD_GSTRING(port->name));
57ffc2f1
PP
1078
1079 if (!extended) {
1080 return;
1081 }
1082
1083 if (port->connection) {
1084 SET_TMP_PREFIX("conn-");
1085 format_connection(buf_ch, false, tmp_prefix, port->connection);
1086 }
1087}
1088
1089static inline void format_connection(char **buf_ch, bool extended,
10b7a2e4 1090 const char *prefix, const struct bt_connection *connection)
57ffc2f1 1091{
ed47d568 1092 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
1093
1094 if (!extended) {
1095 return;
1096 }
1097
1098 if (connection->upstream_port) {
1099 SET_TMP_PREFIX("upstream-port-");
1100 format_port(buf_ch, false, tmp_prefix,
1101 connection->upstream_port);
1102 }
1103
1104 if (connection->downstream_port) {
1105 SET_TMP_PREFIX("downstream-port-");
1106 format_port(buf_ch, false, tmp_prefix,
1107 connection->downstream_port);
1108 }
1109}
1110
1111static inline void format_graph(char **buf_ch, bool extended,
10b7a2e4 1112 const char *prefix, const struct bt_graph *graph)
57ffc2f1 1113{
ed47d568 1114 char tmp_prefix[TMP_PREFIX_LEN];
f7c3ac09 1115
1043fdea
PP
1116 BUF_APPEND(", %sis-canceled=%d, %scan-consume=%d, "
1117 "%sconfig-state=%s",
1118 PRFIELD(graph->canceled),
1119 PRFIELD(graph->can_consume),
1120 PRFIELD(bt_graph_configuration_state_string(graph->config_state)));
57ffc2f1
PP
1121
1122 if (!extended) {
1123 return;
1124 }
1125
a6918753
PP
1126 if (graph->components) {
1127 BUF_APPEND(", %scomp-count=%u",
1128 PRFIELD(graph->components->len));
1129 }
1130
1131 if (graph->connections) {
1132 BUF_APPEND(", %sconn-count=%u",
1133 PRFIELD(graph->connections->len));
1134 }
f7c3ac09
PP
1135
1136 SET_TMP_PREFIX("en-pool-");
09f603c6 1137 format_object_pool(buf_ch, extended, tmp_prefix,
b09a5592 1138 &graph->event_msg_pool);
f7c3ac09 1139 SET_TMP_PREFIX("pbn-pool-");
09f603c6 1140 format_object_pool(buf_ch, extended, tmp_prefix,
b09a5592 1141 &graph->packet_begin_msg_pool);
f7c3ac09 1142 SET_TMP_PREFIX("pen-pool-");
09f603c6 1143 format_object_pool(buf_ch, extended, tmp_prefix,
b09a5592 1144 &graph->packet_end_msg_pool);
57ffc2f1
PP
1145}
1146
b09a5592 1147static inline void format_message_iterator(char **buf_ch,
57ffc2f1 1148 bool extended, const char *prefix,
b09a5592 1149 const struct bt_message_iterator *iterator)
57ffc2f1
PP
1150{
1151 const char *type;
ed47d568 1152 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1 1153
b09a5592
PP
1154 if (iterator->type == BT_MESSAGE_ITERATOR_TYPE_SELF_COMPONENT_PORT_INPUT) {
1155 type = "BT_MESSAGE_ITERATOR_TYPE_SELF_COMPONENT_PORT_INPUT";
1156 } else if (iterator->type == BT_MESSAGE_ITERATOR_TYPE_PORT_OUTPUT) {
1157 type = "BT_MESSAGE_ITERATOR_TYPE_PORT_OUTPUT";
57ffc2f1
PP
1158 } else {
1159 type = "(unknown)";
1160 }
1161
1162 BUF_APPEND(", %stype=%s", PRFIELD(type));
1163
1164 switch (iterator->type) {
b09a5592 1165 case BT_MESSAGE_ITERATOR_TYPE_SELF_COMPONENT_PORT_INPUT:
57ffc2f1 1166 {
b09a5592 1167 const struct bt_self_component_port_input_message_iterator *
10b7a2e4 1168 port_in_iter = (const void *) iterator;
57ffc2f1 1169
834e9996 1170 if (port_in_iter->upstream_component) {
57ffc2f1
PP
1171 SET_TMP_PREFIX("upstream-comp-");
1172 format_component(buf_ch, false, tmp_prefix,
834e9996 1173 port_in_iter->upstream_component);
57ffc2f1
PP
1174 }
1175
834e9996 1176 if (port_in_iter->upstream_port) {
57ffc2f1
PP
1177 SET_TMP_PREFIX("upstream-port-");
1178 format_port(buf_ch, false, tmp_prefix,
834e9996 1179 port_in_iter->upstream_port);
57ffc2f1
PP
1180 }
1181
834e9996 1182 if (port_in_iter->connection) {
57ffc2f1
PP
1183 SET_TMP_PREFIX("upstream-conn-");
1184 format_connection(buf_ch, false, tmp_prefix,
834e9996 1185 port_in_iter->connection);
57ffc2f1
PP
1186 }
1187 break;
1188 }
b09a5592 1189 case BT_MESSAGE_ITERATOR_TYPE_PORT_OUTPUT:
57ffc2f1 1190 {
b09a5592 1191 const struct bt_port_output_message_iterator *port_out_iter =
10b7a2e4 1192 (const void *) iterator;
57ffc2f1 1193
834e9996
PP
1194 if (port_out_iter->graph) {
1195 SET_TMP_PREFIX("graph-");
1196 format_graph(buf_ch, false, tmp_prefix,
1197 port_out_iter->graph);
1198 }
1199
1200 if (port_out_iter->colander) {
1201 SET_TMP_PREFIX("colander-comp-");
1202 format_component(buf_ch, false, tmp_prefix,
1203 (void *) port_out_iter->colander);
1204 }
1205
57ffc2f1
PP
1206 break;
1207 }
1208 default:
1209 break;
1210 }
1211}
1212
1213static inline void format_plugin(char **buf_ch, bool extended,
3a2cb327 1214 const char *prefix, const struct bt_plugin *plugin)
57ffc2f1 1215{
ed47d568 1216 char tmp_prefix[TMP_PREFIX_LEN];
57ffc2f1
PP
1217
1218 BUF_APPEND(", %stype=%s", PRFIELD(bt_plugin_type_string(plugin->type)));
1219
1220 if (plugin->info.path_set) {
1221 BUF_APPEND(", %spath=\"%s\"",
834e9996 1222 PRFIELD_GSTRING(plugin->info.path));
57ffc2f1
PP
1223 }
1224
1225 if (plugin->info.name_set) {
1226 BUF_APPEND(", %sname=\"%s\"",
834e9996 1227 PRFIELD_GSTRING(plugin->info.name));
57ffc2f1
PP
1228 }
1229
1230 if (!extended) {
1231 return;
1232 }
1233
1234 if (plugin->info.author_set) {
1235 BUF_APPEND(", %sauthor=\"%s\"",
834e9996 1236 PRFIELD_GSTRING(plugin->info.author));
57ffc2f1
PP
1237 }
1238
1239 if (plugin->info.license_set) {
1240 BUF_APPEND(", %slicense=\"%s\"",
834e9996 1241 PRFIELD_GSTRING(plugin->info.license));
57ffc2f1
PP
1242 }
1243
1244 if (plugin->info.version_set) {
1245 BUF_APPEND(", %sversion=%u.%u.%u%s",
1246 PRFIELD(plugin->info.version.major),
1247 plugin->info.version.minor,
1248 plugin->info.version.patch,
1249 plugin->info.version.extra ?
1250 plugin->info.version.extra->str : "");
1251 }
1252
834e9996
PP
1253 BUF_APPEND(", %ssrc-comp-class-count=%u, %sflt-comp-class-count=%u, "
1254 "%ssink-comp-class-count=%u",
1255 PRFIELD(plugin->src_comp_classes->len),
1256 PRFIELD(plugin->flt_comp_classes->len),
1257 PRFIELD(plugin->sink_comp_classes->len));
57ffc2f1
PP
1258
1259 if (plugin->spec_data) {
10b7a2e4
PP
1260 const struct bt_plugin_so_spec_data *spec_data =
1261 (const void *) plugin->spec_data;
57ffc2f1
PP
1262
1263 if (spec_data->shared_lib_handle) {
1264 SET_TMP_PREFIX("so-handle-");
1265 format_plugin_so_shared_lib_handle(buf_ch, tmp_prefix,
1266 spec_data->shared_lib_handle);
1267 }
1268 }
1269}
1270
57ffc2f1
PP
1271static inline void handle_conversion_specifier_bt(void *priv_data,
1272 char **buf_ch, size_t avail_size,
1273 const char **out_fmt_ch, va_list *args)
1274{
1275 const char *fmt_ch = *out_fmt_ch;
1276 bool extended = false;
1277 char prefix[64];
1278 char *prefix_ch = prefix;
10b7a2e4 1279 const void *obj;
57ffc2f1
PP
1280
1281 /* skip "%!" */
1282 fmt_ch += 2;
1283
7b33a0e0
PP
1284 if (*fmt_ch == 'u') {
1285 /* UUID */
1286 obj = va_arg(*args, void *);
1287 format_uuid(buf_ch, obj);
1288 goto update_fmt;
1289 }
1290
57ffc2f1
PP
1291 if (*fmt_ch == '[') {
1292 /* local prefix */
1293 fmt_ch++;
1294
1295 while (true) {
1296 if (*fmt_ch == ']') {
1297 *prefix_ch = '\0';
1298 fmt_ch++;
1299 break;
1300 }
1301
1302 *prefix_ch = *fmt_ch;
1303 prefix_ch++;
1304 fmt_ch++;
1305 }
1306 }
1307
1308 *prefix_ch = '\0';
1309
1310 if (*fmt_ch == '+') {
1311 extended = true;
1312 fmt_ch++;
1313 }
1314
1315 obj = va_arg(*args, void *);
1316 BUF_APPEND("%saddr=%p", prefix, obj);
1317
1318 if (!obj) {
1319 goto update_fmt;
1320 }
1321
18acc6f8
PP
1322 switch (*fmt_ch) {
1323 case 'F':
939190b3 1324 format_field_class(buf_ch, extended, prefix, obj);
57ffc2f1 1325 break;
18acc6f8
PP
1326 case 'f':
1327 format_field(buf_ch, extended, prefix, obj);
1328 break;
1329 case 'P':
1330 format_field_path(buf_ch, extended, prefix, obj);
1331 break;
1332 case 'E':
1333 format_event_class(buf_ch, extended, prefix, obj);
1334 break;
1335 case 'e':
1336 format_event(buf_ch, extended, prefix, obj);
1337 break;
1338 case 'S':
1339 format_stream_class(buf_ch, extended, prefix, obj);
57ffc2f1 1340 break;
18acc6f8
PP
1341 case 's':
1342 format_stream(buf_ch, extended, prefix, obj);
1343 break;
1344 case 'a':
1345 format_packet(buf_ch, extended, prefix, obj);
1346 break;
1347 case 't':
1348 format_trace(buf_ch, extended, prefix, obj);
1349 break;
10b7a2e4
PP
1350 case 'T':
1351 format_trace_class(buf_ch, extended, prefix, obj);
1352 break;
18acc6f8
PP
1353 case 'K':
1354 format_clock_class(buf_ch, extended, prefix, obj);
1355 break;
1356 case 'k':
ecbb78c0 1357 format_clock_snapshot(buf_ch, extended, prefix, obj);
18acc6f8
PP
1358 break;
1359 case 'v':
1360 format_value(buf_ch, extended, prefix, obj);
1361 break;
1362 case 'n':
b09a5592 1363 format_message(buf_ch, extended, prefix, obj);
18acc6f8
PP
1364 break;
1365 case 'i':
b09a5592 1366 format_message_iterator(buf_ch, extended, prefix, obj);
18acc6f8
PP
1367 break;
1368 case 'C':
1369 format_component_class(buf_ch, extended, prefix, obj);
1370 break;
1371 case 'c':
1372 format_component(buf_ch, extended, prefix, obj);
1373 break;
1374 case 'p':
1375 format_port(buf_ch, extended, prefix, obj);
1376 break;
1377 case 'x':
1378 format_connection(buf_ch, extended, prefix, obj);
1379 break;
7b33a0e0 1380 case 'l':
18acc6f8
PP
1381 format_plugin(buf_ch, extended, prefix, obj);
1382 break;
1383 case 'g':
1384 format_graph(buf_ch, extended, prefix, obj);
1385 break;
1386 case 'o':
1387 format_object_pool(buf_ch, extended, prefix, obj);
1388 break;
1389 case 'O':
1390 format_object(buf_ch, extended, prefix, obj);
1391 break;
1392 default:
1393 abort();
57ffc2f1
PP
1394 }
1395
1396update_fmt:
1397 fmt_ch++;
1398 *out_fmt_ch = fmt_ch;
1399}
1400
57ffc2f1
PP
1401void bt_lib_log(const char *func, const char *file, unsigned line,
1402 int lvl, const char *tag, const char *fmt, ...)
1403{
1404 va_list args;
1405
8b45963b 1406 BT_ASSERT(fmt);
57ffc2f1
PP
1407 va_start(args, fmt);
1408 bt_common_custom_vsnprintf(lib_logging_buf, LIB_LOGGING_BUF_SIZE, '!',
1409 handle_conversion_specifier_bt, NULL, fmt, &args);
1410 va_end(args);
1411 _bt_log_write_d(func, file, line, lvl, tag, "%s", lib_logging_buf);
1412}
This page took 0.157429 seconds and 4 git commands to generate.