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