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