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