Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Keep improved comments from commit 9304dfd37f.
[simgrid.git] / include / xbt / log.h
1 /* log - a generic logging facility in the spirit of log4j                  */
2
3 /* Copyright (c) 2004-2021. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 /* Define the XBT_LOG_MAYDAY symbol to change all logging facilities into basic printfs, e.g. to debug the logs
9  * themselves. */
10 //#define XBT_LOG_MAYDAY
11
12 #ifndef XBT_LOG_H
13 #define XBT_LOG_H
14
15 #include <stdarg.h>
16 #include <stddef.h> /* NULL */
17 #include <stdio.h>  /* FILE */
18 #include <xbt/misc.h>
19 SG_BEGIN_DECL
20 /**@brief Log priorities
21  * @ingroup XBT_log
22  *
23  * The different existing priorities.
24  */
25 typedef enum {
26   //! @cond
27   xbt_log_priority_none = 0,           /** used internally (don't poke with)*/
28   //! @endcond
29   xbt_log_priority_trace = 1,          /**< enter and return of some functions */
30   xbt_log_priority_debug = 2,          /**< crufty output  */
31   xbt_log_priority_verbose = 3,        /**< verbose output for the user wanting more */
32   xbt_log_priority_info = 4,           /**< output about the regular functioning */
33   xbt_log_priority_warning = 5,        /**< minor issue encountered */
34   xbt_log_priority_error = 6,          /**< issue encountered */
35   xbt_log_priority_critical = 7,       /**< major issue encountered */
36
37   xbt_log_priority_infinite = 8,       /**< value for XBT_LOG_STATIC_THRESHOLD to not log */
38
39   //! @cond
40   xbt_log_priority_uninitialized = -1  /* used internally (don't poke with) */
41   //! @endcond
42 } e_xbt_log_priority_t;
43
44 /*
45  * define NLOG to disable at compilation time any logging request
46  * define NDEBUG to disable at compilation time any logging request of priority below VERBOSE
47  */
48
49 /**
50  * @def XBT_LOG_STATIC_THRESHOLD
51  * @ingroup XBT_log
52  *
53  * All logging requests with priority < XBT_LOG_STATIC_THRESHOLD are disabled at compile time, i.e., compiled out.
54  */
55 #ifdef NLOG
56 #  define XBT_LOG_STATIC_THRESHOLD xbt_log_priority_infinite
57 #else
58
59 #  ifdef NDEBUG
60 #    define XBT_LOG_STATIC_THRESHOLD xbt_log_priority_verbose
61 #  else                         /* !NLOG && !NDEBUG */
62
63 #    ifndef XBT_LOG_STATIC_THRESHOLD
64 #      define XBT_LOG_STATIC_THRESHOLD xbt_log_priority_none
65 #    endif                      /* !XBT_LOG_STATIC_THRESHOLD */
66 #  endif                        /* NDEBUG */
67 #endif                          /* !defined(NLOG) */
68
69 /* Transforms a category name to a global variable name. */
70 #define _XBT_LOGV(cat) _XBT_CONCAT(_simgrid_log_category__, cat)
71 #define _XBT_LOGV_CTOR(cat) _XBT_CONCAT2(_XBT_LOGV(cat), __constructor__)
72
73 /* The root of the category hierarchy. */
74 #define XBT_LOG_ROOT_CAT   root
75
76 /* The whole tree of categories is connected by setting the address of the parent category as a field of the child one.
77  * This is normally done at the first use of the category.
78  *
79  * It is however necessary to make this connections as early as possible, if we want the category to be listed by
80  * --help-log-categories. We use constructor attributes for these initializations to take place automatically before the
81  * start of main().
82  */
83
84 /* XBT_LOG_NEW_SUBCATEGORY_helper:
85  * Implementation of XBT_LOG_NEW_SUBCATEGORY, which must declare "extern parent" in addition to avoid an extra
86  * declaration of root when XBT_LOG_NEW_SUBCATEGORY is called by XBT_LOG_NEW_CATEGORY */
87 #define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc)                                                          \
88   SG_BEGIN_DECL                                                                                                        \
89   extern void _XBT_LOGV_CTOR(catName)(void) XBT_ATTRIB_CONSTRUCTOR(600);                                               \
90   SG_END_DECL                                                                                                          \
91   void _XBT_LOGV_CTOR(catName)(void)                                                                                   \
92   {                                                                                                                    \
93     XBT_LOG_EXTERNAL_CATEGORY(catName);                                                                                \
94     if (!_XBT_LOGV(catName).initialized) {                                                                             \
95       _xbt_log_cat_init(&_XBT_LOGV(catName), xbt_log_priority_uninitialized);                                          \
96     }                                                                                                                  \
97   }                                                                                                                    \
98   XBT_EXPORT_NO_IMPORT s_xbt_log_category_t _XBT_LOGV(catName) = {                                                     \
99       &_XBT_LOGV(parent),                                                                                              \
100       NULL /* firstChild */,                                                                                           \
101       NULL /* nextSibling */,                                                                                          \
102       _XBT_STRINGIFY(catName),                                                                                         \
103       (desc),                                                                                                          \
104       0 /*initialized */,                                                                                              \
105       xbt_log_priority_uninitialized /* threshold */,                                                                  \
106       1 /* isThreshInherited */,                                                                                       \
107       NULL /* appender */,                                                                                             \
108       NULL /* layout */,                                                                                               \
109       1 /* additivity */                                                                                               \
110   }
111
112 /**
113  * @ingroup XBT_log
114  * @param catName name of new category
115  * @param parent father of the new category in the tree
116  * @param desc string describing the purpose of this category
117  * @hideinitializer
118  *
119  * Defines a new subcategory of the parent.
120  */
121 #define XBT_LOG_NEW_SUBCATEGORY(catName, parent, desc)                                                                 \
122   XBT_LOG_EXTERNAL_CATEGORY(parent);                                                                                   \
123   XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, (desc))
124
125 /**
126  * @ingroup XBT_log
127  * @param catName name of new category
128  * @param desc string describing the purpose of this category
129  * @hideinitializer
130  *
131  * Creates a new subcategory of the root category.
132  */
133 #define XBT_LOG_NEW_CATEGORY(catName, desc) XBT_LOG_NEW_SUBCATEGORY_helper(catName, XBT_LOG_ROOT_CAT, (desc))
134
135 /**
136  * @ingroup XBT_log
137  * @param cname name of the cat
138  * @hideinitializer
139  *
140  * Indicates which category is the default one.
141  */
142
143 #if defined(XBT_LOG_MAYDAY) /*|| defined (NLOG) * turning logging off */
144 # define XBT_LOG_DEFAULT_CATEGORY(cname)
145 #else
146 #define XBT_LOG_DEFAULT_CATEGORY(cname)                                                                                \
147   XBT_ATTRIB_UNUSED static xbt_log_category_t _XBT_LOGV(default) = &_XBT_LOGV(cname)
148 #endif
149
150 /**
151  * @ingroup XBT_log
152  * @param cname name of the cat
153  * @param desc string describing the purpose of this category
154  * @hideinitializer
155  *
156  * Creates a new subcategory of the root category and makes it the default (used by macros that don't explicitly
157  * specify a category).
158  */
159 #define XBT_LOG_NEW_DEFAULT_CATEGORY(cname, desc)                                                                      \
160   XBT_LOG_NEW_CATEGORY(cname, (desc));                                                                                 \
161   XBT_LOG_DEFAULT_CATEGORY(cname)
162
163 /**
164  * @ingroup XBT_log
165  * @param cname name of the cat
166  * @param parent name of the parent
167  * @param desc string describing the purpose of this category
168  * @hideinitializer
169  *
170  * Creates a new subcategory of the parent category and makes it the default
171  * (used by macros that don't explicitly specify a category).
172  */
173 #define XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname, parent, desc)                                                           \
174   XBT_LOG_NEW_SUBCATEGORY(cname, parent, (desc));                                                                      \
175   XBT_LOG_DEFAULT_CATEGORY(cname)
176
177 /**
178  * @ingroup XBT_log
179  * @param cname name of the cat
180  * @hideinitializer
181  *
182  * Indicates that a category you'll use in this file (e.g., to get subcategories of it) really lives in another file.
183  */
184
185 #define XBT_LOG_EXTERNAL_CATEGORY(cname) \
186    extern s_xbt_log_category_t _XBT_LOGV(cname)
187
188 /**
189  * @ingroup XBT_log
190  * @param cname name of the cat
191  * @hideinitializer
192  *
193  * Indicates that the default category of this file was declared in another file.
194  */
195
196 #define XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(cname) \
197    XBT_LOG_EXTERNAL_CATEGORY(cname);\
198    XBT_LOG_DEFAULT_CATEGORY(cname)
199
200 /* Functions you may call */
201
202 XBT_PUBLIC void xbt_log_control_set(const char* cs);
203
204 /* Forward declarations */
205 typedef struct xbt_log_appender_s  s_xbt_log_appender_t;
206 typedef s_xbt_log_appender_t* xbt_log_appender_t;
207 typedef struct xbt_log_layout_s  s_xbt_log_layout_t;
208 typedef s_xbt_log_layout_t* xbt_log_layout_t;
209 typedef struct xbt_log_event_s  s_xbt_log_event_t;
210 typedef s_xbt_log_event_t* xbt_log_event_t;
211 typedef struct xbt_log_category_s  s_xbt_log_category_t;
212 typedef s_xbt_log_category_t* xbt_log_category_t;
213
214 /* Do NOT access any members of this structure directly. FIXME: move to private? */
215
216 struct xbt_log_category_s {
217   xbt_log_category_t parent;
218   xbt_log_category_t firstChild;
219   xbt_log_category_t nextSibling;
220   const char *name;
221   const char *description;
222   int initialized;
223   int threshold;
224   int isThreshInherited;
225   xbt_log_appender_t appender;
226   xbt_log_layout_t layout;
227   int additivity;
228 };
229
230 struct xbt_log_event_s {
231   xbt_log_category_t cat;
232   e_xbt_log_priority_t priority;
233   const char *fileName;
234   const char *functionName;
235   int lineNum;
236   va_list ap;
237   char *buffer;
238   int buffer_size;
239 };
240
241 /**
242  * @ingroup XBT_log_implem
243  * @param cat the category (not only its name, but the variable)
244  * @param thresholdPriority the priority
245  *
246  * Programmatically alters a category's threshold priority (don't use).
247  */
248 XBT_PUBLIC void xbt_log_threshold_set(xbt_log_category_t cat, e_xbt_log_priority_t thresholdPriority);
249
250 /**
251  * @ingroup XBT_log_implem
252  * @param cat the category (not only its name, but the variable)
253  * @param app the appender
254  *
255  * Programmatically sets the category's appender. (the preferred interface is through xbt_log_control_set())
256  */
257 XBT_PUBLIC void xbt_log_appender_set(xbt_log_category_t cat, xbt_log_appender_t app);
258 /**
259  * @ingroup XBT_log_implem
260  * @param cat the category (not only its name, but the variable)
261  * @param lay the layout
262  *
263  * Programmatically sets the category's layout. (the preferred interface is through xbt_log_control_set())
264  */
265 XBT_PUBLIC void xbt_log_layout_set(xbt_log_category_t cat, xbt_log_layout_t lay);
266
267 /**
268  * @ingroup XBT_log_implem
269  * @param cat the category (not only its name, but the variable)
270  * @param additivity whether logging actions must be passed to parent.
271  *
272  * Programmatically sets whether the logging actions must be passed to the parent category.
273  * (the preferred interface is through xbt_log_control_set())
274  */
275 XBT_PUBLIC void xbt_log_additivity_set(xbt_log_category_t cat, int additivity);
276
277 /** @brief create a new simple layout
278  *
279  * This layout is not as flexible as the pattern one
280  */
281 XBT_PUBLIC xbt_log_layout_t xbt_log_layout_simple_new(const char* arg);
282 XBT_PUBLIC xbt_log_layout_t xbt_log_layout_format_new(const char* arg);
283 XBT_PUBLIC xbt_log_appender_t xbt_log_appender_stream(FILE* f);
284 XBT_PUBLIC xbt_log_appender_t xbt_log_appender_file_new(const char* arg);
285 XBT_PUBLIC xbt_log_appender_t xbt_log_appender2_file_new(const char* arg, int roll);
286
287 /* ********************************** */
288 /* Functions that you shouldn't call  */
289 /* ********************************** */
290 XBT_PUBLIC void xbt_log_init(int* argc, char** argv);
291 XBT_PUBLIC void _xbt_log_event_log(xbt_log_event_t ev, const char* fmt, ...) XBT_ATTRIB_PRINTF(2, 3);
292 XBT_PUBLIC int _xbt_log_cat_init(xbt_log_category_t category, e_xbt_log_priority_t priority);
293
294 #ifdef DLL_EXPORT
295 XBT_PUBLIC_DATA s_xbt_log_category_t _XBT_LOGV(XBT_LOG_ROOT_CAT);
296 #else
297 // If we `dllexport` the root log category, MinGW does not want us to take its address with the error:
298 // > initializer element is not constant
299 // When using auto-import, MinGW is happy.
300 // We should handle this for non-root log categories as well.
301 extern s_xbt_log_category_t _XBT_LOGV(XBT_LOG_ROOT_CAT);
302 #endif
303
304 extern xbt_log_appender_t xbt_log_default_appender;
305 extern xbt_log_layout_t xbt_log_default_layout;
306
307 /* ********************** */
308 /* Public functions again */
309 /* ********************** */
310
311 /**
312  * @ingroup XBT_log
313  * @param catName name of the category
314  * @param priority minimal priority to be enabled to return true (must be #e_xbt_log_priority_t)
315  * @hideinitializer
316  *
317  * Returns true if the given priority is enabled for the category.
318  * If you have expensive expressions that are computed outside of the log command and used only within it, you should
319  * make its evaluation conditional using this macro.
320  */
321 #define XBT_LOG_ISENABLED(catName, priority) _XBT_LOG_ISENABLEDV(_XBT_LOGV(catName), (priority))
322
323 /*
324  * Helper function that implements XBT_LOG_ISENABLED.
325  *
326  * NOTES
327  * First part is a compile-time constant.
328  * Call to xbt_log_cat_init only happens once.
329  */
330 #define _XBT_LOG_ISENABLEDV(catv, priority)                                                                            \
331   ((priority) >= XBT_LOG_STATIC_THRESHOLD && ((catv).initialized || _xbt_log_cat_init(&(catv), (priority))) &&         \
332    (priority) >= (catv).threshold)
333
334 /*
335  * Internal Macros
336  * Some kludge macros to ease maintenance. See how they're used below.
337  *
338  * IMPLEMENTATION NOTE: To reduce the parameter passing overhead of an enabled message, the many parameters passed to
339  * the logging function are packed in a structure. Since these values will be usually be passed to at least 3 functions,
340  * this is a win.
341  * It also allows adding new values (such as a timestamp) without breaking code.
342  * Setting the LogEvent's valist member is done inside _log_logEvent.
343  */
344
345 /* Logging Macros */
346
347 #ifdef XBT_LOG_MAYDAY
348 # define XBT_CLOG(cat, prio, ...) \
349   _XBT_IF_ONE_ARG(_XBT_CLOG_ARG1, _XBT_CLOG_ARGN, __VA_ARGS__)(__VA_ARGS__)
350 # define _XBT_CLOG_ARG1(f) \
351   fprintf(stderr,"%s:%d:\n" f, __FILE__, __LINE__)
352 # define _XBT_CLOG_ARGN(f, ...) \
353   fprintf(stderr,"%s:%d:\n" f, __FILE__, __LINE__, __VA_ARGS__)
354 # define XBT_LOG(...) XBT_CLOG(0, __VA_ARGS__)
355 #else
356
357 #define XBT_CLOG(category, prio, ...)                                                                                  \
358   do {                                                                                                                 \
359     if (_XBT_LOG_ISENABLEDV((category), (prio))) {                                                                     \
360       s_xbt_log_event_t _log_ev;                                                                                       \
361       _log_ev.cat          = &(category);                                                                              \
362       _log_ev.priority     = (prio);                                                                                   \
363       _log_ev.fileName     = __FILE__;                                                                                 \
364       _log_ev.functionName = __func__;                                                                                 \
365       _log_ev.lineNum      = __LINE__;                                                                                 \
366       _xbt_log_event_log(&_log_ev, __VA_ARGS__);                                                                       \
367     }                                                                                                                  \
368   } while (0)
369
370 #define XBT_LOG(prio, ...) XBT_CLOG(*_simgrid_log_category__default, (prio), __VA_ARGS__)
371
372 #endif
373
374 /** @ingroup XBT_log
375  *  @hideinitializer
376  * @param categ the category on which to log
377  * @param ... the format string and its arguments
378  *  @brief Log an event at the DEBUG priority on the specified category with these args.
379  */
380 #define XBT_CDEBUG(categ, ...) XBT_CLOG(_XBT_LOGV(categ), xbt_log_priority_debug, __VA_ARGS__)
381
382 /** @ingroup XBT_log
383  *  @hideinitializer
384  *  @brief Log an event at the VERB priority on the specified category with these args.
385  */
386 #define XBT_CVERB(categ, ...) XBT_CLOG(_XBT_LOGV(categ), xbt_log_priority_verbose, __VA_ARGS__)
387
388 /** @ingroup XBT_log
389  *  @hideinitializer
390  *  @brief Log an event at the INFO priority on the specified category with these args.
391  */
392 #define XBT_CINFO(categ, ...) XBT_CLOG(_XBT_LOGV(categ), xbt_log_priority_info, __VA_ARGS__)
393
394 /** @ingroup XBT_log
395  *  @hideinitializer
396  *  @brief Log an event at the WARN priority on the specified category with these args.
397  */
398 #define XBT_CWARN(categ, ...) XBT_CLOG(_XBT_LOGV(categ), xbt_log_priority_warning, __VA_ARGS__)
399
400 /** @ingroup XBT_log
401  *  @hideinitializer
402  *  @brief Log an event at the ERROR priority on the specified category with these args.
403  */
404 #define XBT_CERROR(categ, ...) XBT_CLOG(_XBT_LOGV(categ), xbt_log_priority_error, __VA_ARGS__)
405
406 /** @ingroup XBT_log
407  *  @hideinitializer
408  *  @brief Log an event at the CRITICAL priority on the specified category with these args.
409  */
410 #define XBT_CCRITICAL(categ, ...) XBT_CLOG(_XBT_LOGV(categ), xbt_log_priority_critical, __VA_ARGS__)
411
412 /** @ingroup XBT_log
413  *  @hideinitializer
414  *  @param ... the format string and its arguments
415  *  @brief Log an event at the DEBUG priority on the default category with these args.
416  */
417 #define XBT_DEBUG(...) XBT_LOG(xbt_log_priority_debug, __VA_ARGS__)
418
419 /** @ingroup XBT_log
420  *  @hideinitializer
421  *  @brief Log an event at the VERB priority on the default category with these args.
422  */
423 #define XBT_VERB(...) XBT_LOG(xbt_log_priority_verbose, __VA_ARGS__)
424
425 /** @ingroup XBT_log
426  *  @hideinitializer
427  *  @brief Log an event at the INFO priority on the default category with these args.
428  */
429 #define XBT_INFO(...) XBT_LOG(xbt_log_priority_info, __VA_ARGS__)
430
431 /** @ingroup XBT_log
432  *  @hideinitializer
433  *  @brief Log an event at the WARN priority on the default category with these args.
434  */
435 #define XBT_WARN(...) XBT_LOG(xbt_log_priority_warning, __VA_ARGS__)
436
437 /** @ingroup XBT_log
438  *  @hideinitializer
439  *  @brief Log an event at the ERROR priority on the default category with these args.
440  */
441 #define XBT_ERROR(...) XBT_LOG(xbt_log_priority_error, __VA_ARGS__)
442
443 /** @ingroup XBT_log
444  *  @hideinitializer
445  *  @brief Log an event at the CRITICAL priority on the default category with these args.
446  */
447 #define XBT_CRITICAL(...) XBT_LOG(xbt_log_priority_critical, __VA_ARGS__)
448
449 #define _XBT_IN_OUT(...) \
450   _XBT_IF_ONE_ARG(_XBT_IN_OUT_ARG1, _XBT_IN_OUT_ARGN, __VA_ARGS__)(__VA_ARGS__)
451 #define _XBT_IN_OUT_ARG1(fmt) XBT_LOG(xbt_log_priority_trace, (fmt), __func__)
452 #define _XBT_IN_OUT_ARGN(fmt, ...) XBT_LOG(xbt_log_priority_trace, (fmt), __func__, __VA_ARGS__)
453
454 /** @ingroup XBT_log
455  *  @hideinitializer
456  *  @brief Log at TRACE priority that we entered in current function, appending a user specified format.
457  */
458 #define XBT_IN(...) _XBT_IN_OUT(">> begin of %s" __VA_ARGS__)
459
460 /** @ingroup XBT_log
461  *  @hideinitializer
462  *  @brief Log at TRACE priority that we exited the current function, appending a user specified format.
463  */
464 #define XBT_OUT(...) _XBT_IN_OUT("<< end of %s" __VA_ARGS__)
465
466 /** @ingroup XBT_log
467  *  @hideinitializer
468  *  @brief Log at TRACE priority a message indicating that we reached that point, appending a user specified format.
469  */
470 #define XBT_HERE(...) XBT_LOG(xbt_log_priority_trace, "-- was here" __VA_ARGS__)
471
472 /** @ingroup XBT_log
473  *  @hideinitializer
474  *  @brief Log help messages through category xbt.xbt_help.
475  */
476 #define XBT_HELP(...) XBT_CINFO(xbt_help, __VA_ARGS__)
477
478 SG_END_DECL
479 #endif /* XBT_LOG_H */