2 * Copyright 2018 Philippe Proulx <pproulx@efficios.com>
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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
23 #define BT_LOG_TAG "LIB/LIB-LOGGING"
24 #include "lib/logging.h"
34 #include "common/common.h"
35 #include "common/uuid.h"
36 #include <babeltrace2/babeltrace.h>
39 #include "assert-pre.h"
40 #include "assert-post.h"
42 #include "integer-range-set.h"
43 #include "object-pool.h"
44 #include "graph/interrupter.h"
45 #include "graph/component-class.h"
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"
58 #include "graph/message/stream.h"
59 #include "graph/port.h"
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"
76 #include "assert-pre.h"
78 #define LIB_LOGGING_BUF_SIZE (4096 * 4)
80 static __thread
char lib_logging_buf
[LIB_LOGGING_BUF_SIZE
];
82 #define BUF_APPEND(_fmt, ...) \
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__); \
88 BT_ASSERT(_count >= 0); \
89 *buf_ch += MIN(_count, _size); \
90 if (*buf_ch >= lib_logging_buf + LIB_LOGGING_BUF_SIZE - 1) { \
95 #define BUF_APPEND_UUID(_uuid) \
97 BUF_APPEND(", %suuid=", prefix); \
98 format_uuid(buf_ch, (_uuid)); \
101 #define PRFIELD(_expr) prefix, (_expr)
103 #define PRFIELD_GSTRING(_expr) PRFIELD((_expr) ? (_expr)->str : NULL)
105 #define TMP_PREFIX_LEN 128
106 #define SET_TMP_PREFIX(_prefix2) \
109 snprintf(tmp_prefix, TMP_PREFIX_LEN - 1, "%s%s", \
110 prefix, (_prefix2)); \
112 if (snprintf_ret < 0 || snprintf_ret >= TMP_PREFIX_LEN - 1) { \
116 tmp_prefix[TMP_PREFIX_LEN - 1] = '\0'; \
119 static inline void format_component(char **buf_ch
, bool extended
,
120 const char *prefix
, const struct bt_component
*component
);
122 static inline void format_port(char **buf_ch
, bool extended
,
123 const char *prefix
, const struct bt_port
*port
);
125 static inline void format_connection(char **buf_ch
, bool extended
,
126 const char *prefix
, const struct bt_connection
*connection
);
128 static inline void format_clock_snapshot(char **buf_ch
, bool extended
,
129 const char *prefix
, const struct bt_clock_snapshot
*clock_snapshot
);
131 static inline void format_field_path(char **buf_ch
, bool extended
,
132 const char *prefix
, const struct bt_field_path
*field_path
);
134 static inline void format_object(char **buf_ch
, bool extended
,
135 const char *prefix
, const struct bt_object
*obj
)
137 BUF_APPEND(", %sref-count=%llu", prefix
, obj
->ref_count
);
140 static inline void format_uuid(char **buf_ch
, bt_uuid uuid
)
142 BUF_APPEND("\"" BT_UUID_FMT
"\"", BT_UUID_FMT_VALUES(uuid
));
145 static inline void format_object_pool(char **buf_ch
, bool extended
,
146 const char *prefix
, const struct bt_object_pool
*pool
)
148 BUF_APPEND(", %ssize=%zu", PRFIELD(pool
->size
));
151 BUF_APPEND(", %scap=%u", PRFIELD(pool
->objects
->len
));
155 static inline void format_integer_field_class(char **buf_ch
,
156 bool extended
, const char *prefix
,
157 const struct bt_field_class
*field_class
)
159 const struct bt_field_class_integer
*int_fc
=
160 (const void *) field_class
;
162 BUF_APPEND(", %srange-size=%" PRIu64
", %sbase=%s",
163 PRFIELD(int_fc
->range
),
164 PRFIELD(bt_common_field_class_integer_preferred_display_base_string(int_fc
->base
)));
167 static inline void format_array_field_class(char **buf_ch
,
168 bool extended
, const char *prefix
,
169 const struct bt_field_class
*field_class
)
171 const struct bt_field_class_array
*array_fc
=
172 (const void *) field_class
;
174 BUF_APPEND(", %selement-fc-addr=%p, %selement-fc-type=%s",
175 PRFIELD(array_fc
->element_fc
),
176 PRFIELD(bt_common_field_class_type_string(array_fc
->element_fc
->type
)));
179 static inline void format_field_class(char **buf_ch
, bool extended
,
180 const char *prefix
, const struct bt_field_class
*field_class
)
182 char tmp_prefix
[TMP_PREFIX_LEN
];
184 BUF_APPEND(", %stype=%s",
185 PRFIELD(bt_common_field_class_type_string(field_class
->type
)));
188 BUF_APPEND(", %sis-frozen=%d", PRFIELD(field_class
->frozen
));
189 BUF_APPEND(", %sis-part-of-trace-class=%d",
190 PRFIELD(field_class
->part_of_trace_class
));
195 switch (field_class
->type
) {
196 case BT_FIELD_CLASS_TYPE_BIT_ARRAY
:
198 const struct bt_field_class_bit_array
*ba_fc
=
199 (const void *) field_class
;
201 BUF_APPEND(", %slength=%" PRIu64
, PRFIELD(ba_fc
->length
));
204 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER
:
205 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER
:
207 format_integer_field_class(buf_ch
, extended
, prefix
, field_class
);
210 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION
:
211 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION
:
213 const struct bt_field_class_enumeration
*enum_fc
=
214 (const void *) field_class
;
216 format_integer_field_class(buf_ch
, extended
, prefix
, field_class
);
217 BUF_APPEND(", %smapping-count=%u",
218 PRFIELD(enum_fc
->mappings
->len
));
221 case BT_FIELD_CLASS_TYPE_STRUCTURE
:
223 const struct bt_field_class_structure
*struct_fc
=
224 (const void *) field_class
;
226 if (struct_fc
->common
.named_fcs
) {
227 BUF_APPEND(", %smember-count=%u",
228 PRFIELD(struct_fc
->common
.named_fcs
->len
));
233 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY
:
235 const struct bt_field_class_array_static
*array_fc
=
236 (const void *) field_class
;
238 format_array_field_class(buf_ch
, extended
, prefix
, field_class
);
239 BUF_APPEND(", %slength=%" PRIu64
, PRFIELD(array_fc
->length
));
242 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY
:
244 const struct bt_field_class_array_dynamic
*array_fc
=
245 (const void *) field_class
;
247 format_array_field_class(buf_ch
, extended
, prefix
, field_class
);
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
);
255 if (array_fc
->length_field_path
) {
256 SET_TMP_PREFIX("length-field-path-");
257 format_field_path(buf_ch
, extended
, tmp_prefix
,
258 array_fc
->length_field_path
);
263 case BT_FIELD_CLASS_TYPE_OPTION_WITHOUT_SELECTOR
:
264 case BT_FIELD_CLASS_TYPE_OPTION_WITH_BOOL_SELECTOR
:
265 case BT_FIELD_CLASS_TYPE_OPTION_WITH_UNSIGNED_INTEGER_SELECTOR
:
266 case BT_FIELD_CLASS_TYPE_OPTION_WITH_SIGNED_INTEGER_SELECTOR
:
268 const struct bt_field_class_option
*opt_fc
=
269 (const void *) field_class
;
271 BUF_APPEND(", %scontent-fc-addr=%p, %scontent-fc-type=%s",
272 PRFIELD(opt_fc
->content_fc
),
273 PRFIELD(bt_common_field_class_type_string(opt_fc
->content_fc
->type
)));
275 if (field_class
->type
!=
276 BT_FIELD_CLASS_TYPE_OPTION_WITHOUT_SELECTOR
) {
277 const struct bt_field_class_option_with_selector
*opt_with_sel_fc
=
278 (const void *) field_class
;
280 if (opt_with_sel_fc
->selector_fc
) {
281 SET_TMP_PREFIX("selector-fc-");
282 format_field_class(buf_ch
, extended
, tmp_prefix
,
283 opt_with_sel_fc
->selector_fc
);
286 if (opt_with_sel_fc
->selector_field_path
) {
287 SET_TMP_PREFIX("selector-field-path-");
288 format_field_path(buf_ch
, extended
, tmp_prefix
,
289 opt_with_sel_fc
->selector_field_path
);
295 case BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR
:
296 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR
:
297 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR
:
299 const struct bt_field_class_variant
*var_fc
=
300 (const void *) field_class
;
302 if (var_fc
->common
.named_fcs
) {
303 BUF_APPEND(", %soption-count=%u",
304 PRFIELD(var_fc
->common
.named_fcs
->len
));
307 if (field_class
->type
== BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR
||
308 field_class
->type
== BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR
) {
309 const struct bt_field_class_variant_with_selector
*var_with_sel_fc
=
310 (const void *) var_fc
;
312 if (var_with_sel_fc
->selector_fc
) {
313 SET_TMP_PREFIX("selector-fc-");
314 format_field_class(buf_ch
, extended
, tmp_prefix
,
315 var_with_sel_fc
->selector_fc
);
318 if (var_with_sel_fc
->selector_field_path
) {
319 SET_TMP_PREFIX("selector-field-path-");
320 format_field_path(buf_ch
, extended
, tmp_prefix
,
321 var_with_sel_fc
->selector_field_path
);
332 static inline void format_field_integer_extended(char **buf_ch
,
333 const char *prefix
, const struct bt_field
*field
)
335 const struct bt_field_integer
*integer
= (void *) field
;
336 const struct bt_field_class_integer
*field_class
=
337 (void *) field
->class;
338 const char *fmt
= NULL
;
340 BT_ASSERT(field_class
);
342 if (field_class
->base
== BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL
) {
343 fmt
= ", %svalue=%" PRIo64
;
344 } else if (field_class
->base
== BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL
) {
345 fmt
= ", %svalue=%" PRIx64
;
348 if (field_class
->common
.type
== BT_FIELD_CLASS_TYPE_SIGNED_INTEGER
||
349 field_class
->common
.type
== BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION
) {
351 fmt
= ", %svalue=%" PRId64
;
354 BUF_APPEND(fmt
, PRFIELD(integer
->value
.i
));
357 fmt
= ", %svalue=%" PRIu64
;
360 BUF_APPEND(fmt
, PRFIELD(integer
->value
.u
));
364 static inline void format_field(char **buf_ch
, bool extended
,
365 const char *prefix
, const struct bt_field
*field
)
367 BUF_APPEND(", %sis-set=%d", PRFIELD(field
->is_set
));
370 BUF_APPEND(", %sis-frozen=%d", PRFIELD(field
->frozen
));
373 BUF_APPEND(", %sclass-addr=%p", PRFIELD(field
->class));
379 BUF_APPEND(", %sclass-type=%s",
380 PRFIELD(bt_common_field_class_type_string(field
->class->type
)));
382 if (!extended
|| !field
->is_set
) {
386 switch (field
->class->type
) {
387 case BT_FIELD_CLASS_TYPE_BOOL
:
389 const struct bt_field_bool
*bool_field
= (const void *) field
;
391 BUF_APPEND(", %svalue=%d", PRFIELD(bool_field
->value
));
394 case BT_FIELD_CLASS_TYPE_BIT_ARRAY
:
396 const struct bt_field_bit_array
*ba_field
= (const void *) field
;
398 BUF_APPEND(", %svalue-as-int=%" PRIx64
,
399 PRFIELD(ba_field
->value_as_int
));
402 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER
:
403 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER
:
404 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION
:
405 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION
:
407 format_field_integer_extended(buf_ch
, prefix
, field
);
410 case BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL
:
411 case BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL
:
413 const struct bt_field_real
*real_field
= (const void *) field
;
415 BUF_APPEND(", %svalue=%f", PRFIELD(real_field
->value
));
418 case BT_FIELD_CLASS_TYPE_STRING
:
420 const struct bt_field_string
*str
= (const void *) field
;
423 BT_ASSERT(str
->buf
->data
);
424 BUF_APPEND(", %spartial-value=\"%.32s\"",
425 PRFIELD(str
->buf
->data
));
430 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY
:
431 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY
:
433 const struct bt_field_array
*array_field
= (const void *) field
;
435 BUF_APPEND(", %slength=%" PRIu64
, PRFIELD(array_field
->length
));
437 if (array_field
->fields
) {
438 BUF_APPEND(", %sallocated-length=%u",
439 PRFIELD(array_field
->fields
->len
));
444 case BT_FIELD_CLASS_TYPE_VARIANT_WITHOUT_SELECTOR
:
445 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_UNSIGNED_INTEGER_SELECTOR
:
446 case BT_FIELD_CLASS_TYPE_VARIANT_WITH_SIGNED_INTEGER_SELECTOR
:
448 const struct bt_field_variant
*var_field
= (const void *) field
;
450 BUF_APPEND(", %sselected-field-index=%" PRIu64
,
451 PRFIELD(var_field
->selected_index
));
459 static inline void format_field_path(char **buf_ch
, bool extended
,
460 const char *prefix
, const struct bt_field_path
*field_path
)
464 if (field_path
->items
) {
465 BT_ASSERT(field_path
->items
);
466 BUF_APPEND(", %sitem-count=%u",
467 PRFIELD(field_path
->items
->len
));
470 if (!extended
|| !field_path
->items
) {
474 BUF_APPEND(", %spath=[%s",
475 PRFIELD(bt_common_scope_string(field_path
->root
)));
477 for (i
= 0; i
< bt_field_path_get_item_count(field_path
); i
++) {
478 const struct bt_field_path_item
*fp_item
=
479 bt_field_path_borrow_item_by_index_const(field_path
, i
);
481 switch (bt_field_path_item_get_type(fp_item
)) {
482 case BT_FIELD_PATH_ITEM_TYPE_INDEX
:
483 BUF_APPEND(", %" PRIu64
,
484 bt_field_path_item_index_get_index(fp_item
));
486 case BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT
:
487 BUF_APPEND("%s", ", <CUR>");
494 BUF_APPEND("%s", "]");
497 static inline void format_trace_class(char **buf_ch
, bool extended
,
498 const char *prefix
, const struct bt_trace_class
*trace_class
)
504 BUF_APPEND(", %sis-frozen=%d", PRFIELD(trace_class
->frozen
));
506 if (trace_class
->stream_classes
) {
507 BUF_APPEND(", %sstream-class-count=%u",
508 PRFIELD(trace_class
->stream_classes
->len
));
511 BUF_APPEND(", %sassigns-auto-sc-id=%d",
512 PRFIELD(trace_class
->assigns_automatic_stream_class_id
));
515 static inline void format_trace(char **buf_ch
, bool extended
,
516 const char *prefix
, const struct bt_trace
*trace
)
518 char tmp_prefix
[TMP_PREFIX_LEN
];
520 if (trace
->name
.value
) {
521 BUF_APPEND(", %sname=\"%s\"", PRFIELD(trace
->name
.value
));
528 if (trace
->uuid
.value
) {
529 BUF_APPEND_UUID(trace
->uuid
.value
);
532 BUF_APPEND(", %sis-frozen=%d", PRFIELD(trace
->frozen
));
534 if (trace
->streams
) {
535 BUF_APPEND(", %sstream-count=%u",
536 PRFIELD(trace
->streams
->len
));
543 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace
->class));
544 SET_TMP_PREFIX("trace-class-");
545 format_trace_class(buf_ch
, false, tmp_prefix
, trace
->class);
548 static inline void format_stream_class(char **buf_ch
, bool extended
,
550 const struct bt_stream_class
*stream_class
)
552 const struct bt_trace_class
*trace_class
;
553 char tmp_prefix
[TMP_PREFIX_LEN
];
555 BUF_APPEND(", %sid=%" PRIu64
, PRFIELD(stream_class
->id
));
557 if (stream_class
->name
.value
) {
558 BUF_APPEND(", %sname=\"%s\"",
559 PRFIELD(stream_class
->name
.value
));
566 BUF_APPEND(", %sis-frozen=%d", PRFIELD(stream_class
->frozen
));
568 if (stream_class
->event_classes
) {
569 BUF_APPEND(", %sevent-class-count=%u",
570 PRFIELD(stream_class
->event_classes
->len
));
573 BUF_APPEND(", %spacket-context-fc-addr=%p, "
574 "%sevent-common-context-fc-addr=%p",
575 PRFIELD(stream_class
->packet_context_fc
),
576 PRFIELD(stream_class
->event_common_context_fc
));
577 trace_class
= bt_stream_class_borrow_trace_class_inline(stream_class
);
582 BUF_APPEND(", %sassigns-auto-ec-id=%d, %sassigns-auto-stream-id=%d, "
583 "%ssupports-packets=%d, "
584 "%spackets-have-begin-default-cs=%d, "
585 "%spackets-have-end-default-cs=%d, "
586 "%ssupports-discarded-events=%d, "
587 "%sdiscarded-events-have-default-cs=%d, "
588 "%ssupports-discarded-packets=%d, "
589 "%sdiscarded-packets-have-default-cs=%d",
590 PRFIELD(stream_class
->assigns_automatic_event_class_id
),
591 PRFIELD(stream_class
->assigns_automatic_stream_id
),
592 PRFIELD(stream_class
->supports_packets
),
593 PRFIELD(stream_class
->packets_have_beginning_default_clock_snapshot
),
594 PRFIELD(stream_class
->packets_have_end_default_clock_snapshot
),
595 PRFIELD(stream_class
->supports_discarded_events
),
596 PRFIELD(stream_class
->discarded_events_have_default_clock_snapshots
),
597 PRFIELD(stream_class
->supports_discarded_packets
),
598 PRFIELD(stream_class
->discarded_packets_have_default_clock_snapshots
));
599 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class
));
600 SET_TMP_PREFIX("trace-class-");
601 format_trace_class(buf_ch
, false, tmp_prefix
, trace_class
);
602 SET_TMP_PREFIX("pcf-pool-");
603 format_object_pool(buf_ch
, extended
, tmp_prefix
,
604 &stream_class
->packet_context_field_pool
);
607 static inline void format_event_class(char **buf_ch
, bool extended
,
608 const char *prefix
, const struct bt_event_class
*event_class
)
610 const struct bt_stream_class
*stream_class
;
611 const struct bt_trace_class
*trace_class
;
612 char tmp_prefix
[TMP_PREFIX_LEN
];
614 BUF_APPEND(", %sid=%" PRIu64
, PRFIELD(event_class
->id
));
616 if (event_class
->name
.value
) {
617 BUF_APPEND(", %sname=\"%s\"",
618 PRFIELD(event_class
->name
.value
));
625 BUF_APPEND(", %sis-frozen=%d", PRFIELD(event_class
->frozen
));
627 if (event_class
->log_level
.base
.avail
) {
628 BUF_APPEND(", %slog-level=%s",
629 PRFIELD(bt_common_event_class_log_level_string(
630 (int) event_class
->log_level
.value
)));
633 if (event_class
->emf_uri
.value
) {
634 BUF_APPEND(", %semf-uri=\"%s\"",
635 PRFIELD(event_class
->emf_uri
.value
));
638 BUF_APPEND(", %sspecific-context-fc-addr=%p, %spayload-fc-addr=%p",
639 PRFIELD(event_class
->specific_context_fc
),
640 PRFIELD(event_class
->payload_fc
));
642 stream_class
= bt_event_class_borrow_stream_class_const(event_class
);
647 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class
));
648 SET_TMP_PREFIX("stream-class-");
649 format_stream_class(buf_ch
, false, tmp_prefix
, stream_class
);
650 trace_class
= bt_stream_class_borrow_trace_class_inline(stream_class
);
655 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class
));
656 SET_TMP_PREFIX("trace-class-");
657 format_trace_class(buf_ch
, false, tmp_prefix
, trace_class
);
658 SET_TMP_PREFIX("event-pool-");
659 format_object_pool(buf_ch
, extended
, tmp_prefix
,
660 &event_class
->event_pool
);
663 static inline void format_stream(char **buf_ch
, bool extended
,
664 const char *prefix
, const struct bt_stream
*stream
)
666 const struct bt_stream_class
*stream_class
;
667 const struct bt_trace_class
*trace_class
= NULL
;
668 const struct bt_trace
*trace
= NULL
;
669 char tmp_prefix
[TMP_PREFIX_LEN
];
671 BUF_APPEND(", %sid=%" PRIu64
, PRFIELD(stream
->id
));
673 if (stream
->name
.value
) {
674 BUF_APPEND(", %sname=\"%s\"", PRFIELD(stream
->name
.value
));
681 stream_class
= bt_stream_borrow_class_const(stream
);
683 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class
));
684 SET_TMP_PREFIX("stream-class-");
685 format_stream_class(buf_ch
, false, tmp_prefix
, stream_class
);
686 trace_class
= bt_stream_class_borrow_trace_class_inline(stream_class
);
690 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class
));
691 SET_TMP_PREFIX("trace-class-");
692 format_trace_class(buf_ch
, false, tmp_prefix
, trace_class
);
695 trace
= bt_stream_borrow_trace_inline(stream
);
697 BUF_APPEND(", %strace-addr=%p", PRFIELD(trace
));
698 SET_TMP_PREFIX("trace-");
699 format_trace(buf_ch
, false, tmp_prefix
, trace
);
702 SET_TMP_PREFIX("packet-pool-");
703 format_object_pool(buf_ch
, extended
, tmp_prefix
, &stream
->packet_pool
);
706 static inline void format_packet(char **buf_ch
, bool extended
,
707 const char *prefix
, const struct bt_packet
*packet
)
709 const struct bt_stream
*stream
;
710 const struct bt_trace_class
*trace_class
;
711 char tmp_prefix
[TMP_PREFIX_LEN
];
717 BUF_APPEND(", %sis-frozen=%d, %scontext-field-addr=%p",
718 PRFIELD(packet
->frozen
),
719 PRFIELD(packet
->context_field
? packet
->context_field
->field
: NULL
));
720 stream
= bt_packet_borrow_stream_const(packet
);
725 BUF_APPEND(", %sstream-addr=%p", PRFIELD(stream
));
726 SET_TMP_PREFIX("stream-");
727 format_stream(buf_ch
, false, tmp_prefix
, stream
);
728 trace_class
= (const struct bt_trace_class
*) bt_object_borrow_parent(&stream
->base
);
733 BUF_APPEND(", %strace-class-addr=%p", PRFIELD(trace_class
));
734 SET_TMP_PREFIX("trace-class-");
735 format_trace_class(buf_ch
, false, tmp_prefix
, trace_class
);
738 static inline void format_event(char **buf_ch
, bool extended
,
739 const char *prefix
, const struct bt_event
*event
)
741 const struct bt_trace_class
*trace_class
;
742 const struct bt_stream_class
*stream_class
;
743 char tmp_prefix
[TMP_PREFIX_LEN
];
749 BUF_APPEND(", %sis-frozen=%d, "
750 "%scommon-context-field-addr=%p, "
751 "%sspecific-context-field-addr=%p, "
752 "%spayload-field-addr=%p, ",
753 PRFIELD(event
->frozen
),
754 PRFIELD(event
->common_context_field
),
755 PRFIELD(event
->specific_context_field
),
756 PRFIELD(event
->payload_field
));
757 BUF_APPEND(", %sevent-class-addr=%p", PRFIELD(event
->class));
763 SET_TMP_PREFIX("event-class-");
764 format_event_class(buf_ch
, false, tmp_prefix
, event
->class);
765 stream_class
= bt_event_class_borrow_stream_class(event
->class);
767 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class
));
768 SET_TMP_PREFIX("stream-class-");
769 format_stream_class(buf_ch
, false, tmp_prefix
,
772 trace_class
= bt_stream_class_borrow_trace_class_inline(
775 BUF_APPEND(", %strace-class-addr=%p",
776 PRFIELD(trace_class
));
777 SET_TMP_PREFIX("trace-class-");
778 format_trace_class(buf_ch
, false, tmp_prefix
,
784 BUF_APPEND(", %sstream-addr=%p", PRFIELD(event
->stream
));
785 SET_TMP_PREFIX("stream-");
786 format_stream(buf_ch
, false, tmp_prefix
, event
->stream
);
790 BUF_APPEND(", %spacket-addr=%p", PRFIELD(event
->packet
));
791 SET_TMP_PREFIX("packet-");
792 format_packet(buf_ch
, false, tmp_prefix
, event
->packet
);
796 static inline void format_clock_class(char **buf_ch
, bool extended
,
797 const char *prefix
, const struct bt_clock_class
*clock_class
)
799 char tmp_prefix
[TMP_PREFIX_LEN
];
801 if (clock_class
->name
.value
) {
802 BUF_APPEND(", %sname=\"%s\"", PRFIELD(clock_class
->name
.value
));
805 BUF_APPEND(", %sfreq=%" PRIu64
, PRFIELD(clock_class
->frequency
));
811 if (clock_class
->description
.value
) {
812 BUF_APPEND(", %spartial-descr=\"%.32s\"",
813 PRFIELD(clock_class
->description
.value
));
816 if (clock_class
->uuid
.value
) {
817 BUF_APPEND_UUID(clock_class
->uuid
.value
);
820 BUF_APPEND(", %sis-frozen=%d, %sprecision=%" PRIu64
", "
821 "%soffset-s=%" PRId64
", "
822 "%soffset-cycles=%" PRIu64
", %sorigin-is-unix-epoch=%d, "
823 "%sbase-offset-ns=%" PRId64
,
824 PRFIELD(clock_class
->frozen
), PRFIELD(clock_class
->precision
),
825 PRFIELD(clock_class
->offset_seconds
),
826 PRFIELD(clock_class
->offset_cycles
),
827 PRFIELD(clock_class
->origin_is_unix_epoch
),
828 PRFIELD(clock_class
->base_offset
.value_ns
));
830 SET_TMP_PREFIX("cs-pool-");
831 format_object_pool(buf_ch
, extended
, tmp_prefix
,
832 &clock_class
->cs_pool
);
835 static inline void format_clock_snapshot(char **buf_ch
, bool extended
,
836 const char *prefix
, const struct bt_clock_snapshot
*clock_snapshot
)
838 char tmp_prefix
[TMP_PREFIX_LEN
];
839 BUF_APPEND(", %svalue=%" PRIu64
", %sns-from-origin=%" PRId64
,
840 PRFIELD(clock_snapshot
->value_cycles
),
841 PRFIELD(clock_snapshot
->ns_from_origin
));
847 BUF_APPEND(", %sis-set=%d", PRFIELD(clock_snapshot
->is_set
));
849 if (clock_snapshot
->clock_class
) {
850 BUF_APPEND(", %sclock-class-addr=%p",
851 PRFIELD(clock_snapshot
->clock_class
));
852 SET_TMP_PREFIX("clock-class-");
853 format_clock_class(buf_ch
, false, tmp_prefix
,
854 clock_snapshot
->clock_class
);
858 static inline void format_interrupter(char **buf_ch
, bool extended
,
859 const char *prefix
, const struct bt_interrupter
*intr
)
861 BUF_APPEND(", %sis-set=%d", PRFIELD(intr
->is_set
));
864 static inline void format_value(char **buf_ch
, bool extended
,
865 const char *prefix
, const struct bt_value
*value
)
867 BUF_APPEND(", %stype=%s",
868 PRFIELD(bt_common_value_type_string(bt_value_get_type(value
))));
874 switch (bt_value_get_type(value
)) {
875 case BT_VALUE_TYPE_BOOL
:
877 bt_bool val
= bt_value_bool_get(value
);
879 BUF_APPEND(", %svalue=%d", PRFIELD(val
));
882 case BT_VALUE_TYPE_UNSIGNED_INTEGER
:
884 BUF_APPEND(", %svalue=%" PRIu64
,
885 PRFIELD(bt_value_integer_unsigned_get(value
)));
888 case BT_VALUE_TYPE_SIGNED_INTEGER
:
890 BUF_APPEND(", %svalue=%" PRId64
,
891 PRFIELD(bt_value_integer_signed_get(value
)));
894 case BT_VALUE_TYPE_REAL
:
896 double val
= bt_value_real_get(value
);
898 BUF_APPEND(", %svalue=%f", PRFIELD(val
));
901 case BT_VALUE_TYPE_STRING
:
903 const char *val
= bt_value_string_get(value
);
905 BUF_APPEND(", %spartial-value=\"%.32s\"", PRFIELD(val
));
908 case BT_VALUE_TYPE_ARRAY
:
910 int64_t count
= bt_value_array_get_length(value
);
912 BT_ASSERT(count
>= 0);
913 BUF_APPEND(", %selement-count=%" PRId64
, PRFIELD(count
));
916 case BT_VALUE_TYPE_MAP
:
918 int64_t count
= bt_value_map_get_size(value
);
920 BT_ASSERT(count
>= 0);
921 BUF_APPEND(", %selement-count=%" PRId64
, PRFIELD(count
));
929 static inline void format_integer_range_set(char **buf_ch
, bool extended
,
931 const struct bt_integer_range_set
*range_set
)
933 BUF_APPEND(", %srange-count=%u", PRFIELD(range_set
->ranges
->len
));
939 BUF_APPEND(", %sis-frozen=%d", PRFIELD(range_set
->frozen
));
942 static inline void format_message(char **buf_ch
, bool extended
,
943 const char *prefix
, const struct bt_message
*msg
)
945 char tmp_prefix
[TMP_PREFIX_LEN
];
947 BUF_APPEND(", %stype=%s",
948 PRFIELD(bt_message_type_string(msg
->type
)));
954 BUF_APPEND(", %sis-frozen=%d, %sgraph-addr=%p",
955 PRFIELD(msg
->frozen
), PRFIELD(msg
->graph
));
958 case BT_MESSAGE_TYPE_EVENT
:
960 const struct bt_message_event
*msg_event
=
963 if (msg_event
->event
) {
964 SET_TMP_PREFIX("event-");
965 format_event(buf_ch
, true, tmp_prefix
,
969 if (msg_event
->default_cs
) {
970 SET_TMP_PREFIX("default-cs-");
971 format_clock_snapshot(buf_ch
, true, tmp_prefix
,
972 msg_event
->default_cs
);
977 case BT_MESSAGE_TYPE_STREAM_BEGINNING
:
978 case BT_MESSAGE_TYPE_STREAM_END
:
980 const struct bt_message_stream
*msg_stream
= (const void *) msg
;
982 if (msg_stream
->stream
) {
983 SET_TMP_PREFIX("stream-");
984 format_stream(buf_ch
, true, tmp_prefix
,
988 BUF_APPEND(", %sdefault-cs-state=%s",
989 PRFIELD(bt_message_stream_clock_snapshot_state_string(
990 msg_stream
->default_cs_state
)));
992 if (msg_stream
->default_cs_state
== BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN
) {
993 SET_TMP_PREFIX("default-cs-");
994 format_clock_snapshot(buf_ch
, true, tmp_prefix
,
995 msg_stream
->default_cs
);
1000 case BT_MESSAGE_TYPE_PACKET_BEGINNING
:
1001 case BT_MESSAGE_TYPE_PACKET_END
:
1003 const struct bt_message_packet
*msg_packet
= (const void *) msg
;
1005 if (msg_packet
->packet
) {
1006 SET_TMP_PREFIX("packet-");
1007 format_packet(buf_ch
, true, tmp_prefix
,
1008 msg_packet
->packet
);
1011 if (msg_packet
->default_cs
) {
1012 SET_TMP_PREFIX("default-cs-");
1013 format_clock_snapshot(buf_ch
, true, tmp_prefix
,
1014 msg_packet
->default_cs
);
1019 case BT_MESSAGE_TYPE_DISCARDED_EVENTS
:
1020 case BT_MESSAGE_TYPE_DISCARDED_PACKETS
:
1022 const struct bt_message_discarded_items
*msg_disc_items
=
1025 if (msg_disc_items
->stream
) {
1026 SET_TMP_PREFIX("stream-");
1027 format_stream(buf_ch
, true, tmp_prefix
,
1028 msg_disc_items
->stream
);
1031 if (msg_disc_items
->default_begin_cs
) {
1032 SET_TMP_PREFIX("begin-default-cs-");
1033 format_clock_snapshot(buf_ch
, true, tmp_prefix
,
1034 msg_disc_items
->default_begin_cs
);
1037 if (msg_disc_items
->default_end_cs
) {
1038 SET_TMP_PREFIX("end-default-cs-");
1039 format_clock_snapshot(buf_ch
, true, tmp_prefix
,
1040 msg_disc_items
->default_end_cs
);
1043 if (msg_disc_items
->count
.base
.avail
) {
1044 BUF_APPEND(", %scount=%" PRIu64
,
1045 PRFIELD(msg_disc_items
->count
.value
));
1055 static inline void format_plugin_so_shared_lib_handle(char **buf_ch
,
1057 const struct bt_plugin_so_shared_lib_handle
*handle
)
1059 BUF_APPEND(", %saddr=%p", PRFIELD(handle
));
1062 BUF_APPEND(", %spath=\"%s\"", PRFIELD_GSTRING(handle
->path
));
1066 static inline void format_component_class(char **buf_ch
, bool extended
,
1068 const struct bt_component_class
*comp_class
)
1070 char tmp_prefix
[TMP_PREFIX_LEN
];
1072 BUF_APPEND(", %stype=%s, %sname=\"%s\"",
1073 PRFIELD(bt_component_class_type_string(comp_class
->type
)),
1074 PRFIELD_GSTRING(comp_class
->name
));
1076 if (comp_class
->description
) {
1077 BUF_APPEND(", %spartial-descr=\"%.32s\"",
1078 PRFIELD_GSTRING(comp_class
->description
));
1085 BUF_APPEND(", %sis-frozen=%d", PRFIELD(comp_class
->frozen
));
1087 if (comp_class
->so_handle
) {
1088 SET_TMP_PREFIX("so-handle-");
1089 format_plugin_so_shared_lib_handle(buf_ch
, tmp_prefix
,
1090 comp_class
->so_handle
);
1094 static inline void format_component(char **buf_ch
, bool extended
,
1095 const char *prefix
, const struct bt_component
*component
)
1097 char tmp_prefix
[TMP_PREFIX_LEN
];
1099 BUF_APPEND(", %sname=\"%s\", %slog-level=%s",
1100 PRFIELD_GSTRING(component
->name
),
1101 PRFIELD(bt_common_logging_level_string(component
->log_level
)));
1103 if (component
->class) {
1104 SET_TMP_PREFIX("class-");
1105 format_component_class(buf_ch
, extended
, tmp_prefix
,
1113 if (component
->input_ports
) {
1114 BUF_APPEND(", %sinput-port-count=%u",
1115 PRFIELD(component
->input_ports
->len
));
1118 if (component
->output_ports
) {
1119 BUF_APPEND(", %soutput-port-count=%u",
1120 PRFIELD(component
->output_ports
->len
));
1124 static inline void format_port(char **buf_ch
, bool extended
,
1125 const char *prefix
, const struct bt_port
*port
)
1127 char tmp_prefix
[TMP_PREFIX_LEN
];
1129 BUF_APPEND(", %stype=%s, %sname=\"%s\"",
1130 PRFIELD(bt_port_type_string(port
->type
)),
1131 PRFIELD_GSTRING(port
->name
));
1137 if (port
->connection
) {
1138 SET_TMP_PREFIX("conn-");
1139 format_connection(buf_ch
, false, tmp_prefix
, port
->connection
);
1143 static inline void format_connection(char **buf_ch
, bool extended
,
1144 const char *prefix
, const struct bt_connection
*connection
)
1146 char tmp_prefix
[TMP_PREFIX_LEN
];
1152 if (connection
->upstream_port
) {
1153 SET_TMP_PREFIX("upstream-port-");
1154 format_port(buf_ch
, false, tmp_prefix
,
1155 connection
->upstream_port
);
1158 if (connection
->downstream_port
) {
1159 SET_TMP_PREFIX("downstream-port-");
1160 format_port(buf_ch
, false, tmp_prefix
,
1161 connection
->downstream_port
);
1165 static inline void format_graph(char **buf_ch
, bool extended
,
1166 const char *prefix
, const struct bt_graph
*graph
)
1168 char tmp_prefix
[TMP_PREFIX_LEN
];
1170 BUF_APPEND(", %scan-consume=%d, %sconfig-state=%s",
1171 PRFIELD(graph
->can_consume
),
1172 PRFIELD(bt_graph_configuration_state_string(graph
->config_state
)));
1178 if (graph
->components
) {
1179 BUF_APPEND(", %scomp-count=%u",
1180 PRFIELD(graph
->components
->len
));
1183 if (graph
->connections
) {
1184 BUF_APPEND(", %sconn-count=%u",
1185 PRFIELD(graph
->connections
->len
));
1188 SET_TMP_PREFIX("en-pool-");
1189 format_object_pool(buf_ch
, extended
, tmp_prefix
,
1190 &graph
->event_msg_pool
);
1191 SET_TMP_PREFIX("pbn-pool-");
1192 format_object_pool(buf_ch
, extended
, tmp_prefix
,
1193 &graph
->packet_begin_msg_pool
);
1194 SET_TMP_PREFIX("pen-pool-");
1195 format_object_pool(buf_ch
, extended
, tmp_prefix
,
1196 &graph
->packet_end_msg_pool
);
1199 static inline void format_message_iterator(char **buf_ch
,
1200 bool extended
, const char *prefix
,
1201 const struct bt_message_iterator
*iterator
)
1203 char tmp_prefix
[TMP_PREFIX_LEN
];
1204 const struct bt_self_component_port_input_message_iterator
*
1205 port_in_iter
= (const void *) iterator
;
1207 if (port_in_iter
->upstream_component
) {
1208 SET_TMP_PREFIX("upstream-comp-");
1209 format_component(buf_ch
, false, tmp_prefix
,
1210 port_in_iter
->upstream_component
);
1217 if (port_in_iter
->upstream_port
) {
1218 SET_TMP_PREFIX("upstream-port-");
1219 format_port(buf_ch
, false, tmp_prefix
,
1220 port_in_iter
->upstream_port
);
1223 if (port_in_iter
->connection
) {
1224 SET_TMP_PREFIX("upstream-conn-");
1225 format_connection(buf_ch
, false, tmp_prefix
,
1226 port_in_iter
->connection
);
1233 static inline void format_plugin(char **buf_ch
, bool extended
,
1234 const char *prefix
, const struct bt_plugin
*plugin
)
1236 char tmp_prefix
[TMP_PREFIX_LEN
];
1238 BUF_APPEND(", %stype=%s", PRFIELD(bt_plugin_type_string(plugin
->type
)));
1240 if (plugin
->info
.path_set
) {
1241 BUF_APPEND(", %spath=\"%s\"",
1242 PRFIELD_GSTRING(plugin
->info
.path
));
1245 if (plugin
->info
.name_set
) {
1246 BUF_APPEND(", %sname=\"%s\"",
1247 PRFIELD_GSTRING(plugin
->info
.name
));
1254 if (plugin
->info
.author_set
) {
1255 BUF_APPEND(", %sauthor=\"%s\"",
1256 PRFIELD_GSTRING(plugin
->info
.author
));
1259 if (plugin
->info
.license_set
) {
1260 BUF_APPEND(", %slicense=\"%s\"",
1261 PRFIELD_GSTRING(plugin
->info
.license
));
1264 if (plugin
->info
.version_set
) {
1265 BUF_APPEND(", %sversion=%u.%u.%u%s",
1266 PRFIELD(plugin
->info
.version
.major
),
1267 plugin
->info
.version
.minor
,
1268 plugin
->info
.version
.patch
,
1269 plugin
->info
.version
.extra
?
1270 plugin
->info
.version
.extra
->str
: "");
1273 BUF_APPEND(", %ssrc-comp-class-count=%u, %sflt-comp-class-count=%u, "
1274 "%ssink-comp-class-count=%u",
1275 PRFIELD(plugin
->src_comp_classes
->len
),
1276 PRFIELD(plugin
->flt_comp_classes
->len
),
1277 PRFIELD(plugin
->sink_comp_classes
->len
));
1279 if (plugin
->spec_data
) {
1280 const struct bt_plugin_so_spec_data
*spec_data
=
1281 (const void *) plugin
->spec_data
;
1283 if (spec_data
->shared_lib_handle
) {
1284 SET_TMP_PREFIX("so-handle-");
1285 format_plugin_so_shared_lib_handle(buf_ch
, tmp_prefix
,
1286 spec_data
->shared_lib_handle
);
1291 static inline void format_error_cause(char **buf_ch
, bool extended
,
1292 const char *prefix
, const struct bt_error_cause
*cause
)
1294 const struct bt_error_cause_component_class_id
*comp_class_id
= NULL
;
1296 BUF_APPEND(", %sactor-type=%s, %smodule-name=\"%s\"",
1297 PRFIELD(bt_error_cause_actor_type_string(cause
->actor_type
)),
1298 PRFIELD_GSTRING(cause
->module_name
));
1304 BUF_APPEND(", %spartial-msg=\"%.32s\"",
1305 PRFIELD_GSTRING(cause
->message
));
1307 switch (cause
->actor_type
) {
1308 case BT_ERROR_CAUSE_ACTOR_TYPE_COMPONENT
:
1310 const struct bt_error_cause_component_actor
*spec_cause
=
1311 (const void *) cause
;
1313 BUF_APPEND(", %scomp-name=\"%s\"",
1314 PRFIELD_GSTRING(spec_cause
->comp_name
));
1315 comp_class_id
= &spec_cause
->comp_class_id
;
1318 case BT_ERROR_CAUSE_ACTOR_TYPE_COMPONENT_CLASS
:
1320 const struct bt_error_cause_component_class_actor
*spec_cause
=
1321 (const void *) cause
;
1323 comp_class_id
= &spec_cause
->comp_class_id
;
1326 case BT_ERROR_CAUSE_ACTOR_TYPE_MESSAGE_ITERATOR
:
1328 const struct bt_error_cause_message_iterator_actor
*spec_cause
=
1329 (const void *) cause
;
1331 BUF_APPEND(", %scomp-name=\"%s\", %scomp-out-port-name=\"%s\"",
1332 PRFIELD_GSTRING(spec_cause
->comp_name
),
1333 PRFIELD_GSTRING(spec_cause
->output_port_name
));
1334 comp_class_id
= &spec_cause
->comp_class_id
;
1341 if (comp_class_id
) {
1342 BUF_APPEND(", %scomp-cls-type=%s, %scomp-cls-name=\"%s\", "
1343 "%splugin-name=\"%s\"",
1344 PRFIELD(bt_component_class_type_string(
1345 comp_class_id
->type
)),
1346 PRFIELD_GSTRING(comp_class_id
->name
),
1347 PRFIELD_GSTRING(comp_class_id
->plugin_name
));
1351 static inline void handle_conversion_specifier_bt(void *priv_data
,
1352 char **buf_ch
, size_t avail_size
,
1353 const char **out_fmt_ch
, va_list *args
)
1355 const char *fmt_ch
= *out_fmt_ch
;
1356 bool extended
= false;
1358 char *prefix_ch
= prefix
;
1364 if (*fmt_ch
== 'u') {
1366 obj
= va_arg(*args
, void *);
1367 format_uuid(buf_ch
, obj
);
1371 if (*fmt_ch
== '[') {
1376 if (*fmt_ch
== ']') {
1382 *prefix_ch
= *fmt_ch
;
1390 if (*fmt_ch
== '+') {
1395 obj
= va_arg(*args
, void *);
1396 BUF_APPEND("%saddr=%p", prefix
, obj
);
1404 format_field_class(buf_ch
, extended
, prefix
, obj
);
1407 format_field(buf_ch
, extended
, prefix
, obj
);
1410 format_field_path(buf_ch
, extended
, prefix
, obj
);
1413 format_event_class(buf_ch
, extended
, prefix
, obj
);
1416 format_event(buf_ch
, extended
, prefix
, obj
);
1419 format_stream_class(buf_ch
, extended
, prefix
, obj
);
1422 format_stream(buf_ch
, extended
, prefix
, obj
);
1425 format_packet(buf_ch
, extended
, prefix
, obj
);
1428 format_trace(buf_ch
, extended
, prefix
, obj
);
1431 format_trace_class(buf_ch
, extended
, prefix
, obj
);
1434 format_clock_class(buf_ch
, extended
, prefix
, obj
);
1437 format_clock_snapshot(buf_ch
, extended
, prefix
, obj
);
1440 format_value(buf_ch
, extended
, prefix
, obj
);
1443 format_integer_range_set(buf_ch
, extended
, prefix
, obj
);
1446 format_message(buf_ch
, extended
, prefix
, obj
);
1449 format_message_iterator(buf_ch
, extended
, prefix
, obj
);
1452 format_component_class(buf_ch
, extended
, prefix
, obj
);
1455 format_component(buf_ch
, extended
, prefix
, obj
);
1458 format_port(buf_ch
, extended
, prefix
, obj
);
1461 format_connection(buf_ch
, extended
, prefix
, obj
);
1464 format_plugin(buf_ch
, extended
, prefix
, obj
);
1467 format_graph(buf_ch
, extended
, prefix
, obj
);
1470 format_interrupter(buf_ch
, extended
, prefix
, obj
);
1473 format_object_pool(buf_ch
, extended
, prefix
, obj
);
1476 format_object(buf_ch
, extended
, prefix
, obj
);
1479 format_error_cause(buf_ch
, extended
, prefix
, obj
);
1487 *out_fmt_ch
= fmt_ch
;
1490 void bt_lib_log(const char *func
, const char *file
, unsigned line
,
1491 int lvl
, const char *tag
, const char *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
);
1500 _bt_log_write_d(func
, file
, line
, lvl
, tag
, "%s", lib_logging_buf
);
1503 void bt_lib_maybe_log_and_append_cause(const char *func
, const char *file
,
1504 unsigned line
, int lvl
, const char *tag
,
1505 const char *fmt
, ...)
1508 bt_current_thread_error_append_cause_status status
;
1511 va_start(args
, fmt
);
1512 bt_common_custom_vsnprintf(lib_logging_buf
, LIB_LOGGING_BUF_SIZE
, '!',
1513 handle_conversion_specifier_bt
, NULL
, fmt
, &args
);
1516 /* Log conditionally, but always append the error cause */
1517 if (BT_LOG_ON(lvl
)) {
1518 _bt_log_write_d(func
, file
, line
, lvl
, tag
, "%s",
1522 status
= bt_current_thread_error_append_cause_from_unknown(
1523 "Babeltrace library", file
, line
, "%s", lib_logging_buf
);
1526 * Worst case: this error cause is not appended to the
1527 * current thread's error.
1529 * We can accept this as it's an almost impossible
1530 * scenario and returning an error here would mean you
1531 * need to check the return value of each
1532 * BT_LIB_LOG*_APPEND_CAUSE() macro and that would be
1535 BT_LOGE("Cannot append error cause to current thread's "
1536 "error object: status=%s",
1537 bt_common_func_status_string(status
));