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