Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / docs / source / The_XBT_toolbox.rst
1 .. _xbt:
2
3 The XBT toolbox
4 ###############
5
6 XBT is not an interface to describe your application, but rather a toolbox of features that are used everywhere in SimGrid. The code described in this page is not specific to any
7 of the existing interfaces, and it's used in all of them.
8
9 .. _logging_prog:
10
11 Logging API
12 ***********
13
14 As introduced in :ref:`outcome_logs`, the SimGrid logging mechanism allows to configure at runtime the messages that should be displayed and those that should be omitted. Each
15 message produced in the code is given a category (denoting its topic) and a priority. Then at runtime, each category is given a threshold (only messages of priority higher than
16 that threshold are displayed), a layout (deciding how the messages in this category are formatted), and an appender (deciding what to do with the message: either print on stderr or
17 to a file).
18
19 This section documents the provided API. To see how to configure these features at runtime, please refer to :ref:`logging_config`.
20
21 Declaring categories
22 ====================
23
24 Typically, there will be a category for each module of the implementation, so that users can independently control the logging for each module.
25 Refer to the :ref:`logging_categories` section for a list of all existing categories in SimGrid.
26
27 .. c:macro:: XBT_LOG_NEW_CATEGORY(category, description)
28
29    Creates a new category that is not within any existing categories. It will be located right below the ``root`` category.
30    ``category`` must be a valid identifier (such as ``mycat``) with no quote or anything. It should also be unique over the whole binary.
31    ``description`` must be a string, between quotes.
32
33 .. c:macro:: XBT_LOG_NEW_SUBCATEGORY(category, parent_category, description)
34
35    Creates a new category under the provided ``parent_category``.
36
37 .. c:macro:: XBT_LOG_NEW_DEFAULT_CATEGORY(category, description)
38
39    Similar to :c:macro:`XBT_LOG_NEW_CATEGORY`, and the created category is the default one in the current source file.
40
41 .. c:macro:: XBT_LOG_NEW_DEFAULT_SUBCATEGORY(category, parent_category, description)
42
43    Similar to :c:macro:`XBT_LOG_NEW_SUBCATEGORY`, and the created category is the default one in the current source file.
44
45 .. c:macro:: XBT_LOG_EXTERNAL_CATEGORY(category)
46
47    Make an external category (i.e., a category declared in another source file) visible from this source file. 
48    In each source file, at most one one category can be the default one.
49
50 .. c:macro:: XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(category)
51
52    Use an external category as default category in this source file.
53
54 Logging messages
55 ================
56
57 Default category
58 ----------------
59
60 .. c:macro:: XBT_CRITICAL(format_string, parameters...)
61
62    Report a fatal error to the default category.
63
64 .. c:macro:: XBT_ERROR(format_string, parameters...)
65
66    Report an error to the default category.
67
68 .. c:macro:: XBT_WARN(format_string, parameters...)
69
70    Report a warning or an important information to the default category.
71
72 .. c:macro:: XBT_INFO(format_string, parameters...)
73
74    Report an information of regular importance to the default category.
75
76 .. c:macro:: XBT_VERB(format_string, parameters...)
77
78    Report a verbose information to the default category.
79
80 .. c:macro:: XBT_DEBUG(format_string, parameters...)
81
82    Report a debug-only information to the default category.
83
84 For each of the logging macros, the first parameter must be a printf-like format string, and the subsequent parameters must match this format. If you compile with the -Wall option,
85 the compiler will warn you for unmatched arguments, such as passing a pointer while the format string expects an integer. Using this option is usually a good idea.
86
87 Here is an example: ``XBT_WARN("Values are: %d and '%s'", 5, "oops");``
88
89 .. c:macro:: XBT_IN(format_string, parameters...)
90
91    Report that the execution flow enters a given function (which name is displayed automatically).
92
93 .. c:macro:: XBT_OUT(format_string, parameters...)
94
95    Report that the execution flow exits a given function (which name is displayed automatically).
96
97 .. c:macro:: XBT_HERE(format_string, parameters...)
98
99    Report that the execution flow reaches a given location.
100
101 Specific category
102 -----------------
103
104 .. c:macro:: XBT_CCRITICAL(category, format_string, parameters...)
105
106    Report a fatal error to the specified ``category``.
107
108 .. c:macro:: XBT_CERROR(category, format_string, parameters...)
109
110    Report an error to the specified ``category``.
111
112 .. c:macro:: XBT_CWARN(category, format_string, parameters...)
113
114    Report a warning or an important information to the specified ``category``.
115
116 .. c:macro:: XBT_CINFO(category, format_string, parameters...)
117
118    Report an information of regular importance to the specified ``category``.
119
120 .. c:macro:: XBT_CVERB(category, format_string, parameters...)
121
122    Report a verbose information to the specified ``category``.
123
124 .. c:macro:: XBT_CDEBUG(category, format_string, parameters...)
125
126    Report a debug-only information to the specified ``category``.
127
128 Of course, the specified category must be visible from this source file, either because it was created there (e.g. with :c:macro:`XBT_LOG_NEW_CATEGORY`) or because it was made
129 visible with :c:macro:`XBT_LOG_EXTERNAL_CATEGORY`.
130
131 Other functions
132 ===============
133
134 .. c:macro:: XBT_LOG_ISENABLED(category, priority)
135
136    Returns true if that category displays the messages of that priority. It's useful to compute a value that is used only in the logging, such as the textual representation of a
137    non-trivial object.
138
139    The specified priority must be one of ``xbt_log_priority_trace``, ``xbt_log_priority_debug``, ``xbt_log_priority_verbose``, ``xbt_log_priority_info``,
140    ``xbt_log_priority_warning``, ``xbt_log_priority_error`` or ``xbt_log_priority_critical``.
141
142 .. c:function:: void xbt_log_control_set(const char* setting)
143
144    Sets the provided ``setting`` as if it was passed in a ``--log`` command-line parameter.
145
146 You should not use any of the macros which name starts with '_'.
147
148 .. include:: ../build/log_categories.rst
149
150 Full example
151 ============
152
153 .. code-block:: C
154
155    #include "xbt/log.h"
156
157    /* create a category and a default subcategory */
158    XBT_LOG_NEW_CATEGORY(VSS);
159    XBT_LOG_NEW_DEFAULT_SUBCATEGORY(SA, VSS);
160
161    int main() {
162        /* Now set the parent's priority.  (the string would typically be a runtime option) */
163        xbt_log_control_set("SA.thresh:info");
164
165        /* This request is enabled, because WARNING >= INFO. */
166        XBT_CWARN(VSS, "Low fuel level.");
167
168        /* This request is disabled, because DEBUG < INFO. */
169        XBT_CDEBUG(VSS, "Starting search for nearest gas station.");
170
171        /* The default category SA inherits its priority from VSS. Thus,
172           the following request is enabled because INFO >= INFO.  */
173        XBT_INFO("Located nearest gas station.");
174
175        /* This request is disabled, because DEBUG < INFO. */
176        XBT_DEBUG("Exiting gas station search");
177    }
178
179 Performance concern
180 ===================
181
182 This module is highly optimized. Messages that will not be displayed are not even built. For example, using ``XBT_DEBUG`` in a category that turns debug messages off only costs a
183 single integer comparison at runtime, and the parameters are not even evaluated.
184
185 You can even specify a compile-time threshold that will completely remove every logging below the specified priority. Passing ``-DNDEBUG`` to cmake disables every logging of
186 priority below INFO while ``-DNLOG`` removes any logging at compile time. Note that using this feature may hinder the stability of SimGrid, as we consider the logs to be fast
187 enough to not thoughtfully test the case where they are removed at compile time.