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