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