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