lib: split real FC/field into single and double prec FC/field
[babeltrace.git] / src / lib / lib-logging.c
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
23 #define BT_LOG_TAG "LIB/LIB-LOGGING"
24 #include "lib/logging.h"
25
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <inttypes.h>
31 #include <stdint.h>
32 #include <wchar.h>
33 #include <glib.h>
34 #include "common/common.h"
35 #include "common/uuid.h"
36 #include <babeltrace2/babeltrace.h>
37
38 #include "logging.h"
39 #include "assert-pre.h"
40 #include "assert-post.h"
41 #include "value.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"
75 #include "error.h"
76 #include "assert-pre.h"
77
78 #define LIB_LOGGING_BUF_SIZE (4096 * 4)
79
80 static __thread char lib_logging_buf[LIB_LOGGING_BUF_SIZE];
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__); \
88 BT_ASSERT(_count >= 0); \
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) \
96 do { \
97 BUF_APPEND(", %suuid=", prefix); \
98 format_uuid(buf_ch, (_uuid)); \
99 } while (0)
100
101 #define PRFIELD(_expr) prefix, (_expr)
102
103 #define PRFIELD_GSTRING(_expr) PRFIELD((_expr) ? (_expr)->str : NULL)
104
105 #define TMP_PREFIX_LEN 128
106 #define SET_TMP_PREFIX(_prefix2) \
107 do { \
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 \
116 tmp_prefix[TMP_PREFIX_LEN - 1] = '\0'; \
117 } while (0)
118
119 static inline void format_component(char **buf_ch, bool extended,
120 const char *prefix, const struct bt_component *component);
121
122 static inline void format_port(char **buf_ch, bool extended,
123 const char *prefix, const struct bt_port *port);
124
125 static inline void format_connection(char **buf_ch, bool extended,
126 const char *prefix, const struct bt_connection *connection);
127
128 static inline void format_clock_snapshot(char **buf_ch, bool extended,
129 const char *prefix, const struct bt_clock_snapshot *clock_snapshot);
130
131 static inline void format_field_path(char **buf_ch, bool extended,
132 const char *prefix, const struct bt_field_path *field_path);
133
134 static inline void format_object(char **buf_ch, bool extended,
135 const char *prefix, const struct bt_object *obj)
136 {
137 BUF_APPEND(", %sref-count=%llu", prefix, obj->ref_count);
138 }
139
140 static inline void format_uuid(char **buf_ch, bt_uuid uuid)
141 {
142 BUF_APPEND("\"" BT_UUID_FMT "\"", BT_UUID_FMT_VALUES(uuid));
143 }
144
145 static inline void format_object_pool(char **buf_ch, bool extended,
146 const char *prefix, const struct bt_object_pool *pool)
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
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)
158 {
159 const struct bt_field_class_integer *int_fc =
160 (const void *) field_class;
161
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)));
165 }
166
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)
170 {
171 const struct bt_field_class_array *array_fc =
172 (const void *) field_class;
173
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)));
177 }
178
179 static inline void format_field_class(char **buf_ch, bool extended,
180 const char *prefix, const struct bt_field_class *field_class)
181 {
182 char tmp_prefix[TMP_PREFIX_LEN];
183
184 BUF_APPEND(", %stype=%s",
185 PRFIELD(bt_common_field_class_type_string(field_class->type)));
186
187 if (extended) {
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));
191 } else {
192 return;
193 }
194
195 switch (field_class->type) {
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 }
204 case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
205 case BT_FIELD_CLASS_TYPE_SIGNED_INTEGER:
206 {
207 format_integer_field_class(buf_ch, extended, prefix, field_class);
208 break;
209 }
210 case BT_FIELD_CLASS_TYPE_UNSIGNED_ENUMERATION:
211 case BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION:
212 {
213 const struct bt_field_class_enumeration *enum_fc =
214 (const void *) field_class;
215
216 format_integer_field_class(buf_ch, extended, prefix, field_class);
217 BUF_APPEND(", %smapping-count=%u",
218 PRFIELD(enum_fc->mappings->len));
219 break;
220 }
221 case BT_FIELD_CLASS_TYPE_STRUCTURE:
222 {
223 const struct bt_field_class_structure *struct_fc =
224 (const void *) field_class;
225
226 if (struct_fc->common.named_fcs) {
227 BUF_APPEND(", %smember-count=%u",
228 PRFIELD(struct_fc->common.named_fcs->len));
229 }
230
231 break;
232 }
233 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
234 {
235 const struct bt_field_class_array_static *array_fc =
236 (const void *) field_class;
237
238 format_array_field_class(buf_ch, extended, prefix, field_class);
239 BUF_APPEND(", %slength=%" PRIu64, PRFIELD(array_fc->length));
240 break;
241 }
242 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY:
243 {
244 const struct bt_field_class_array_dynamic *array_fc =
245 (const void *) field_class;
246
247 format_array_field_class(buf_ch, extended, prefix, field_class);
248
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);
253 }
254
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);
259 }
260
261 break;
262 }
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 }
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:
289 {
290 const struct bt_field_class_variant *var_fc =
291 (const void *) field_class;
292
293 if (var_fc->common.named_fcs) {
294 BUF_APPEND(", %soption-count=%u",
295 PRFIELD(var_fc->common.named_fcs->len));
296 }
297
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 }
314 }
315
316 break;
317 }
318 default:
319 break;
320 }
321 }
322
323 static inline void format_field_integer_extended(char **buf_ch,
324 const char *prefix, const struct bt_field *field)
325 {
326 const struct bt_field_integer *integer = (void *) field;
327 const struct bt_field_class_integer *field_class =
328 (void *) field->class;
329 const char *fmt = NULL;
330
331 BT_ASSERT(field_class);
332
333 if (field_class->base == BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_OCTAL) {
334 fmt = ", %svalue=%" PRIo64;
335 } else if (field_class->base == BT_FIELD_CLASS_INTEGER_PREFERRED_DISPLAY_BASE_HEXADECIMAL) {
336 fmt = ", %svalue=%" PRIx64;
337 }
338
339 if (field_class->common.type == BT_FIELD_CLASS_TYPE_SIGNED_INTEGER ||
340 field_class->common.type == BT_FIELD_CLASS_TYPE_SIGNED_ENUMERATION) {
341 if (!fmt) {
342 fmt = ", %svalue=%" PRId64;
343 }
344
345 BUF_APPEND(fmt, PRFIELD(integer->value.i));
346 } else {
347 if (!fmt) {
348 fmt = ", %svalue=%" PRIu64;
349 }
350
351 BUF_APPEND(fmt, PRFIELD(integer->value.u));
352 }
353 }
354
355 static inline void format_field(char **buf_ch, bool extended,
356 const char *prefix, const struct bt_field *field)
357 {
358 BUF_APPEND(", %sis-set=%d", PRFIELD(field->is_set));
359
360 if (extended) {
361 BUF_APPEND(", %sis-frozen=%d", PRFIELD(field->frozen));
362 }
363
364 BUF_APPEND(", %sclass-addr=%p", PRFIELD(field->class));
365
366 if (!field->class) {
367 return;
368 }
369
370 BUF_APPEND(", %sclass-type=%s",
371 PRFIELD(bt_common_field_class_type_string(field->class->type)));
372
373 if (!extended || !field->is_set) {
374 return;
375 }
376
377 switch (field->class->type) {
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 }
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 }
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:
397 {
398 format_field_integer_extended(buf_ch, prefix, field);
399 break;
400 }
401 case BT_FIELD_CLASS_TYPE_SINGLE_PRECISION_REAL:
402 case BT_FIELD_CLASS_TYPE_DOUBLE_PRECISION_REAL:
403 {
404 const struct bt_field_real *real_field = (const void *) field;
405
406 BUF_APPEND(", %svalue=%f", PRFIELD(real_field->value));
407 break;
408 }
409 case BT_FIELD_CLASS_TYPE_STRING:
410 {
411 const struct bt_field_string *str = (const void *) field;
412
413 if (str->buf) {
414 BT_ASSERT(str->buf->data);
415 BUF_APPEND(", %spartial-value=\"%.32s\"",
416 PRFIELD(str->buf->data));
417 }
418
419 break;
420 }
421 case BT_FIELD_CLASS_TYPE_STATIC_ARRAY:
422 case BT_FIELD_CLASS_TYPE_DYNAMIC_ARRAY:
423 {
424 const struct bt_field_array *array_field = (const void *) field;
425
426 BUF_APPEND(", %slength=%" PRIu64, PRFIELD(array_field->length));
427
428 if (array_field->fields) {
429 BUF_APPEND(", %sallocated-length=%u",
430 PRFIELD(array_field->fields->len));
431 }
432
433 break;
434 }
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:
438 {
439 const struct bt_field_variant *var_field = (const void *) field;
440
441 BUF_APPEND(", %sselected-field-index=%" PRIu64,
442 PRFIELD(var_field->selected_index));
443 break;
444 }
445 default:
446 break;
447 }
448 }
449
450 static inline void format_field_path(char **buf_ch, bool extended,
451 const char *prefix, const struct bt_field_path *field_path)
452 {
453 uint64_t i;
454
455 if (field_path->items) {
456 BT_ASSERT(field_path->items);
457 BUF_APPEND(", %sitem-count=%u",
458 PRFIELD(field_path->items->len));
459 }
460
461 if (!extended || !field_path->items) {
462 return;
463 }
464
465 BUF_APPEND(", %spath=[%s",
466 PRFIELD(bt_common_scope_string(field_path->root)));
467
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 }
483 }
484
485 BUF_APPEND("%s", "]");
486 }
487
488 static inline void format_trace_class(char **buf_ch, bool extended,
489 const char *prefix, const struct bt_trace_class *trace_class)
490 {
491 if (!extended) {
492 return;
493 }
494
495 BUF_APPEND(", %sis-frozen=%d", PRFIELD(trace_class->frozen));
496
497 if (trace_class->stream_classes) {
498 BUF_APPEND(", %sstream-class-count=%u",
499 PRFIELD(trace_class->stream_classes->len));
500 }
501
502 BUF_APPEND(", %sassigns-auto-sc-id=%d",
503 PRFIELD(trace_class->assigns_automatic_stream_class_id));
504 }
505
506 static inline void format_trace(char **buf_ch, bool extended,
507 const char *prefix, const struct bt_trace *trace)
508 {
509 char tmp_prefix[TMP_PREFIX_LEN];
510
511 if (trace->name.value) {
512 BUF_APPEND(", %sname=\"%s\"", PRFIELD(trace->name.value));
513 }
514
515 if (!extended) {
516 return;
517 }
518
519 if (trace->uuid.value) {
520 BUF_APPEND_UUID(trace->uuid.value);
521 }
522
523 BUF_APPEND(", %sis-frozen=%d", PRFIELD(trace->frozen));
524
525 if (trace->streams) {
526 BUF_APPEND(", %sstream-count=%u",
527 PRFIELD(trace->streams->len));
528 }
529
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);
537 }
538
539 static inline void format_stream_class(char **buf_ch, bool extended,
540 const char *prefix,
541 const struct bt_stream_class *stream_class)
542 {
543 const struct bt_trace_class *trace_class;
544 char tmp_prefix[TMP_PREFIX_LEN];
545
546 BUF_APPEND(", %sid=%" PRIu64, PRFIELD(stream_class->id));
547
548 if (stream_class->name.value) {
549 BUF_APPEND(", %sname=\"%s\"",
550 PRFIELD(stream_class->name.value));
551 }
552
553 if (!extended) {
554 return;
555 }
556
557 BUF_APPEND(", %sis-frozen=%d", PRFIELD(stream_class->frozen));
558
559 if (stream_class->event_classes) {
560 BUF_APPEND(", %sevent-class-count=%u",
561 PRFIELD(stream_class->event_classes->len));
562 }
563
564 BUF_APPEND(", %spacket-context-fc-addr=%p, "
565 "%sevent-common-context-fc-addr=%p",
566 PRFIELD(stream_class->packet_context_fc),
567 PRFIELD(stream_class->event_common_context_fc));
568 trace_class = bt_stream_class_borrow_trace_class_inline(stream_class);
569 if (!trace_class) {
570 return;
571 }
572
573 BUF_APPEND(", %sassigns-auto-ec-id=%d, %sassigns-auto-stream-id=%d, "
574 "%ssupports-packets=%d, "
575 "%spackets-have-begin-default-cs=%d, "
576 "%spackets-have-end-default-cs=%d, "
577 "%ssupports-discarded-events=%d, "
578 "%sdiscarded-events-have-default-cs=%d, "
579 "%ssupports-discarded-packets=%d, "
580 "%sdiscarded-packets-have-default-cs=%d",
581 PRFIELD(stream_class->assigns_automatic_event_class_id),
582 PRFIELD(stream_class->assigns_automatic_stream_id),
583 PRFIELD(stream_class->supports_packets),
584 PRFIELD(stream_class->packets_have_beginning_default_clock_snapshot),
585 PRFIELD(stream_class->packets_have_end_default_clock_snapshot),
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));
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);
593 SET_TMP_PREFIX("pcf-pool-");
594 format_object_pool(buf_ch, extended, tmp_prefix,
595 &stream_class->packet_context_field_pool);
596 }
597
598 static inline void format_event_class(char **buf_ch, bool extended,
599 const char *prefix, const struct bt_event_class *event_class)
600 {
601 const struct bt_stream_class *stream_class;
602 const struct bt_trace_class *trace_class;
603 char tmp_prefix[TMP_PREFIX_LEN];
604
605 BUF_APPEND(", %sid=%" PRIu64, PRFIELD(event_class->id));
606
607 if (event_class->name.value) {
608 BUF_APPEND(", %sname=\"%s\"",
609 PRFIELD(event_class->name.value));
610 }
611
612 if (!extended) {
613 return;
614 }
615
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 }
623
624 if (event_class->emf_uri.value) {
625 BUF_APPEND(", %semf-uri=\"%s\"",
626 PRFIELD(event_class->emf_uri.value));
627 }
628
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));
632
633 stream_class = bt_event_class_borrow_stream_class_const(event_class);
634 if (!stream_class) {
635 return;
636 }
637
638 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class));
639 SET_TMP_PREFIX("stream-class-");
640 format_stream_class(buf_ch, false, tmp_prefix, stream_class);
641 trace_class = bt_stream_class_borrow_trace_class_inline(stream_class);
642 if (!trace_class) {
643 return;
644 }
645
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);
649 SET_TMP_PREFIX("event-pool-");
650 format_object_pool(buf_ch, extended, tmp_prefix,
651 &event_class->event_pool);
652 }
653
654 static inline void format_stream(char **buf_ch, bool extended,
655 const char *prefix, const struct bt_stream *stream)
656 {
657 const struct bt_stream_class *stream_class;
658 const struct bt_trace_class *trace_class = NULL;
659 const struct bt_trace *trace = NULL;
660 char tmp_prefix[TMP_PREFIX_LEN];
661
662 BUF_APPEND(", %sid=%" PRIu64, PRFIELD(stream->id));
663
664 if (stream->name.value) {
665 BUF_APPEND(", %sname=\"%s\"", PRFIELD(stream->name.value));
666 }
667
668 if (!extended) {
669 return;
670 }
671
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);
678 }
679
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);
691 }
692
693 SET_TMP_PREFIX("packet-pool-");
694 format_object_pool(buf_ch, extended, tmp_prefix, &stream->packet_pool);
695 }
696
697 static inline void format_packet(char **buf_ch, bool extended,
698 const char *prefix, const struct bt_packet *packet)
699 {
700 const struct bt_stream *stream;
701 const struct bt_trace_class *trace_class;
702 char tmp_prefix[TMP_PREFIX_LEN];
703
704 if (!extended) {
705 return;
706 }
707
708 BUF_APPEND(", %sis-frozen=%d, %scontext-field-addr=%p",
709 PRFIELD(packet->frozen),
710 PRFIELD(packet->context_field ? packet->context_field->field : NULL));
711 stream = bt_packet_borrow_stream_const(packet);
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);
719 trace_class = (const struct bt_trace_class *) bt_object_borrow_parent(&stream->base);
720 if (!trace_class) {
721 return;
722 }
723
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);
727 }
728
729 static inline void format_event(char **buf_ch, bool extended,
730 const char *prefix, const struct bt_event *event)
731 {
732 const struct bt_trace_class *trace_class;
733 const struct bt_stream_class *stream_class;
734 char tmp_prefix[TMP_PREFIX_LEN];
735
736 if (!extended) {
737 return;
738 }
739
740 BUF_APPEND(", %sis-frozen=%d, "
741 "%scommon-context-field-addr=%p, "
742 "%sspecific-context-field-addr=%p, "
743 "%spayload-field-addr=%p, ",
744 PRFIELD(event->frozen),
745 PRFIELD(event->common_context_field),
746 PRFIELD(event->specific_context_field),
747 PRFIELD(event->payload_field));
748 BUF_APPEND(", %sevent-class-addr=%p", PRFIELD(event->class));
749
750 if (!event->class) {
751 return;
752 }
753
754 SET_TMP_PREFIX("event-class-");
755 format_event_class(buf_ch, false, tmp_prefix, event->class);
756 stream_class = bt_event_class_borrow_stream_class(event->class);
757 if (stream_class) {
758 BUF_APPEND(", %sstream-class-addr=%p", PRFIELD(stream_class));
759 SET_TMP_PREFIX("stream-class-");
760 format_stream_class(buf_ch, false, tmp_prefix,
761 stream_class);
762
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);
771 }
772 }
773
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);
778 }
779
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);
784 }
785 }
786
787 static inline void format_clock_class(char **buf_ch, bool extended,
788 const char *prefix, const struct bt_clock_class *clock_class)
789 {
790 char tmp_prefix[TMP_PREFIX_LEN];
791
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));
797
798 if (!extended) {
799 return;
800 }
801
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);
809 }
810
811 BUF_APPEND(", %sis-frozen=%d, %sprecision=%" PRIu64 ", "
812 "%soffset-s=%" PRId64 ", "
813 "%soffset-cycles=%" PRIu64 ", %sorigin-is-unix-epoch=%d, "
814 "%sbase-offset-ns=%" PRId64,
815 PRFIELD(clock_class->frozen), PRFIELD(clock_class->precision),
816 PRFIELD(clock_class->offset_seconds),
817 PRFIELD(clock_class->offset_cycles),
818 PRFIELD(clock_class->origin_is_unix_epoch),
819 PRFIELD(clock_class->base_offset.value_ns));
820
821 SET_TMP_PREFIX("cs-pool-");
822 format_object_pool(buf_ch, extended, tmp_prefix,
823 &clock_class->cs_pool);
824 }
825
826 static inline void format_clock_snapshot(char **buf_ch, bool extended,
827 const char *prefix, const struct bt_clock_snapshot *clock_snapshot)
828 {
829 char tmp_prefix[TMP_PREFIX_LEN];
830 BUF_APPEND(", %svalue=%" PRIu64 ", %sns-from-origin=%" PRId64,
831 PRFIELD(clock_snapshot->value_cycles),
832 PRFIELD(clock_snapshot->ns_from_origin));
833
834 if (!extended) {
835 return;
836 }
837
838 BUF_APPEND(", %sis-set=%d", PRFIELD(clock_snapshot->is_set));
839
840 if (clock_snapshot->clock_class) {
841 BUF_APPEND(", %sclock-class-addr=%p",
842 PRFIELD(clock_snapshot->clock_class));
843 SET_TMP_PREFIX("clock-class-");
844 format_clock_class(buf_ch, false, tmp_prefix,
845 clock_snapshot->clock_class);
846 }
847 }
848
849 static 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
855 static inline void format_value(char **buf_ch, bool extended,
856 const char *prefix, const struct bt_value *value)
857 {
858 BUF_APPEND(", %stype=%s",
859 PRFIELD(bt_common_value_type_string(bt_value_get_type(value))));
860
861 if (!extended) {
862 return;
863 }
864
865 switch (bt_value_get_type(value)) {
866 case BT_VALUE_TYPE_BOOL:
867 {
868 bt_bool val = bt_value_bool_get(value);
869
870 BUF_APPEND(", %svalue=%d", PRFIELD(val));
871 break;
872 }
873 case BT_VALUE_TYPE_UNSIGNED_INTEGER:
874 {
875 BUF_APPEND(", %svalue=%" PRIu64,
876 PRFIELD(bt_value_integer_unsigned_get(value)));
877 break;
878 }
879 case BT_VALUE_TYPE_SIGNED_INTEGER:
880 {
881 BUF_APPEND(", %svalue=%" PRId64,
882 PRFIELD(bt_value_integer_signed_get(value)));
883 break;
884 }
885 case BT_VALUE_TYPE_REAL:
886 {
887 double val = bt_value_real_get(value);
888
889 BUF_APPEND(", %svalue=%f", PRFIELD(val));
890 break;
891 }
892 case BT_VALUE_TYPE_STRING:
893 {
894 const char *val = bt_value_string_get(value);
895
896 BUF_APPEND(", %spartial-value=\"%.32s\"", PRFIELD(val));
897 break;
898 }
899 case BT_VALUE_TYPE_ARRAY:
900 {
901 int64_t count = bt_value_array_get_length(value);
902
903 BT_ASSERT(count >= 0);
904 BUF_APPEND(", %selement-count=%" PRId64, PRFIELD(count));
905 break;
906 }
907 case BT_VALUE_TYPE_MAP:
908 {
909 int64_t count = bt_value_map_get_size(value);
910
911 BT_ASSERT(count >= 0);
912 BUF_APPEND(", %selement-count=%" PRId64, PRFIELD(count));
913 break;
914 }
915 default:
916 break;
917 }
918 }
919
920 static 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
933 static inline void format_message(char **buf_ch, bool extended,
934 const char *prefix, const struct bt_message *msg)
935 {
936 char tmp_prefix[TMP_PREFIX_LEN];
937
938 BUF_APPEND(", %stype=%s",
939 PRFIELD(bt_message_type_string(msg->type)));
940
941 if (!extended) {
942 return;
943 }
944
945 BUF_APPEND(", %sis-frozen=%d, %sgraph-addr=%p",
946 PRFIELD(msg->frozen), PRFIELD(msg->graph));
947
948 switch (msg->type) {
949 case BT_MESSAGE_TYPE_EVENT:
950 {
951 const struct bt_message_event *msg_event =
952 (const void *) msg;
953
954 if (msg_event->event) {
955 SET_TMP_PREFIX("event-");
956 format_event(buf_ch, true, tmp_prefix,
957 msg_event->event);
958 }
959
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
966 break;
967 }
968 case BT_MESSAGE_TYPE_STREAM_BEGINNING:
969 case BT_MESSAGE_TYPE_STREAM_END:
970 {
971 const struct bt_message_stream *msg_stream = (const void *) msg;
972
973 if (msg_stream->stream) {
974 SET_TMP_PREFIX("stream-");
975 format_stream(buf_ch, true, tmp_prefix,
976 msg_stream->stream);
977 }
978
979 BUF_APPEND(", %sdefault-cs-state=%s",
980 PRFIELD(bt_message_stream_clock_snapshot_state_string(
981 msg_stream->default_cs_state)));
982
983 if (msg_stream->default_cs_state == BT_MESSAGE_STREAM_CLOCK_SNAPSHOT_STATE_KNOWN) {
984 SET_TMP_PREFIX("default-cs-");
985 format_clock_snapshot(buf_ch, true, tmp_prefix,
986 msg_stream->default_cs);
987 }
988
989 break;
990 }
991 case BT_MESSAGE_TYPE_PACKET_BEGINNING:
992 case BT_MESSAGE_TYPE_PACKET_END:
993 {
994 const struct bt_message_packet *msg_packet = (const void *) msg;
995
996 if (msg_packet->packet) {
997 SET_TMP_PREFIX("packet-");
998 format_packet(buf_ch, true, tmp_prefix,
999 msg_packet->packet);
1000 }
1001
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
1008 break;
1009 }
1010 case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
1011 case BT_MESSAGE_TYPE_DISCARDED_PACKETS:
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) {
1023 SET_TMP_PREFIX("begin-default-cs-");
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) {
1029 SET_TMP_PREFIX("end-default-cs-");
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 }
1041 default:
1042 break;
1043 }
1044 }
1045
1046 static inline void format_plugin_so_shared_lib_handle(char **buf_ch,
1047 const char *prefix,
1048 const struct bt_plugin_so_shared_lib_handle *handle)
1049 {
1050 BUF_APPEND(", %saddr=%p", PRFIELD(handle));
1051
1052 if (handle->path) {
1053 BUF_APPEND(", %spath=\"%s\"", PRFIELD_GSTRING(handle->path));
1054 }
1055 }
1056
1057 static inline void format_component_class(char **buf_ch, bool extended,
1058 const char *prefix,
1059 const struct bt_component_class *comp_class)
1060 {
1061 char tmp_prefix[TMP_PREFIX_LEN];
1062
1063 BUF_APPEND(", %stype=%s, %sname=\"%s\"",
1064 PRFIELD(bt_component_class_type_string(comp_class->type)),
1065 PRFIELD_GSTRING(comp_class->name));
1066
1067 if (comp_class->description) {
1068 BUF_APPEND(", %spartial-descr=\"%.32s\"",
1069 PRFIELD_GSTRING(comp_class->description));
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
1085 static inline void format_component(char **buf_ch, bool extended,
1086 const char *prefix, const struct bt_component *component)
1087 {
1088 char tmp_prefix[TMP_PREFIX_LEN];
1089
1090 BUF_APPEND(", %sname=\"%s\", %slog-level=%s",
1091 PRFIELD_GSTRING(component->name),
1092 PRFIELD(bt_common_logging_level_string(component->log_level)));
1093
1094 if (component->class) {
1095 SET_TMP_PREFIX("class-");
1096 format_component_class(buf_ch, extended, tmp_prefix,
1097 component->class);
1098 }
1099
1100 if (!extended) {
1101 return;
1102 }
1103
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 }
1113 }
1114
1115 static inline void format_port(char **buf_ch, bool extended,
1116 const char *prefix, const struct bt_port *port)
1117 {
1118 char tmp_prefix[TMP_PREFIX_LEN];
1119
1120 BUF_APPEND(", %stype=%s, %sname=\"%s\"",
1121 PRFIELD(bt_port_type_string(port->type)),
1122 PRFIELD_GSTRING(port->name));
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
1134 static inline void format_connection(char **buf_ch, bool extended,
1135 const char *prefix, const struct bt_connection *connection)
1136 {
1137 char tmp_prefix[TMP_PREFIX_LEN];
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
1156 static inline void format_graph(char **buf_ch, bool extended,
1157 const char *prefix, const struct bt_graph *graph)
1158 {
1159 char tmp_prefix[TMP_PREFIX_LEN];
1160
1161 BUF_APPEND(", %scan-consume=%d, %sconfig-state=%s",
1162 PRFIELD(graph->can_consume),
1163 PRFIELD(bt_graph_configuration_state_string(graph->config_state)));
1164
1165 if (!extended) {
1166 return;
1167 }
1168
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 }
1178
1179 SET_TMP_PREFIX("en-pool-");
1180 format_object_pool(buf_ch, extended, tmp_prefix,
1181 &graph->event_msg_pool);
1182 SET_TMP_PREFIX("pbn-pool-");
1183 format_object_pool(buf_ch, extended, tmp_prefix,
1184 &graph->packet_begin_msg_pool);
1185 SET_TMP_PREFIX("pen-pool-");
1186 format_object_pool(buf_ch, extended, tmp_prefix,
1187 &graph->packet_end_msg_pool);
1188 }
1189
1190 static inline void format_message_iterator(char **buf_ch,
1191 bool extended, const char *prefix,
1192 const struct bt_message_iterator *iterator)
1193 {
1194 char tmp_prefix[TMP_PREFIX_LEN];
1195 const struct bt_self_component_port_input_message_iterator *
1196 port_in_iter = (const void *) iterator;
1197
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);
1202 }
1203
1204 if (!extended) {
1205 goto end;
1206 }
1207
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);
1212 }
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);
1218 }
1219
1220 end:
1221 return;
1222 }
1223
1224 static inline void format_plugin(char **buf_ch, bool extended,
1225 const char *prefix, const struct bt_plugin *plugin)
1226 {
1227 char tmp_prefix[TMP_PREFIX_LEN];
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\"",
1233 PRFIELD_GSTRING(plugin->info.path));
1234 }
1235
1236 if (plugin->info.name_set) {
1237 BUF_APPEND(", %sname=\"%s\"",
1238 PRFIELD_GSTRING(plugin->info.name));
1239 }
1240
1241 if (!extended) {
1242 return;
1243 }
1244
1245 if (plugin->info.author_set) {
1246 BUF_APPEND(", %sauthor=\"%s\"",
1247 PRFIELD_GSTRING(plugin->info.author));
1248 }
1249
1250 if (plugin->info.license_set) {
1251 BUF_APPEND(", %slicense=\"%s\"",
1252 PRFIELD_GSTRING(plugin->info.license));
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
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));
1269
1270 if (plugin->spec_data) {
1271 const struct bt_plugin_so_spec_data *spec_data =
1272 (const void *) plugin->spec_data;
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
1282 static 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
1342 static 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;
1350 const void *obj;
1351
1352 /* skip "%!" */
1353 fmt_ch += 2;
1354
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
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
1393 switch (*fmt_ch) {
1394 case 'F':
1395 format_field_class(buf_ch, extended, prefix, obj);
1396 break;
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);
1411 break;
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;
1421 case 'T':
1422 format_trace_class(buf_ch, extended, prefix, obj);
1423 break;
1424 case 'K':
1425 format_clock_class(buf_ch, extended, prefix, obj);
1426 break;
1427 case 'k':
1428 format_clock_snapshot(buf_ch, extended, prefix, obj);
1429 break;
1430 case 'v':
1431 format_value(buf_ch, extended, prefix, obj);
1432 break;
1433 case 'R':
1434 format_integer_range_set(buf_ch, extended, prefix, obj);
1435 break;
1436 case 'n':
1437 format_message(buf_ch, extended, prefix, obj);
1438 break;
1439 case 'i':
1440 format_message_iterator(buf_ch, extended, prefix, obj);
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;
1454 case 'l':
1455 format_plugin(buf_ch, extended, prefix, obj);
1456 break;
1457 case 'g':
1458 format_graph(buf_ch, extended, prefix, obj);
1459 break;
1460 case 'z':
1461 format_interrupter(buf_ch, extended, prefix, obj);
1462 break;
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;
1469 case 'r':
1470 format_error_cause(buf_ch, extended, prefix, obj);
1471 break;
1472 default:
1473 abort();
1474 }
1475
1476 update_fmt:
1477 fmt_ch++;
1478 *out_fmt_ch = fmt_ch;
1479 }
1480
1481 void 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
1486 BT_ASSERT(fmt);
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 }
1493
1494 void 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.115424 seconds and 4 git commands to generate.