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