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