1 // Render with Asciidoctor
3 = Babeltrace contributor's guide
4 Jérémie Galarneau, Philippe Proulx
10 This is a partial contributor's guide for the
11 https://babeltrace.org[Babeltrace] project. If you have any
12 questions that are not answered by this guide, please post them on
13 https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev[Babeltrace's
19 === Object reference counting and lifetime
21 This section covers the rationale behind the design of Babeltrace's
22 object lifetime management. This applies to the Babeltrace library, as
23 well as to the CTF writer library (although the public reference
24 counting functions are not named the same way).
26 Starting from Babeltrace 2.0, all publicly exposed objects inherit a
27 common base: `bt_object`. This base provides a number of facilities to
28 all objects, chief amongst which are lifetime management functions.
30 The lifetime of some public objects is managed by reference counting. In
31 this case, the API offers the `+bt_*_get_ref()+` and `+bt_*_put_ref()+`
32 functions which respectively increment and decrement an object's
35 As far as lifetime management in concerned, Babeltrace makes a clear
36 distinction between regular objects, which have a single parent, and
37 root objects, which don't.
42 Let us consider a problematic case to illustrate the need for this
45 A user of the Babeltrace library creates a trace class, which _has_ a
46 stream class (the class of a stream) and that stream class, in turn,
47 _has_ an event class (the class of an event).
49 Nothing prevents this user from releasing his reference on any one of
50 these objects in any order. However, all objects in the
51 __trace--stream class--event class__ hierarchy can be retrieved
54 For instance, the user could discard his reference on both the event
55 class and the stream class, only keeping a reference on the trace class.
56 From this trace class reference, stream classes can be enumerated,
57 providing the user with a new reference to the stream class he discarded
58 earlier. Event classes can also be enumerated from stream classes,
59 providing the user with references to the individual event classes.
61 Conversely, the user could also hold a reference to an event class and
62 retrieve its parent stream class. The trace class, in turn, can then be
63 retrieved from the stream class.
65 This example illustrates what could be interpreted as a circular
66 reference dependency existing between these objects. Of course, if the
67 objects in such a scenario were to hold references to each other (in
68 both directions), we would be in presence of a circular ownership
69 resulting in a leak of both objects as their reference counts would
72 Nonetheless, the API must offer the guarantee that holding a node to any
73 node of the graph keeps all other reachable nodes alive.
78 The scheme employed in Babeltrace to break this cycle consists in the
79 "children" holding _reverse component references_ to their parents. That
80 is, in the context of the trace IR, that event classes hold a reference
81 to their parent stream class and stream classes hold a reference to
82 their parent trace class.
84 On the other hand, parents hold _claiming aggregation references_ to
85 their children. A claiming aggregation reference means that the object
86 being referenced should not be deleted as long as the reference still
87 exists. In this respect, it can be said that parents truly hold the
88 ownership of their children, since they control their lifetime.
89 Conversely, the reference counting mechanism is leveraged by children to
90 notify parents that no other child indirectly exposes the parent.
92 When a parented object's reference count reaches zero, it invokes
93 `+bt_*_put_ref()+` on its parent and does _not_ free itself. However,
94 from that point, the object depends on its parent to signal the moment
95 when it can be safely reclaimed.
97 The invocation of `+bt_*_put_ref()+` by the last children holding a
98 reference to its parent might trigger a cascade of `+bt_*_put_ref()+`
99 from child to parent. Eventually, a **root** object is reached. At that
100 point, if this orphaned object's reference count reaches zero, the
101 object invokes the destructor method defined by everyone of its children
102 as part of their base `struct bt_object`. The key point here is that the
103 cascade of destructor will necessarily originate from the root and
104 propagate in preorder to the children. These children will propagate the
105 destruction to their own children before reclaiming their own memory.
106 This ensures that a node's pointer to its parent is _always_ valid since
107 the parent has the responsibility of tearing-down their children before
108 cleaning themselves up.
110 Assuming a reference to an object is _acquired_ by calling
111 `+bt_*_get_ref()+` while its reference count is zero, the object
112 acquires, in turn, a reference on its parent using `+bt_*_get_ref()+`.
113 At that point, the child can be thought of as having converted its weak
114 reference to its parent into a regular reference. That is why this
115 reference is referred to as a _claiming_ aggregation reference.
120 This scheme imposes a number of strict rules defining the relation
123 * Objects may only have one parent.
124 * Objects, beside the root, are only retrievable from their direct
130 The initial situation is rather simple: **User{nbsp}A** is holding a
131 reference to a trace class, **TC1**. As per the rules previously
132 enounced, stream classes **SC1** and **SC2** don't hold a reference to
133 **TC1** since their own reference counts are zero. The same holds true
134 for **EC1**, **EC2** and **EC3** with respect to **SC1** and **SC2**.
136 image::doc/contributing-images/bt-ref01.png[]
138 In this second step, we can see that **User{nbsp}A** has acquired a
139 reference on **SC2** through the trace class, **TC1**.
141 The stream class's reference count transitions from zero to one,
142 triggering the acquisition of a strong reference on **TC1** from
145 Hence, at this point, the trace class's ownership is shared by
146 **User{nbsp}A** and **SC2**.
148 image::doc/contributing-images/bt-ref02.png[]
150 Next, **User{nbsp}A** acquires a reference on the **EC3** event class
151 through its parent stream class, **SC2**. Again, the transition of an
152 object's reference count from 0 to 1 triggers the acquisition of a
153 reference on its parent.
155 Note that SC2's reference count was incremented to 2. The trace class's
156 reference count remains unchanged.
158 image::doc/contributing-images/bt-ref03.png[]
160 **User{nbsp}A** decides to drop its reference on **SC2**. **SC2**'s
161 reference count returns back to 1, everything else remaining unchanged.
163 image::doc/contributing-images/bt-ref04.png[]
165 **User{nbsp}A** can then decide to drop its reference on the trace
166 class. This results in a reversal of the initial situation:
167 **User{nbsp}A** now owns an event, **EC3**, which is keeping everything
168 else alive and reachable.
170 image::doc/contributing-images/bt-ref05.png[]
172 If another object, **User{nbsp}B**, enters the picture and acquires a
173 reference on the **SC1** stream class, we see that **SC1**'s reference
174 count transitioned from 0 to 1, triggering the acquisition of a
175 reference on **TC1**.
177 image::doc/contributing-images/bt-ref06.png[]
179 **User{nbsp}B** hands off a reference to **EC1**, acquired through
180 **SC1**, to another object, **User{nbsp}C**. The acquisition of a
181 reference on **EC1**, which transitions from 0 to 1, triggers the
182 acquisition of a reference on its parent, **SC1**.
184 image::doc/contributing-images/bt-ref07.png[]
186 At some point, **User{nbsp}A** releases its reference on **EC3**. Since
187 **EC3**'s reference count transitions to zero, it releases its reference
188 on **SC2**. **SC2**'s reference count, in turn, reaches zero and it
189 releases its reference to **TC1**.
191 **TC1**'s reference count is now 1 and no further action is taken.
193 image::doc/contributing-images/bt-ref08.png[]
195 **User{nbsp}B** releases its reference on **SC1**. **User{nbsp}C**
196 becomes the sole owner of the whole hierarchy through his ownership of
199 image::doc/contributing-images/bt-ref09.png[]
201 Finally, **User{nbsp}C** releases his ownership of **EC1**, triggering
202 the release of the whole hierarchy. Let's walk through the reclamation
205 Mirroring what happened when **User{nbsp}A** released its last reference
206 on **EC3**, the release of **EC1** by **User{nbsp}C** causes its
207 reference count to fall to zero.
209 This transition to zero causes **EC1** to release its reference on
210 **SC1**. **SC1**'s reference count reaching zero causes it to release
211 its reference on **TC1**.
213 image::doc/contributing-images/bt-ref10.png[]
215 Since the reference count of **TC1**, a root object, has reached zero,
216 it invokes the destructor method on its children. This method is
217 recursive and causes the stream classes to call the destructor method on
220 The event classes are reached and, having no children of their own, are
223 image::doc/contributing-images/bt-ref11.png[]
225 The stream classes having destroyed their children, are then reclaimed
228 image::doc/contributing-images/bt-ref12.png[]
230 Finally, the stream classes having been reclaimed, **TC1** is reclaimed.
232 image::doc/contributing-images/bt-ref13.png[]
237 Logging is a great instrument for a developer to be able to collect
238 information about a running software.
240 Babeltrace is a complex software with many layers. When a Babeltrace
241 graph fails to run, what caused the failure? It could be caused by any
242 component, any message iterator, and any deeply nested validation of a
243 CTF IR object (within the `ctf` plugin), for example. With the
244 appropriate logging statements manually placed in the source code, we
245 can find the cause of a bug faster.
247 While <<choose-a-log-level,care must be taken>> when placing _DEBUG_ to
248 _FATAL_ logging statements, you should liberally instrument your
249 Babeltrace module with _TRACE_ logging statements to help future you
250 and other developers understand what's happening at run time.
255 The Babeltrace logging API is internal: it is not exposed to the users
256 of the library; only to their developers. The only thing that a library
257 user can control is the current log level of the library itself with
258 `bt_logging_set_global_level()` and the initial library's log level with
259 the `LIBBABELTRACE2_INIT_LOG_LEVEL` environment variable.
261 This API is based on https://github.com/wonder-mice/zf_log[zf_log], a
262 lightweight, yet featureful, MIT-licensed core logging library for C and
263 pass:[C++]. The zf_log source files were modified to have the `BT_` and
264 `bt_` prefixes, and other small changes, like color support and using
265 the project's `BT_DEBUG_MODE` definition instead of the standard
268 The logging functions are implemented in the logging convenience
269 library (`src/logging` directory).
275 The logging API headers are:
277 `<babeltrace2/logging.h>`::
278 Public header which a library user can use to set and get
279 libbabeltrace2's current log level.
282 Internal, generic logging API which you can use in any Babeltrace
283 module. This is the translation of `zf_log.h`.
285 This header offers the <<gen-logging-statements,generic logging
289 Specific internal header to use within the library.
291 This header defines `BT_LOG_OUTPUT_LEVEL` to a custom, library-wide
292 hidden symbol which is the library's current log level before including
295 This header offers the <<lib-logging-statements,library-specific logging
298 `"logging/comp-logging.h"`::
299 Specific internal header to use within a component class.
301 This header offers the <<comp-logging-statements,component-specific
302 logging statement macros>>.
308 The internal logging API offers the following log levels, in ascending
311 [options="header,autowidth",cols="4"]
314 |Log level short name
315 |Internal API enumerator
316 |Public API enumerator
321 |`BT_LOGGING_LEVEL_TRACE`
326 |`BT_LOGGING_LEVEL_DEBUG`
331 |`BT_LOGGING_LEVEL_INFO`
336 |`BT_LOGGING_LEVEL_WARNING`
341 |`BT_LOGGING_LEVEL_ERROR`
346 |`BT_LOGGING_LEVEL_FATAL`
351 |`BT_LOGGING_LEVEL_NONE`
354 The short name is accepted by the log level environment variables and by
355 the CLI's `--log-level` options.
357 See <<choose-a-log-level,how to decide which one to use>> below.
359 There are two important log level expressions:
361 [[build-time-log-level]]Build-time, minimal log level::
362 The minimal log level, or build-time log level, is set at build time
363 and determines the minimal log level of the logging statements which
364 can be executed. This applies to all the modules (CLI, library,
365 plugins, bindings, etc.).
367 All the logging statements with a level below this level are **not built
368 at all**. All the logging statements with a level equal to or greater
369 than this level _can_ be executed, depending on the
370 <<run-time-log-level,run-time log level>>.
372 You can set this level at configuration time with the
373 `BABELTRACE_MINIMAL_LOG_LEVEL` environment variable, for example:
377 $ BABELTRACE_MINIMAL_LOG_LEVEL=INFO ./configure
381 The default build-time log level is `DEBUG`. For optimal performance,
382 set it to `INFO`, which effectively disables all fast path logging in
383 all the Babeltrace modules. You can't set it to `WARNING`, `ERROR`,
384 `FATAL`, or `NONE` because the impact on performance is minuscule
385 starting from the _INFO_ log level anyway and we want any Babeltrace
386 build to always be able to print _INFO_-level logs.
388 The library's public API provides `bt_logging_get_minimal_level()` to
389 get the configured minimal log level.
391 [[run-time-log-level]]Run-time, dynamic log level::
392 The dynamic log level is set at run time and determines the current,
393 _active_ log level. All the logging statements with a level below
394 this level are not executed, **but they still evaluate the
395 condition**. All the logging statements with a level equal to or
396 greater than this level are executed, provided that their level is
397 also <<build-time-log-level,enabled at build time>>.
399 `zf_log` has a concept of a global run-time log level which uses the
400 `_bt_log_global_output_lvl` symbol. In practice, we never use this
401 symbol, and always make sure that `BT_LOG_OUTPUT_LEVEL` is defined to a
402 module-wise expression before including `"logging/log.h"`.
404 In the library, `"lib/logging.h"` defines its own
405 `BT_LOG_OUTPUT_LEVEL` to the library's log level symbol before it
406 includes `"logging/log.h"` itself.
408 In libbabeltrace2, the user can set the current run-time log level with
409 the `bt_logging_set_global_level()` function, for example:
414 bt_logging_set_global_level(BT_LOGGING_LEVEL_INFO);
418 The library's initial run-time log level is defined by the
419 `LIBBABELTRACE2_INIT_LOG_LEVEL` environment variable, or set to _NONE_
420 if this environment variable is undefined.
422 Other modules have their own way of setting their run-time log level.
424 For example, the CLI uses the `BABELTRACE_CLI_LOG_LEVEL` environment
425 variable, as well as its global `--log-level` option:
428 $ babeltrace2 --log-level=I ...
431 The components use their own log level (as returned by
432 `bt_component_get_logging_level()`). With the CLI, you can set a
433 specific component's log level with its own, position-dependent
434 `--log-level` option:
437 $ babeltrace2 /path/to/trace -c sink.ctf.fs --log-level=D
440 Code which is common to the whole project, for example `src/common`
441 and `src/compat`, use function parameters to get its run-time log
447 char *bt_common_get_home_plugin_path(int log_level);
450 Typically, when a logging-enabled module calls such a function, it
451 passes its own log level expression directly (`BT_LOG_OUTPUT_LEVEL`):
455 path = bt_common_get_home_plugin_path(BT_LOG_OUTPUT_LEVEL);
458 Otherwise, just pass `BT_LOG_NONE`:
461 path = bt_common_get_home_plugin_path(BT_LOG_NONE);
465 [[gen-logging-statements]]
466 ==== Generic logging statement macros
468 The Babeltrace logging statement macros work just like `printf()`
469 (except the `+BT_LOG*_STR()+` ones) and contain their <<log-levels,log
470 level>> (short name) in their name.
472 Each of the following macros evaluate the
473 <<build-time-log-level,build-time log level>> definition and
474 <<run-time-log-level,run-time log level>> expression (as defined by
475 `BT_LOG_OUTPUT_LEVEL`) to log conditionally.
477 See <<logging-instrument-c-file-gen,Instrument a C source file
478 (generic)>> and <<logging-instrument-h-file-gen,Instrument a C header
479 file (generic)>> to learn how to be able to use the following macros.
481 `+BT_LOGT("format string", ...)+`::
482 Generic trace logging statement.
484 `+BT_LOGD("format string", ...)+`::
485 Generic debug logging statement.
487 `+BT_LOGI("format string", ...)+`::
488 Generic info logging statement.
490 `+BT_LOGW("format string", ...)+`::
491 Generic warning logging statement.
493 `+BT_LOGE("format string", ...)+`::
494 Generic error logging statement.
496 `+BT_LOGF("format string", ...)+`::
497 Generic fatal logging statement.
499 `+BT_LOGT_STR("preformatted string")+`::
500 Generic preformatted string trace logging statement.
502 `+BT_LOGD_STR("preformatted string")+`::
503 Generic preformatted string debug logging statement.
505 `+BT_LOGI_STR("preformatted string")+`::
506 Generic preformatted string info logging statement.
508 `+BT_LOGW_STR("preformatted string")+`::
509 Generic preformatted string warning logging statement.
511 `+BT_LOGE_STR("preformatted string")+`::
512 Generic preformatted string error logging statement.
514 `+BT_LOGF_STR("preformatted string")+`::
515 Generic preformatted string fatal logging statement.
517 `+BT_LOGT_MEM(data_ptr, data_size, "format string", ...)+`::
518 Generic memory trace logging statement.
520 `+BT_LOGD_MEM(data_ptr, data_size, "format string", ...)+`::
521 Generic memory debug logging statement.
523 `+BT_LOGI_MEM(data_ptr, data_size, "format string", ...)+`::
524 Generic memory info logging statement.
526 `+BT_LOGW_MEM(data_ptr, data_size, "format string", ...)+`::
527 Generic memory warning logging statement.
529 `+BT_LOGE_MEM(data_ptr, data_size, "format string", ...)+`::
530 Generic memory error logging statement.
532 `+BT_LOGF_MEM(data_ptr, data_size, "format string", ...)+`::
533 Generic memory fatal logging statement.
535 `+BT_LOGT_ERRNO("initial message", "format string", ...)+`::
536 Generic `errno` string trace logging statement.
538 `+BT_LOGD_ERRNO("initial message", "format string", ...)+`::
539 Generic `errno` string debug logging statement.
541 `+BT_LOGI_ERRNO("initial message", "format string", ...)+`::
542 Generic `errno` string info logging statement.
544 `+BT_LOGW_ERRNO("initial message", "format string", ...)+`::
545 Generic `errno` string warning logging statement.
547 `+BT_LOGE_ERRNO("initial message", "format string", ...)+`::
548 Generic `errno` string error logging statement.
550 `+BT_LOGF_ERRNO("initial message", "format string", ...)+`::
551 Generic `errno` string fatal logging statement.
554 [[lib-logging-statements]]
555 ==== Library-specific logging statement macros
557 The Babeltrace library contains an internal logging API based on the
558 generic logging framework. You can use it to log known Babeltrace
559 objects without having to manually log each member.
561 See <<logging-instrument-c-file-lib,Instrument a library C source file>>
562 and <<logging-instrument-h-file-lib,Instrument a library C header file>> to
563 learn how to be able to use the following macros.
565 The library logging statement macros are named `+BT_LIB_LOG*()+` instead
568 `+BT_LIB_LOGT("format string", ...)+`::
569 Library trace logging statement.
571 `+BT_LIB_LOGD("format string", ...)+`::
572 Library debug logging statement.
574 `+BT_LIB_LOGI("format string", ...)+`::
575 Library info logging statement.
577 `+BT_LIB_LOGW("format string", ...)+`::
578 Library warning logging statement.
580 `+BT_LIB_LOGE("format string", ...)+`::
581 Library error logging statement.
583 `+BT_LIB_LOGF("format string", ...)+`::
584 Library fatal logging statement.
586 `+BT_LIB_LOGW_APPEND_CAUSE("format string", ...)+`::
587 Library warning logging statement, and unconditional error cause
590 `+BT_LIB_LOGE_APPEND_CAUSE("format string", ...)+`::
591 Library error logging statement, and unconditional error cause
594 `+BT_LIB_LOGF_APPEND_CAUSE("format string", ...)+`::
595 Library fatal logging statement, and unconditional error cause
598 The macros above accept the typical `printf()` conversion specifiers
599 with the following limitations:
601 * The `+*+` width specifier is not accepted.
602 * The `+*+` precision specifier is not accepted.
603 * The `j` and `t` length modifiers are not accepted.
604 * The `n` format specifier is not accepted.
605 * The format specifiers defined in `<inttypes.h>` are not accepted,
606 except for `PRId64`, `PRIu64`, `PRIx64`, `PRIX64`, `PRIo64`, and
609 The Babeltrace library custom conversion specifier is accepted. Its
610 syntax is either `%!u` to format a UUID (`bt_uuid` type), or:
612 . Introductory `%!` sequence.
614 . **Optional**: `[` followed by a custom prefix for the printed fields
615 of this specifier, followed by `]`. The standard form is to end this
616 prefix with `-` so that, for example, with the prefix `tc-`, the
617 complete field name becomes `tc-addr`.
619 . **Optional**: `pass:[+]` to print extended object members. This
620 depends on the provided format specifier.
622 . Format specifier (see below).
624 The available format specifiers are:
626 [options="header,autowidth",cols="3"]
633 |Trace IR field class
634 |`+const struct bt_field_class *+`
638 |`+const struct bt_field *+`
642 |`+const struct bt_field_path *+`
645 |Trace IR event class
646 |`+const struct bt_event_class *+`
650 |`+const struct bt_event *+`
653 |Trace IR stream class.
654 |`+const struct bt_stream_class *+`
658 |`+const struct bt_stream *+`
662 |`+const struct bt_packet *+`
665 |Trace IR trace class
666 |`+const struct bt_trace_class *+`
670 |`+const struct bt_trace *+`
673 |Trace IR clock class
674 |`+const struct bt_clock_class *+`
677 |Trace IR clock snapshot
678 |`+const struct bt_clock_snapshot *+`
682 |`+const struct bt_value *+`
686 |`const struct bt_integer_range_set *`
690 |`+const struct bt_message *+`
693 |Message iterator class
694 |`struct bt_message_iterator_class *`
698 |`struct bt_message_iterator *`
702 |`struct bt_component_class *`
706 |`+const struct bt_component *+`
710 |`+const struct bt_port *+`
714 |`+const struct bt_connection *+`
718 |`+const struct bt_graph *+`
722 |`+struct bt_interrupter *+`
726 |`+const struct bt_plugin *+`
730 |`+const struct bt_error_cause *+`
734 |`+const struct bt_object_pool *+`
738 |`+const struct bt_object *+`
741 Conversion specifier examples:
748 The ``, `` string (comma and space) is printed between individual
749 fields, but **not after the last one**. Therefore, you must put this
750 separator in the format string between two conversion specifiers, for
755 BT_LIB_LOGW("Message: count=%u, %!E, %!+K", count, event_class, clock_class);
758 Example with a custom prefix:
762 BT_LIB_LOGI("Some message: %![ec-a-]e, %![ec-b-]+e", ec_a, ec_b);
765 It is safe to pass `NULL` as any Babeltrace object parameter: the macros
766 only print its null address.
768 WARNING: Build-time `printf()` format checks are disabled for the
769 `+BT_LIB_LOG*()+` macros because there are custom conversion specifiers,
770 so make sure to test your logging statements.
773 [[comp-logging-statements]]
774 ==== Component-specific logging statement macros
776 There are available logging macros for components. They prepend a prefix
777 including the component's name to the logging message.
779 See <<logging-instrument-c-file-compcls,Instrument a component class C
780 source file>> and <<logging-instrument-h-file-compcls,Instrument a
781 component class C header file>> to learn how to be able to use the
784 The component logging statement macros are named `+BT_COMP_LOG*()+`
785 instead of `+BT_LOG*()+`:
787 `+BT_COMP_LOGT("format string", ...)+`::
788 Component trace logging statement.
790 `+BT_COMP_LOGD("format string", ...)+`::
791 Component debug logging statement.
793 `+BT_COMP_LOGI("format string", ...)+`::
794 Component info logging statement.
796 `+BT_COMP_LOGW("format string", ...)+`::
797 Component warning logging statement.
799 `+BT_COMP_LOGE("format string", ...)+`::
800 Component error logging statement.
802 `+BT_COMP_LOGF("format string", ...)+`::
803 Component fatal logging statement.
805 `+BT_COMP_LOGT_STR("preformatted string")+`::
806 Component preformatted string trace logging statement.
808 `+BT_COMP_LOGD_STR("preformatted string")+`::
809 Component preformatted string debug logging statement.
811 `+BT_COMP_LOGI_STR("preformatted string")+`::
812 Component preformatted string info logging statement.
814 `+BT_COMP_LOGW_STR("preformatted string")+`::
815 Component preformatted string warning logging statement.
817 `+BT_COMP_LOGE_STR("preformatted string")+`::
818 Component preformatted string error logging statement.
820 `+BT_COMP_LOGF_STR("preformatted string")+`::
821 Component preformatted string fatal logging statement.
823 `+BT_COMP_LOGT_ERRNO("initial message", "format string", ...)+`::
824 Component `errno` string trace logging statement.
826 `+BT_COMP_LOGD_ERRNO("initial message", "format string", ...)+`::
827 Component `errno` string debug logging statement.
829 `+BT_COMP_LOGI_ERRNO("initial message", "format string", ...)+`::
830 Component `errno` string info logging statement.
832 `+BT_COMP_LOGW_ERRNO("initial message", "format string", ...)+`::
833 Component `errno` string warning logging statement.
835 `+BT_COMP_LOGE_ERRNO("initial message", "format string", ...)+`::
836 Component `errno` string error logging statement.
838 `+BT_COMP_LOGF_ERRNO("initial message", "format string", ...)+`::
839 Component `errno` string fatal logging statement.
841 `+BT_COMP_LOGT_MEM(data_ptr, data_size, "format string", ...)+`::
842 Component memory trace logging statement.
844 `+BT_COMP_LOGD_MEM(data_ptr, data_size, "format string", ...)+`::
845 Component memory debug logging statement.
847 `+BT_COMP_LOGI_MEM(data_ptr, data_size, "format string", ...)+`::
848 Component memory info logging statement.
850 `+BT_COMP_LOGW_MEM(data_ptr, data_size, "format string", ...)+`::
851 Component memory warning logging statement.
853 `+BT_COMP_LOGE_MEM(data_ptr, data_size, "format string", ...)+`::
854 Component memory error logging statement.
856 `+BT_COMP_LOGF_MEM(data_ptr, data_size, "format string", ...)+`::
857 Component memory fatal logging statement.
860 ==== Conditional logging
862 `+BT_LOG_IF(cond, statement)+`::
863 Execute `statement` only if `cond` is true.
870 BT_LOG_IF(i < count / 2, BT_LOGD("Log this: i=%d", i));
874 To check the <<build-time-log-level,build-time log level>>:
878 #if BT_LOG_ENABLED_DEBUG
883 This tests if the _DEBUG_ level was enabled at build time. This means
884 that the current, <<run-time-log-level,run-time log level>> _could_ be
885 _DEBUG_, but it could also be higher. The rule of thumb is to use only
886 logging statements at the same level in a `BT_LOG_ENABLED_*` conditional
889 The available definitions for build-time conditions are:
891 * `BT_LOG_ENABLED_TRACE`
892 * `BT_LOG_ENABLED_DEBUG`
893 * `BT_LOG_ENABLED_INFO`
894 * `BT_LOG_ENABLED_WARNING`
895 * `BT_LOG_ENABLED_ERROR`
896 * `BT_LOG_ENABLED_FATAL`
898 To check the current, <<run-time-log-level,run-time log level>>:
902 if (BT_LOG_ON_DEBUG) {
907 This tests if the _DEBUG_ log level is dynamically turned on
908 (implies that it's also enabled at build time). This check could have a
909 noticeable impact on performance.
911 The available definitions for run-time conditions are:
916 * `BT_LOG_ON_WARNING`
920 Those macros check the module-specific log level symbol (defined by
921 `BT_LOG_OUTPUT_LEVEL`).
923 Never, ever write code which would be executed only to compute the
924 fields of a logging statement outside a conditional logging scope,
929 int number = get_number_of_event_classes_with_property_x(...);
930 BT_LOGD("Bla bla: number=%d", number);
937 if (BT_LOG_ON_DEBUG) {
938 int number = get_number_of_event_classes_with_property_x(...);
939 BT_LOGD("Bla bla: number=%d", number);
947 BT_LOGD("Bla bla: number=%d", get_number_of_event_classes_with_property_x(...));
953 [[logging-instrument-c-file-gen]]
954 ==== Instrument a C source file (generic)
956 To instrument a C source file (`.c`):
958 . At the top of the file, before the first `#include` line (if any),
959 define your file's <<choose-a-logging-tag,logging tag>> name:
964 #define BT_LOG_TAG "SUBSYS/MY-MODULE/MY-FILE"
968 . Below the line above, define the source file's log level expression,
969 `BT_LOG_OUTPUT_LEVEL`. This expression is evaluated for each
970 <<gen-logging-statements,logging statement>> to know the current
971 <<run-time-log-level,run-time log level>>.
977 /* Global log level variable */
978 #define BT_LOG_OUTPUT_LEVEL module_global_log_level
983 /* Local log level variable; must exist where you use BT_LOG*() */
984 #define BT_LOG_OUTPUT_LEVEL log_level
989 /* Object's log level; `obj` must exist where you use BT_LOG*() */
990 #define BT_LOG_OUTPUT_LEVEL (obj->log_level)
993 . Include `"logging/log.h"`:
997 #include "logging/log.h"
1000 . In the file, instrument your code with the
1001 <<gen-logging-statements,generic logging statement macros>>.
1004 [[logging-instrument-h-file-gen]]
1005 ==== Instrument a C header file (generic)
1007 To instrument a C header file (`.h`), if you have `static inline`
1010 . Do not include `"logging/log.h"`!
1014 .. In the file, instrument your code with the
1015 <<gen-logging-statements,generic logging statement macros>>, making
1016 each of them conditional to the existence of the macro you're using:
1021 int some_function(int x)
1039 The C source files which include this header file determine if logging
1040 is enabled or not for them, and if so, what is their
1041 <<choose-a-logging-tag,logging tag>> and <<run-time-log-level,run-time
1042 log level>> expression.
1044 .. Require that logging be enabled:
1048 /* Protection: this file uses BT_LOG*() macros directly */
1049 #ifndef BT_LOG_SUPPORTED
1050 # error Please include "logging/log.h" before including this file.
1054 Then, in the file, instrument your code with the
1055 <<gen-logging-statements,generic logging statement macros>>.
1058 [[logging-instrument-c-file-lib]]
1059 ==== Instrument a library C source file
1061 To instrument a library C source file (`.c`):
1063 . At the top of the file, before the first `#include` line (if any),
1064 define your file's <<choose-a-logging-tag,logging tag>> name (this
1065 tag must start with `LIB/`):
1070 #define BT_LOG_TAG "LIB/THE-FILE"
1074 . Include `"lib/logging.h"`:
1078 #include "lib/logging.h"
1081 . In the file, instrument your code with the
1082 <<lib-logging-statements,library logging statement macros>> or with
1083 the <<gen-logging-statements,generic logging statement macros>>.
1086 [[logging-instrument-h-file-lib]]
1087 ==== Instrument a library C header file
1089 To instrument a library C header file (`.h`), if you have `static
1090 inline` functions in it:
1092 . Do not include `"lib/logging.h"`!
1094 . Require that library logging be enabled:
1098 /* Protection: this file uses BT_LIB_LOG*() macros directly */
1099 #ifndef BT_LIB_LOG_SUPPORTED
1100 # error Please include "lib/logging.h" before including this file.
1104 . In the file, instrument your code with the
1105 <<lib-logging-statements,library logging statement macros>> or with
1106 the <<gen-logging-statements,generic logging statement macros>>.
1109 [[logging-instrument-c-file-compcls]]
1110 ==== Instrument a component class C source file
1112 To instrument a component class C source file (`.c`):
1114 . At the top of the file, before the first `#include` line (if any),
1115 define your file's <<choose-a-logging-tag,logging tag>> name (this tag
1116 must start with `PLUGIN/` followed by the component class identifier):
1121 #define BT_LOG_TAG "PLUGIN/SRC.MY-PLUGIN.MY-SRC"
1125 . Below the line above, define the source file's log level expression,
1126 `BT_LOG_OUTPUT_LEVEL`. This expression is evaluated for each
1127 <<comp-logging-statements,logging statement>> to know the current
1128 <<run-time-log-level,run-time log level>>.
1130 For a component class file, it is usually a member of a local component
1131 private structure variable:
1135 #define BT_LOG_OUTPUT_LEVEL (my_comp->log_level)
1138 . Below the line above, define `BT_COMP_LOG_SELF_COMP` to an expression
1139 which, evaluated in the context of the
1140 <<comp-logging-statements,logging statements>>, evaluates to the self
1141 component address (`+bt_self_component *+`) of the component.
1143 This is usually a member of a local component private structure
1148 #define BT_COMP_LOG_SELF_COMP (my_comp->self_comp)
1151 . Include `"logging/comp-logging.h"`:
1155 #include "logging/comp-logging.h"
1158 . In the component initialization method, make sure to set the
1159 component private structure's log level member to the initial
1160 component's log level:
1165 bt_logging_level log_level;
1170 bt_self_component_status my_comp_init(
1171 bt_self_component_source *self_comp_src,
1172 bt_value *params, void *init_method_data)
1174 struct my_comp *my_comp = g_new0(struct my_comp, 1);
1175 bt_self_component *self_comp =
1176 bt_self_component_source_as_self_component(self_comp_src);
1177 const bt_component *comp = bt_self_component_as_component(self_comp);
1180 my_comp->log_level = bt_component_get_logging_level(comp);
1186 . In the file, instrument your code with the
1187 <<comp-logging-statements,component logging statement macros>>.
1190 [[logging-instrument-h-file-compcls]]
1191 ==== Instrument a component class C header file
1193 To instrument a component class C header file (`.h`), if you have
1194 `static inline` functions in it:
1196 . Do not include `"logging/comp-logging.h"`!
1198 . Require that component logging be enabled:
1202 /* Protection: this file uses BT_COMP_LOG*() macros directly */
1203 #ifndef BT_COMP_LOG_SUPPORTED
1204 # error Please include "logging/comp-logging.h" before including this file.
1208 . In the file, instrument your code with the
1209 <<comp-logging-statements,component logging statement macros>>.
1212 [[choose-a-logging-tag]]
1213 ==== Choose a logging tag
1215 Each logging-enabled C source file must define `BT_LOG_TAG` to a logging
1216 tag. A logging tag is a namespace to identify the logging messages of
1217 this specific source file.
1219 In general, a logging tag name _must_ be only uppercase letters, digits,
1220 and the `-`, `.`, and `/` characters.
1222 Use `/` to show the subsystem to source file hierarchy.
1224 For the Babeltrace library, start with `LIB/`.
1226 For the CTF writer library, start with `CTF-WRITER/`.
1228 For component classes, use:
1231 `PLUGIN/__CCTYPE__.__PNAME__.__CCNAME__[/__FILE__]`
1236 Component class's type (`SRC`, `FLT`, or `SINK`).
1242 Component class's name.
1245 Additional information to specify the source file name or module.
1247 For plugins (files common to many component classes), use:
1250 `PLUGIN/__PNAME__[/__FILE__]`
1258 Additional information to specify the source file name or module.
1261 [[choose-a-log-level]]
1262 ==== Choose a log level
1264 Choosing the appropriate level for your logging statement is very
1267 [options="header,autowidth",cols="1,2,3a,4"]
1269 |Log level |Description |Use cases |Expected impact on performance
1273 The program, library, or plugin cannot continue to work in this
1274 condition: it must be terminated immediately.
1276 A _FATAL_-level logging statement should always be followed by
1279 * Unexpected return values from system calls.
1280 * Logic error in internal code, for example an unexpected value in a
1282 * Failed assertion (within `BT_ASSERT()`).
1283 * Unsatisfied library precondition (within `BT_ASSERT_PRE()` or
1284 `BT_ASSERT_PRE_DEV()`).
1285 * Unsatisfied library postcondition (within `BT_ASSERT_POST()` or
1286 `BT_ASSERT_POST_DEV()`).
1287 |Almost none: always enabled.
1291 An important error which is somewhat not fatal, that is, the program,
1292 library, or plugin can continue to work after this, but you judge that
1293 it should be reported to the user.
1295 Usually, the program cannot recover from such an error, but it can at
1298 * Memory allocation errors.
1299 * Wrong component initialization parameters.
1300 * Corrupted, unrecoverable trace data.
1301 * Failed to perform an operation which should work considering the
1302 implementation and the satisfied preconditions. For example, the
1303 failure to create an empty object (no parameters): most probably
1304 failed internally because of an allocation error.
1305 * Almost any error in terminal elements: CLI and plugins.
1306 |Almost none: always enabled.
1310 An error which still allows the execution to continue, but you judge
1311 that it should be reported to the user.
1313 _WARNING_-level logging statements are for any error or weird action
1314 that is directly or indirectly caused by the user, often through some
1315 bad input data. For example, not having enough memory is considered
1316 beyond the user's control, so we always log memory errors with an
1317 _ERROR_ level (not _FATAL_ because we usually don't abort in this
1320 * Missing data within something that is expected to have it, but there's
1322 * Invalid file, but recoverable/fixable.
1323 |Almost none: always enabled.
1327 Any useful information which a non-developer user would possibly
1330 Anything logged with this level must _not_ happen repetitively on the
1331 fast path, that is, nothing related to each message, for example. This
1332 level is used for sporadic and one-shot events.
1334 * CLI or component configuration report.
1335 * Successful plugin, component, or message iterator initialization.
1336 * In the library: anything related to plugins, graphs, component
1337 classes, components, message iterators, connections, and ports which
1338 is not on the fast path.
1339 * Successful connection to or disconnection from another system.
1340 * An _optional_ subsystem cannot be loaded.
1341 * An _optional_ field/datum cannot be found.
1343 Very little: always enabled.
1347 Something that only Babeltrace developers would be interested into,
1348 which can occur on the fast path, but not more often than once per
1351 The _DEBUG_ level is the default <<build-time-log-level,build-time log
1352 level>> as, since it's not _too_ verbose, the performance is similar to
1355 * Object construction and destruction.
1356 * Object recycling (except fields).
1357 * Object copying (except fields and values).
1358 * Object freezing (whatever the type, as freezing only occurs in
1360 * Object interruption.
1361 * Calling user methods and logging the result.
1362 * Setting object properties (except fields and values).
1364 Noticeable, but not as much as the _TRACE_ level: could be executed
1365 in production if you're going to need a thorough log for support
1366 tickets without having to rebuild the project.
1370 Low-level debugging context information (anything that does not fit the
1371 other log levels). More appropriate for tracing in general.
1373 * Reference count change.
1374 * Fast path, low level state machine's state change.
1375 * Get or set an object's property.
1376 * Object comparison's intermediate results.
1377 |Huge: not executed in production.
1382 Make sure not to use a _WARNING_ (or higher) log level when the
1383 condition leading to the logging statement can occur under normal
1386 For example, a public function to get some object or
1387 property from an object by name or key that fails to find the value is
1388 not a warning scenario: the user could legitimately use this function to
1389 check if the name/key exists in the object. In this case, use the
1390 _TRACE_ level (or do not log at all).
1395 ==== Write an appropriate message
1397 Follow those rules when you write a logging statement's message:
1399 * Use an English sentence which starts with a capital letter.
1401 * Start the sentence with the appropriate verb tense depending on the
1402 context. For example:
1405 ** Beginning of operation (present continuous): _Creating ..._,
1406 _Copying ..._, _Serializing ..._, _Freezing ..._, _Destroying ..._
1407 ** End of operation (simple past): _Created ..._, _Successfully created ..._,
1408 _Failed to create ..._, _Set ..._ (simple past of _to set_ which is
1412 For warning and error messages, you can start the message with _Cannot_
1413 or _Failed to_ followed by a verb if it's appropriate.
1415 * Do not include the log level in the message itself. For example,
1416 do not start the message with _Error while_ or _Warning:_.
1418 * Do not put newlines, tabs, or other special characters in the message,
1419 unless you want to log a string with such characters. Note that
1420 multiline logging messages can be hard to parse, analyze, and filter,
1421 however, so prefer multiple logging statements over a single statement
1424 * **If there are fields that your logging statement must record**,
1425 follow the message with `:` followed by a space, then with the list of
1426 fields (more about this below). If there are no fields, end the
1427 sentence with a period.
1429 The statement's fields _must_ be a comma-separated list of
1430 `__name__=__value__` tokens. Keep `__name__` as simple as possible; use
1431 kebab case if possible. If `__value__` is a non-alphanumeric string, put
1432 it between double quotes (`"%s"` specifier). Always use the `PRId64` and
1433 `PRIu64` specifiers to log an `int64_t` or an `uint64_t` value. Use `%d`
1434 to log a boolean value.
1438 "Cannot read stream data for indexing: path=\"%s\", name=\"%s\", "
1439 "stream-id=%" PRIu64 ", stream-fd=%d, "
1440 "index=%" PRIu64 ", status=%s, is-mapped=%d"
1442 By following a standard format for the statement fields, it is easier to
1443 use tools like https://www.elastic.co/products/logstash[Logstash] or
1444 even https://www.splunk.com/[Splunk] to split fields and analyze logs.
1446 Prefer the following suffixes in field names:
1448 [options="header,autowidth"]
1450 |Field name suffix |Description |Format specifier
1452 |`-addr` |Memory address |`%p`
1453 |`-fd` |File descriptor |`%d`
1454 |`-fp` |File stream (`+FILE *+`) |`%p`
1455 |`-id` |Object's ID |`%" PRIu64 "`
1456 |`-index` |Index |`%" PRIu64 "`
1457 |`-name` |Object's name |`\"%s\"`
1463 The log is printed to the standard error stream. A log line contains the
1464 time, the process and thread IDs, the <<log-levels,log level>>, the
1465 <<choose-a-logging-tag,logging tag>>, the source's function name, file
1466 name and line number, and the <<message,message>>.
1468 When Babeltrace supports terminal color codes (depends on the
1469 `BABELTRACE_TERM_COLOR` environment variable's value and what the
1470 standard output and error streams are plugged into), _INFO_-level lines
1471 are blue, _WARNING_-level lines are yellow, and _ERROR_-level and
1472 _FATAL_-level lines are red.
1477 05-11 00:58:03.691 23402 23402 D VALUES bt_value_destroy@values.c:498 Destroying value: addr=0xb9c3eb0
1480 You can easily filter the log with `grep` or `ag`. For example, to keep
1481 only the _DEBUG_-level logging messages that the `FIELD-CLASS` module
1485 $ babeltrace2 --log-level=D /path/to/trace |& ag 'D FIELD-CLASS'
1491 To use Valgrind on an application (for example, the CLI or a test) which
1492 loads libbabeltrace2, use:
1495 $ G_SLICE=always-malloc G_DEBUG=gc-friendly PYTHONMALLOC=malloc \
1496 LIBBABELTRACE2_NO_DLCLOSE=1 valgrind --leak-check=full app
1499 `G_SLICE=always-malloc` and `G_DEBUG=gc-friendly` is for GLib and
1500 `PYTHONMALLOC=malloc` is for the Python interpreter, if it is used by
1501 the Python plugin provider (Valgrind will probably show a lot of errors
1502 which originate from the Python interpreter anyway).
1504 `LIBBABELTRACE2_NO_DLCLOSE=1` makes libbabeltrace2 not close the shared
1505 libraries (plugins) which it loads. You need this to see the appropriate
1506 backtrace when Valgrind shows errors.
1513 `tests/utils/utils.sh` sets the environment variables for any Babeltrace
1516 `utils.sh` only needs to know the path to the `tests` directory within
1517 the source and the build directories. By default, `utils.sh` assumes the
1518 build is in tree, that is, you ran `./configure` from the source's root
1519 directory, and sets the `BT_TESTS_SRCDIR` and `BT_TESTS_BUILDDIR`
1520 environment variables accordingly. You can override those variables, for
1521 example if you build out of tree.
1523 All test scripts eventually do something like this to source `utils.sh`,
1524 according to where they are located relative to the `tests` directory:
1528 if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then
1529 UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh"
1531 UTILSSH="$(dirname "$0")/../utils/utils.sh"
1537 You can use the `tests/utils/run_python_bt2` script to run any command
1538 within an environment making the build's `bt2` Python package available.
1540 `run_python_bt2` uses <<test-env,`utils.sh`>> which needs to know the
1541 build directory, so make sure you set the `BT_TESTS_BUILDDIR`
1542 environment variable correctly _if you build out of tree_, for example:
1545 $ export BT_TESTS_BUILDDIR=/path/to/build/babeltrace/tests
1548 You can run any command which needs the `bt2` Python package through
1549 `run_python_bt2`, for example:
1552 $ ./tests/utils/run_python_bt2 ipython3
1557 All test scripts output the test results following the
1558 https://testanything.org/[Test Anything Protocol] (TAP) format.
1560 The TAP format has two mechanisms to print additional information about
1563 * Print a line starting with `#` to the standard output.
1565 This is usually done with the `diag()` C function or the `diag` shell
1568 * Print to the standard error.
1573 The `bt2` Python package tests are located in
1574 `tests/bindings/python/bt2`.
1577 ==== Python test runner
1579 `tests/utils/python/testrunner.py` is Babeltrace's Python test runner
1580 which loads Python files containing unit tests, finds all the test
1581 cases, and runs the tests, producing a TAP report.
1583 You can see the test runner command's help with:
1586 $ python3 ./tests/utils/python/testrunner.py --help
1589 By default, the test runner reports failing tests (TAP's `not{nbsp}ok`
1590 line), but continues to run other tests. You can use the `--failfast`
1591 option to make the test runner fail as soon as a test fails.
1596 To run all the `bt2` Python package tests:
1601 $ ./tests/utils/run_python_bt2 ./tests/bindings/python/bt2/test_python_bt2
1607 $ ./tests/utils/run_python_bt2 python3 ./tests/utils/python/testrunner.py \
1608 ./tests/bindings/python/bt2/ -p '*.py'
1611 To run **all the tests** in a test module (for example,
1617 $ ./tests/utils/run_python_bt2 python3 ./tests/utils/python/testrunner.py \
1618 ./tests/bindings/python/bt2 -t test_value
1621 To run a **specific test case** (for example, `RealValueTestCase` within
1627 $ ./tests/utils/run_python_bt2 python3 ./tests/utils/python/testrunner.py \
1628 ./tests/bindings/python/bt2/ -t test_value.RealValueTestCase
1631 To run a **specific test** (for example,
1632 `RealValueTestCase.test_assign_pos_int` within `test_value.py`):
1637 $ ./tests/utils/run_python_bt2 python3 ./tests/utils/python/testrunner.py \
1638 ./tests/bindings/python/bt2/ -t test_value.RealValueTestCase.test_assign_pos_int