Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7b919f069b1c3b3b5c92c5b64cdd9afc8a706b9f
[simgrid.git] / src / xbt / log.c
1 /* log - a generic logging facility in the spirit of log4j                  */
2
3 /* Copyright (c) 2004-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdarg.h>
10 #include <ctype.h>
11 #include <stdio.h>              /* snprintf */
12 #include <stdlib.h>             /* snprintf */
13
14 #include "src/internal_config.h"
15
16 #include "src/xbt_modinter.h"
17
18 #include "src/xbt/log_private.h"
19 #include "xbt/asserts.h"
20 #include "xbt/dynar.h"
21 #include "xbt/ex.h"
22 #include "xbt/misc.h"
23 #include "xbt/str.h"
24 #include "xbt/sysdep.h"
25 #include "xbt/xbt_os_thread.h"
26
27 int xbt_log_no_loc = 0; /* if set to true (with --log=no_loc), file localization will be omitted (for tesh tests) */
28 static xbt_os_mutex_t log_cat_init_mutex = NULL;
29
30 /** \addtogroup XBT_log
31  *
32  *  For more information, please refer to @ref outcomes_logs Section.
33  */
34
35 xbt_log_appender_t xbt_log_default_appender = NULL;     /* set in log_init */
36 xbt_log_layout_t xbt_log_default_layout = NULL; /* set in log_init */
37
38 typedef struct {
39   char *catname;
40   char *fmt;
41   e_xbt_log_priority_t thresh;
42   int additivity;
43   xbt_log_appender_t appender;
44 } s_xbt_log_setting_t, *xbt_log_setting_t;
45
46 static xbt_dynar_t xbt_log_settings = NULL;
47
48 static void _free_setting(void *s)
49 {
50   xbt_log_setting_t set = *(xbt_log_setting_t *) s;
51   if (set) {
52     free(set->catname);
53     free(set->fmt);
54     free(set);
55   }
56 }
57
58 static void _xbt_log_cat_apply_set(xbt_log_category_t category, xbt_log_setting_t setting);
59
60 const char *xbt_log_priority_names[8] = {
61   "NONE",
62   "TRACE",
63   "DEBUG",
64   "VERBOSE",
65   "INFO",
66   "WARNING",
67   "ERROR",
68   "CRITICAL"
69 };
70
71 s_xbt_log_category_t _XBT_LOGV(XBT_LOG_ROOT_CAT) = {
72   NULL /*parent */ , NULL /* firstChild */ , NULL /* nextSibling */ ,
73       "root", "The common ancestor for all categories",
74       0 /*initialized */, xbt_log_priority_uninitialized /* threshold */ ,
75       0 /* isThreshInherited */ ,
76       NULL /* appender */ , NULL /* layout */ ,
77       0                         /* additivity */
78 };
79
80 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(log, xbt, "Loggings from the logging mechanism itself");
81
82 /* create the default appender and install it in the root category,
83    which were already created (damnit. Too slow little beetle) */
84 void xbt_log_preinit(void)
85 {
86   xbt_log_default_appender = xbt_log_appender_file_new(NULL);
87   xbt_log_default_layout = xbt_log_layout_simple_new(NULL);
88   _XBT_LOGV(XBT_LOG_ROOT_CAT).appender = xbt_log_default_appender;
89   _XBT_LOGV(XBT_LOG_ROOT_CAT).layout = xbt_log_default_layout;
90   log_cat_init_mutex = xbt_os_mutex_init();
91 }
92
93 static void xbt_log_connect_categories(void)
94 {
95   /* Connect our log channels: that must be done manually under windows */
96   /* Also permit that they are correctly listed by xbt_log_help_categories() */
97
98   /* xbt */
99   XBT_LOG_CONNECT(xbt);
100   XBT_LOG_CONNECT(log);
101   XBT_LOG_CONNECT(module);
102   XBT_LOG_CONNECT(replay);
103   XBT_LOG_CONNECT(strbuff);
104   XBT_LOG_CONNECT(xbt_cfg);
105   XBT_LOG_CONNECT(xbt_dict);
106   XBT_LOG_CONNECT(xbt_dict_cursor);
107   XBT_LOG_CONNECT(xbt_dict_elm);
108   XBT_LOG_CONNECT(xbt_dyn);
109   XBT_LOG_CONNECT(xbt_ex);
110   XBT_LOG_CONNECT(xbt_backtrace);
111   XBT_LOG_CONNECT(xbt_exception);
112   XBT_LOG_CONNECT(xbt_fifo);
113   XBT_LOG_CONNECT(xbt_graph);
114   XBT_LOG_CONNECT(xbt_heap);
115   XBT_LOG_CONNECT(xbt_lib);
116   XBT_LOG_CONNECT(xbt_mallocator);
117   XBT_LOG_CONNECT(xbt_matrix);
118   XBT_LOG_CONNECT(xbt_memory_map);
119   XBT_LOG_CONNECT(xbt_parmap);
120   XBT_LOG_CONNECT(xbt_sync);
121   XBT_LOG_CONNECT(xbt_sync_os);
122
123 #ifdef simgrid_EXPORTS
124   /* The following categories are only defined in libsimgrid */
125
126   /* bindings */
127 #if HAVE_LUA
128   XBT_LOG_CONNECT(lua);
129   XBT_LOG_CONNECT(lua_host);
130   XBT_LOG_CONNECT(lua_platf);
131   XBT_LOG_CONNECT(lua_debug);
132 #endif
133
134   /* instr */
135   XBT_LOG_CONNECT(instr);
136   XBT_LOG_CONNECT(instr_api);
137   XBT_LOG_CONNECT(instr_config);
138   XBT_LOG_CONNECT(instr_msg);
139   XBT_LOG_CONNECT(instr_msg_process);
140   XBT_LOG_CONNECT(instr_paje_containers);
141   XBT_LOG_CONNECT(instr_paje_header);
142   XBT_LOG_CONNECT(instr_paje_trace);
143   XBT_LOG_CONNECT(instr_paje_types);
144   XBT_LOG_CONNECT(instr_paje_values);
145   XBT_LOG_CONNECT(instr_resource);
146   XBT_LOG_CONNECT(instr_routing);
147   XBT_LOG_CONNECT(instr_surf);
148   XBT_LOG_CONNECT(instr_trace);
149   XBT_LOG_CONNECT(instr_TI_trace);
150
151   /* jedule */
152 #if HAVE_JEDULE
153   XBT_LOG_CONNECT(jedule);
154   XBT_LOG_CONNECT(jed_sd);
155 #endif
156
157   /* mc */
158 #if HAVE_MC
159   XBT_LOG_CONNECT(mc);
160   XBT_LOG_CONNECT(mc_checkpoint);
161   XBT_LOG_CONNECT(mc_comm_determinism);
162   XBT_LOG_CONNECT(mc_compare);
163   XBT_LOG_CONNECT(mc_dwarf);
164   XBT_LOG_CONNECT(mc_hash);
165   XBT_LOG_CONNECT(mc_liveness);
166   XBT_LOG_CONNECT(mc_memory);
167   XBT_LOG_CONNECT(mc_page_snapshot);
168   XBT_LOG_CONNECT(mc_request);
169   XBT_LOG_CONNECT(mc_safety);
170   XBT_LOG_CONNECT(mc_VisitedState);
171   XBT_LOG_CONNECT(mc_client);
172   XBT_LOG_CONNECT(mc_client_api);
173   XBT_LOG_CONNECT(mc_comm_pattern);
174   XBT_LOG_CONNECT(mc_process);
175   XBT_LOG_CONNECT(mc_protocol);
176   XBT_LOG_CONNECT(mc_Channel);
177   XBT_LOG_CONNECT(mc_ModelChecker);
178   XBT_LOG_CONNECT(mc_RegionSnaphot);
179   XBT_LOG_CONNECT(mc_Session);
180   XBT_LOG_CONNECT(mc_state);
181 #endif
182   XBT_LOG_CONNECT(mc_global);
183   XBT_LOG_CONNECT(mc_config);
184   XBT_LOG_CONNECT(mc_record);
185
186   /* msg */
187   XBT_LOG_CONNECT(msg);
188   XBT_LOG_CONNECT(msg_action);
189   XBT_LOG_CONNECT(msg_gos);
190   XBT_LOG_CONNECT(msg_io);
191   XBT_LOG_CONNECT(msg_kernel);
192   XBT_LOG_CONNECT(msg_mailbox);
193   XBT_LOG_CONNECT(msg_process);
194   XBT_LOG_CONNECT(msg_synchro);
195   XBT_LOG_CONNECT(msg_task);
196   XBT_LOG_CONNECT(msg_vm);
197
198   /* s4u */
199   XBT_LOG_CONNECT(s4u);
200   XBT_LOG_CONNECT(s4u_activity);
201   XBT_LOG_CONNECT(s4u_actor);
202   XBT_LOG_CONNECT(s4u_netzone);
203   XBT_LOG_CONNECT(s4u_channel);
204   XBT_LOG_CONNECT(s4u_comm);
205   XBT_LOG_CONNECT(s4u_file);
206    
207   /* sg */
208   XBT_LOG_CONNECT(sg_host);
209
210   /* simdag */
211   XBT_LOG_CONNECT(sd);
212   XBT_LOG_CONNECT(sd_daxparse);
213 #if HAVE_GRAPHVIZ
214   XBT_LOG_CONNECT(sd_dotparse);
215 #endif
216   XBT_LOG_CONNECT(sd_kernel);
217   XBT_LOG_CONNECT(sd_task);
218
219   /* simix */
220   XBT_LOG_CONNECT(simix);
221   XBT_LOG_CONNECT(simix_context);
222   XBT_LOG_CONNECT(simix_deployment);
223   XBT_LOG_CONNECT(simix_environment);
224   XBT_LOG_CONNECT(simix_host);
225   XBT_LOG_CONNECT(simix_io);
226   XBT_LOG_CONNECT(simix_kernel);
227   XBT_LOG_CONNECT(simix_network);
228   XBT_LOG_CONNECT(simix_process);
229   XBT_LOG_CONNECT(simix_popping);
230   XBT_LOG_CONNECT(simix_synchro);
231   XBT_LOG_CONNECT(simix_vm);
232
233   /* smpi */
234   /* SMPI categories are connected in smpi_global.c */
235
236   /* surf */
237   XBT_LOG_CONNECT(surf);
238   XBT_LOG_CONNECT(surf_config);
239   XBT_LOG_CONNECT(surf_cpu);
240   XBT_LOG_CONNECT(surf_cpu_cas);
241   XBT_LOG_CONNECT(surf_cpu_ti);
242   XBT_LOG_CONNECT(surf_energy);
243   XBT_LOG_CONNECT(surf_kernel);
244   XBT_LOG_CONNECT(surf_lagrange);
245   XBT_LOG_CONNECT(surf_lagrange_dichotomy);
246   XBT_LOG_CONNECT(surf_maxmin);
247   XBT_LOG_CONNECT(surf_network);
248 #if HAVE_NS3
249   XBT_LOG_CONNECT(ns3);
250 #endif
251   XBT_LOG_CONNECT(surf_parse);
252   XBT_LOG_CONNECT(surf_route);
253   XBT_LOG_CONNECT(surf_routing_generic);
254   XBT_LOG_CONNECT(surf_route_cluster);
255   XBT_LOG_CONNECT(surf_route_cluster_torus);
256   XBT_LOG_CONNECT(surf_route_cluster_dragonfly);
257   XBT_LOG_CONNECT(surf_route_dijkstra);
258   XBT_LOG_CONNECT(surf_route_fat_tree);
259   XBT_LOG_CONNECT(surf_route_floyd);
260   XBT_LOG_CONNECT(surf_route_full);
261   XBT_LOG_CONNECT(surf_route_none);
262   XBT_LOG_CONNECT(surf_route_vivaldi);
263   XBT_LOG_CONNECT(surf_storage);
264   XBT_LOG_CONNECT(surf_trace);
265   XBT_LOG_CONNECT(surf_vm);
266   XBT_LOG_CONNECT(surf_host);
267    
268 #endif /* simgrid_EXPORTS */
269 }
270
271 static void xbt_log_help(void);
272 static void xbt_log_help_categories(void);
273
274 /** @brief Get all logging settings from the command line
275  *
276  * xbt_log_control_set() is called on each string we got from cmd line
277  */
278 void xbt_log_init(int *argc, char **argv)
279 {
280   unsigned help_requested = 0;  /* 1: logs; 2: categories */
281   int i, j;
282   char *opt;
283
284   /* uncomment to set the LOG category to debug directly */
285   //    _XBT_LOGV(log).threshold = xbt_log_priority_debug;
286
287   xbt_log_connect_categories();
288
289   /* Set logs and init log submodule */
290   for (j = i = 1; i < *argc; i++) {
291     if (!strncmp(argv[i], "--log=", strlen("--log="))) {
292       opt = strchr(argv[i], '=');
293       opt++;
294       xbt_log_control_set(opt);
295       XBT_DEBUG("Did apply '%s' as log setting", opt);
296     } else if (!strcmp(argv[i], "--help-logs")) {
297       help_requested |= 1;
298     } else if (!strcmp(argv[i], "--help-log-categories")) {
299       help_requested |= 2;
300     } else {
301       argv[j++] = argv[i];
302     }
303   }
304   if (j < *argc) {
305     argv[j] = NULL;
306     *argc = j;
307   }
308
309   if (help_requested) {
310     if (help_requested & 1)
311       xbt_log_help();
312     if (help_requested & 2)
313       xbt_log_help_categories();
314     exit(0);
315   }
316 }
317
318 static void log_cat_exit(xbt_log_category_t cat)
319 {
320   xbt_log_category_t child;
321
322   if (cat->appender) {
323     if (cat->appender->free_)
324       cat->appender->free_(cat->appender);
325     free(cat->appender);
326   }
327   if (cat->layout) {
328     if (cat->layout->free_)
329       cat->layout->free_(cat->layout);
330     free(cat->layout);
331   }
332
333   for (child = cat->firstChild; child != NULL; child = child->nextSibling)
334     log_cat_exit(child);
335 }
336
337 void xbt_log_postexit(void)
338 {
339   XBT_VERB("Exiting log");
340   xbt_os_mutex_destroy(log_cat_init_mutex);
341   xbt_dynar_free(&xbt_log_settings);
342   log_cat_exit(&_XBT_LOGV(XBT_LOG_ROOT_CAT));
343 }
344
345  /* Size of the static string in which we  build the log string */
346 #define XBT_LOG_STATIC_BUFFER_SIZE 2048
347 /* Minimum size of the dynamic string in which we build the log string
348    (should be greater than XBT_LOG_STATIC_BUFFER_SIZE) */
349 #define XBT_LOG_DYNAMIC_BUFFER_SIZE 4096
350
351 void _xbt_log_event_log(xbt_log_event_t ev, const char *fmt, ...)
352 {
353   xbt_log_category_t cat = ev->cat;
354
355   xbt_assert(ev->priority >= 0, "Negative logging priority naturally forbidden");
356   xbt_assert(ev->priority < sizeof(xbt_log_priority_names), "Priority %d is greater than the biggest allowed value",
357              ev->priority);
358
359   do {
360     xbt_log_appender_t appender = cat->appender;
361
362     if (!appender)
363       continue;                 /* No appender, try next */
364
365     xbt_assert(cat->layout, "No valid layout for the appender of category %s", cat->name);
366
367     /* First, try with a static buffer */
368     if (XBT_LOG_STATIC_BUFFER_SIZE) {
369       char buff[XBT_LOG_STATIC_BUFFER_SIZE];
370       int done;
371       ev->buffer = buff;
372       ev->buffer_size = sizeof buff;
373       va_start(ev->ap, fmt);
374       done = cat->layout->do_layout(cat->layout, ev, fmt);
375       va_end(ev->ap);
376       if (done) {
377         appender->do_append(appender, buff);
378         continue;               /* Ok, that worked: go next */
379       }
380     }
381
382     /* The static buffer was too small, use a dynamically expanded one */
383     ev->buffer_size = XBT_LOG_DYNAMIC_BUFFER_SIZE;
384     ev->buffer = xbt_malloc(ev->buffer_size);
385     while (1) {
386       int done;
387       va_start(ev->ap, fmt);
388       done = cat->layout->do_layout(cat->layout, ev, fmt);
389       va_end(ev->ap);
390       if (done)
391         break;                  /* Got it */
392       ev->buffer_size *= 2;
393       ev->buffer = xbt_realloc(ev->buffer, ev->buffer_size);
394     }
395     appender->do_append(appender, ev->buffer);
396     xbt_free(ev->buffer);
397
398   } while (cat->additivity && (cat = cat->parent, 1));
399 }
400
401 #undef XBT_LOG_DYNAMIC_BUFFER_SIZE
402 #undef XBT_LOG_STATIC_BUFFER_SIZE
403
404 /* NOTE:
405  *
406  * The standard logging macros use _XBT_LOG_ISENABLED, which calls _xbt_log_cat_init().  Thus, if we want to avoid an
407  * infinite recursion, we can not use the standard logging macros in _xbt_log_cat_init(), and in all functions called
408  * from it.
409  *
410  * To circumvent the problem, we define the macro_xbt_log_init() as (0) for the length of the affected functions, and
411  * we do not forget to undefine it at the end!
412  */
413
414 static void _xbt_log_cat_apply_set(xbt_log_category_t category, xbt_log_setting_t setting)
415 {
416 #define _xbt_log_cat_init(a, b) (0)
417
418   if (setting->thresh != xbt_log_priority_uninitialized) {
419     xbt_log_threshold_set(category, setting->thresh);
420
421     XBT_DEBUG("Apply settings for category '%s': set threshold to %s (=%d)",
422            category->name, xbt_log_priority_names[category->threshold], category->threshold);
423   }
424
425   if (setting->fmt) {
426     xbt_log_layout_set(category, xbt_log_layout_format_new(setting->fmt));
427
428     XBT_DEBUG("Apply settings for category '%s': set format to %s", category->name, setting->fmt);
429   }
430
431   if (setting->additivity != -1) {
432     xbt_log_additivity_set(category, setting->additivity);
433
434     XBT_DEBUG("Apply settings for category '%s': set additivity to %s",
435            category->name, (setting->additivity ? "on" : "off"));
436   }
437   if (setting->appender) {
438     xbt_log_appender_set(category, setting->appender);
439     if (!category->layout)
440       xbt_log_layout_set(category, xbt_log_layout_simple_new(NULL));
441     category->additivity = 0;
442     XBT_DEBUG("Set %p as appender of category '%s'", setting->appender, category->name);
443   }
444 #undef _xbt_log_cat_init
445 }
446
447 /*
448  * This gets called the first time a category is referenced and performs the initialization.
449  * Also resets threshold to inherited!
450  */
451 int _xbt_log_cat_init(xbt_log_category_t category, e_xbt_log_priority_t priority)
452 {
453 #define _xbt_log_cat_init(a, b) (0)
454
455   if (log_cat_init_mutex != NULL)
456     xbt_os_mutex_acquire(log_cat_init_mutex);
457
458   if (category->initialized) {
459     if (log_cat_init_mutex != NULL)
460       xbt_os_mutex_release(log_cat_init_mutex);
461     return priority >= category->threshold;
462   }
463
464   unsigned int cursor;
465   xbt_log_setting_t setting = NULL;
466   int found = 0;
467
468   XBT_DEBUG("Initializing category '%s' (firstChild=%s, nextSibling=%s)", category->name,
469          (category->firstChild ? category->firstChild->name : "none"),
470          (category->nextSibling ? category->nextSibling->name : "none"));
471
472   if (category == &_XBT_LOGV(XBT_LOG_ROOT_CAT)) {
473     category->threshold = xbt_log_priority_info;
474     category->appender = xbt_log_default_appender;
475     category->layout = xbt_log_default_layout;
476   } else {
477     if (!category->parent)
478       category->parent = &_XBT_LOGV(XBT_LOG_ROOT_CAT);
479
480     XBT_DEBUG("Set %s (%s) as father of %s ", category->parent->name,
481            (category->parent->initialized ? xbt_log_priority_names[category->parent->threshold] : "uninited"),
482            category->name);
483     xbt_log_parent_set(category, category->parent);
484
485     if (XBT_LOG_ISENABLED(log, xbt_log_priority_debug)) {
486       char *buf, *res = NULL;
487       xbt_log_category_t cpp = category->parent->firstChild;
488       while (cpp) {
489         if (res) {
490           buf = bprintf("%s %s", res, cpp->name);
491           free(res);
492           res = buf;
493         } else {
494           res = xbt_strdup(cpp->name);
495         }
496         cpp = cpp->nextSibling;
497       }
498
499       XBT_DEBUG("Children of %s: %s; nextSibling: %s", category->parent->name, res,
500              (category->parent->nextSibling ? category->parent->nextSibling->name : "none"));
501
502       free(res);
503     }
504   }
505
506   /* Apply the control */
507   if (xbt_log_settings) {
508     xbt_assert(category, "NULL category");
509     xbt_assert(category->name);
510
511     xbt_dynar_foreach(xbt_log_settings, cursor, setting) {
512       xbt_assert(setting, "Damnit, NULL cat in the list");
513       xbt_assert(setting->catname, "NULL setting(=%p)->catname", (void *) setting);
514
515       if (!strcmp(setting->catname, category->name)) {
516         found = 1;
517         _xbt_log_cat_apply_set(category, setting);
518         xbt_dynar_cursor_rm(xbt_log_settings, &cursor);
519       }
520     }
521
522     if (!found)
523       XBT_DEBUG("Category '%s': inherited threshold = %s (=%d)",
524                 category->name, xbt_log_priority_names[category->threshold], category->threshold);
525   }
526
527   category->initialized = 1;
528   if (log_cat_init_mutex != NULL)
529     xbt_os_mutex_release(log_cat_init_mutex);
530   return priority >= category->threshold;
531
532 #undef _xbt_log_cat_init
533 }
534
535 void xbt_log_parent_set(xbt_log_category_t cat, xbt_log_category_t parent)
536 {
537   xbt_assert(cat, "NULL category to be given a parent");
538   xbt_assert(parent, "The parent category of %s is NULL", cat->name);
539
540   /* if the category is initialized, unlink from current parent */
541   if (cat->initialized) {
542     xbt_log_category_t *cpp = &cat->parent->firstChild;
543
544     while (*cpp != cat && *cpp != NULL) {
545       cpp = &(*cpp)->nextSibling;
546     }
547
548     xbt_assert(*cpp == cat);
549     *cpp = cat->nextSibling;
550   }
551
552   cat->parent = parent;
553   cat->nextSibling = parent->firstChild;
554
555   parent->firstChild = cat;
556
557   if (!parent->initialized)
558     _xbt_log_cat_init(parent, xbt_log_priority_uninitialized /* ignored */ );
559
560   cat->threshold = parent->threshold;
561
562   cat->isThreshInherited = 1;
563 }
564
565 static void _set_inherited_thresholds(xbt_log_category_t cat)
566 {
567   xbt_log_category_t child = cat->firstChild;
568
569   for (; child != NULL; child = child->nextSibling) {
570     if (child->isThreshInherited) {
571       if (cat != &_XBT_LOGV(log))
572         XBT_VERB("Set category threshold of %s to %s (=%d)",
573               child->name, xbt_log_priority_names[cat->threshold], cat->threshold);
574       child->threshold = cat->threshold;
575       _set_inherited_thresholds(child);
576     }
577   }
578 }
579
580 void xbt_log_threshold_set(xbt_log_category_t cat, e_xbt_log_priority_t threshold)
581 {
582   cat->threshold = threshold;
583   cat->isThreshInherited = 0;
584
585   _set_inherited_thresholds(cat);
586 }
587
588 static xbt_log_setting_t _xbt_log_parse_setting(const char *control_string)
589 {
590   const char *orig_control_string = control_string;
591   xbt_log_setting_t set = xbt_new(s_xbt_log_setting_t, 1);
592   const char *name, *dot, *eq;
593
594   set->catname = NULL;
595   set->thresh = xbt_log_priority_uninitialized;
596   set->fmt = NULL;
597   set->additivity = -1;
598   set->appender = NULL;
599
600   if (!*control_string)
601     return set;
602   XBT_DEBUG("Parse log setting '%s'", control_string);
603
604   control_string += strspn(control_string, " ");
605   name = control_string;
606   control_string += strcspn(control_string, ".= ");
607   dot = control_string;
608   control_string += strcspn(control_string, ":= ");
609   eq = control_string;
610
611   if(*dot != '.' && (*eq == '=' || *eq == ':'))
612     xbt_die ("Invalid control string '%s'", orig_control_string);
613
614   if (!strncmp(dot + 1, "threshold", (size_t) (eq - dot - 1))) {
615     int i;
616     char *neweq = xbt_strdup(eq + 1);
617     char *p = neweq - 1;
618
619     while (*(++p) != '\0') {
620       if (*p >= 'a' && *p <= 'z') {
621         *p -= 'a' - 'A';
622       }
623     }
624
625     XBT_DEBUG("New priority name = %s", neweq);
626     for (i = 0; i < xbt_log_priority_infinite; i++) {
627       if (!strncmp(xbt_log_priority_names[i], neweq, p - eq)) {
628         XBT_DEBUG("This is priority %d", i);
629         break;
630       }
631     }
632
633     if(i<XBT_LOG_STATIC_THRESHOLD){
634      fprintf(stderr,
635          "Priority '%s' (in setting '%s') is above allowed priority '%s'.\n\n"
636          "Compiling SimGrid with -DNDEBUG forbids the levels 'trace' and 'debug'\n"
637          "while -DNLOG forbids any logging, at any level.",
638              eq + 1, name, xbt_log_priority_names[XBT_LOG_STATIC_THRESHOLD]);
639      exit(1);
640     }else if (i < xbt_log_priority_infinite) {
641       set->thresh = (e_xbt_log_priority_t) i;
642     } else {
643       THROWF(arg_error, 0,
644              "Unknown priority name: %s (must be one of: trace,debug,verbose,info,warning,error,critical)", eq + 1);
645     }
646     free(neweq);
647   } else if (!strncmp(dot + 1, "add", (size_t) (eq - dot - 1)) ||
648              !strncmp(dot + 1, "additivity", (size_t) (eq - dot - 1))) {
649     char *neweq = xbt_strdup(eq + 1);
650     char *p = neweq - 1;
651
652     while (*(++p) != '\0') {
653       if (*p >= 'a' && *p <= 'z') {
654         *p -= 'a' - 'A';
655       }
656     }
657     if (!strcmp(neweq, "ON") || !strcmp(neweq, "YES") || !strcmp(neweq, "1")) {
658       set->additivity = 1;
659     } else {
660       set->additivity = 0;
661     }
662     free(neweq);
663   } else if (!strncmp(dot + 1, "app", (size_t) (eq - dot - 1)) ||
664              !strncmp(dot + 1, "appender", (size_t) (eq - dot - 1))) {
665     char *neweq = xbt_strdup(eq + 1);
666
667     if (!strncmp(neweq, "file:", 5)) {
668       set->appender = xbt_log_appender_file_new(neweq + 5);
669     }else if (!strncmp(neweq, "rollfile:", 9)) {
670     set->appender = xbt_log_appender2_file_new(neweq + 9,1);
671     }else if (!strncmp(neweq, "splitfile:", 10)) {
672     set->appender = xbt_log_appender2_file_new(neweq + 10,0);
673     } else {
674       THROWF(arg_error, 0, "Unknown appender log type: '%s'", neweq);
675     }
676     free(neweq);
677   } else if (!strncmp(dot + 1, "fmt", (size_t) (eq - dot - 1))) {
678     set->fmt = xbt_strdup(eq + 1);
679   } else {
680     char buff[512];
681     snprintf(buff, MIN(512, eq - dot), "%s", dot + 1);
682     THROWF(arg_error, 0, "Unknown setting of the log category: '%s'", buff);
683   }
684   set->catname = (char *) xbt_malloc(dot - name + 1);
685
686   memcpy(set->catname, name, dot - name);
687   set->catname[dot - name] = '\0';      /* Just in case */
688   XBT_DEBUG("This is for cat '%s'", set->catname);
689
690   return set;
691 }
692
693 static xbt_log_category_t _xbt_log_cat_searchsub(xbt_log_category_t cat, char *name)
694 {
695   xbt_log_category_t child, res;
696
697   XBT_DEBUG("Search '%s' into '%s' (firstChild='%s'; nextSibling='%s')", name,
698          cat->name, (cat->firstChild ? cat->firstChild->name : "none"),
699          (cat->nextSibling ? cat->nextSibling->name : "none"));
700   if (!strcmp(cat->name, name))
701     return cat;
702
703   for (child = cat->firstChild; child != NULL; child = child->nextSibling) {
704     XBT_DEBUG("Dig into %s", child->name);
705     res = _xbt_log_cat_searchsub(child, name);
706     if (res)
707       return res;
708   }
709
710   return NULL;
711 }
712
713 /**
714  * \ingroup XBT_log
715  * \param control_string What to parse
716  *
717  * Typically passed a command-line argument. The string has the syntax:
718  *
719  *      ( [category] "." [keyword] ":" value (" ")... )...
720  *
721  * where [category] is one the category names (see \ref XBT_log_cats for a complete list of the ones defined in the
722  * SimGrid library) and keyword is one of the following:
723  *
724  *    - thres: category's threshold priority. Possible values:
725  *             TRACE,DEBUG,VERBOSE,INFO,WARNING,ERROR,CRITICAL
726  *    - add or additivity: whether the logging actions must be passed to the parent category.
727  *      Possible values: 0, 1, no, yes, on, off.
728  *      Default value: yes.
729  *    - fmt: the format to use. See \ref log_use_conf_fmt for more information.
730  *    - app or appender: the appender to use. See \ref log_use_conf_app for more information.
731  */
732 void xbt_log_control_set(const char *control_string)
733 {
734   xbt_log_setting_t set;
735
736   /* To split the string in commands, and the cursors */
737   xbt_dynar_t set_strings;
738   char *str;
739   unsigned int cpt;
740
741   if (!control_string)
742     return;
743   XBT_DEBUG("Parse log settings '%s'", control_string);
744
745   /* Special handling of no_loc request, which asks for any file localization to be omitted (for tesh runs) */
746   if (!strcmp(control_string, "no_loc")) {
747     xbt_log_no_loc = 1;
748     return;
749   }
750   /* some initialization if this is the first time that this get called */
751   if (xbt_log_settings == NULL)
752     xbt_log_settings = xbt_dynar_new(sizeof(xbt_log_setting_t), _free_setting);
753
754   /* split the string, and remove empty entries */
755   set_strings = xbt_str_split_quoted(control_string);
756
757   if (xbt_dynar_is_empty(set_strings)) {     /* vicious user! */
758     xbt_dynar_free(&set_strings);
759     return;
760   }
761
762   /* Parse each entry and either use it right now (if the category was already created), or store it for further use */
763   xbt_dynar_foreach(set_strings, cpt, str) {
764     xbt_log_category_t cat = NULL;
765
766     set = _xbt_log_parse_setting(str);
767     cat = _xbt_log_cat_searchsub(&_XBT_LOGV(XBT_LOG_ROOT_CAT), set->catname);
768
769     if (cat) {
770       XBT_DEBUG("Apply directly");
771       _xbt_log_cat_apply_set(cat, set);
772       _free_setting((void *) &set);
773     } else {
774       XBT_DEBUG("Store for further application");
775       XBT_DEBUG("push %p to the settings", (void *) set);
776       xbt_dynar_push(xbt_log_settings, &set);
777     }
778   }
779   xbt_dynar_free(&set_strings);
780 }
781
782 void xbt_log_appender_set(xbt_log_category_t cat, xbt_log_appender_t app)
783 {
784   if (cat->appender) {
785     if (cat->appender->free_)
786       cat->appender->free_(cat->appender);
787     free(cat->appender);
788   }
789   cat->appender = app;
790 }
791
792 void xbt_log_layout_set(xbt_log_category_t cat, xbt_log_layout_t lay)
793 {
794 #define _xbt_log_cat_init(a, b) (0)
795   if (!cat->appender) {
796     XBT_VERB ("No appender to category %s. Setting the file appender as default", cat->name);
797     xbt_log_appender_set(cat, xbt_log_appender_file_new(NULL));
798   }
799   if (cat->layout) {
800     if (cat->layout->free_) {
801       cat->layout->free_(cat->layout);
802     }
803     free(cat->layout);
804   }
805   cat->layout = lay;
806   xbt_log_additivity_set(cat, 0);
807 #undef _xbt_log_cat_init
808 }
809
810 void xbt_log_additivity_set(xbt_log_category_t cat, int additivity)
811 {
812   cat->additivity = additivity;
813 }
814
815 static void xbt_log_help(void)
816 {
817   printf(
818 "Description of the logging output:\n"
819 "\n"
820 "   Threshold configuration: --log=CATEGORY_NAME.thres:PRIORITY_LEVEL\n"
821 "      CATEGORY_NAME: defined in code with function 'XBT_LOG_NEW_CATEGORY'\n"
822 "      PRIORITY_LEVEL: the level to print (trace,debug,verbose,info,warning,error,critical)\n"
823 "         -> trace: enter and return of some functions\n"
824 "         -> debug: crufty output\n"
825 "         -> verbose: verbose output for the user wanting more\n"
826 "         -> info: output about the regular functionning\n"
827 "         -> warning: minor issue encountered\n"
828 "         -> error: issue encountered\n"
829 "         -> critical: major issue encountered\n"
830 "\n"
831 "   Format configuration: --log=CATEGORY_NAME.fmt:OPTIONS\n"
832 "      OPTIONS may be:\n"
833 "         -> %%%%: the %% char\n"
834 "         -> %%n: platform-dependent line separator (LOG4J compatible)\n"
835 "         -> %%e: plain old space (SimGrid extension)\n"
836 "\n"
837 "         -> %%m: user-provided message\n"
838 "\n"
839 "         -> %%c: Category name (LOG4J compatible)\n"
840 "         -> %%p: Priority name (LOG4J compatible)\n"
841 "\n"
842 "         -> %%h: Hostname (SimGrid extension)\n"
843 "         -> %%P: Process name (SimGrid extension)\n"
844 "         -> %%t: Thread \"name\" (LOG4J compatible -- actually the address of the thread in memory)\n"
845 "         -> %%i: Process PID (SimGrid extension -- this is a 'i' as in 'i'dea)\n"
846 "\n"
847 "         -> %%F: file name where the log event was raised (LOG4J compatible)\n"
848 "         -> %%l: location where the log event was raised (LOG4J compatible, like '%%F:%%L' -- this is a l as in 'l'etter)\n"
849 "         -> %%L: line number where the log event was raised (LOG4J compatible)\n"
850 "         -> %%M: function name (LOG4J compatible -- called method name here of course).\n"
851 "                 Defined only when using gcc because there is no __FUNCTION__ elsewhere.\n"
852 "\n"
853 "         -> %%b: full backtrace (Called %%throwable in LOG4J). Defined only under windows or when using the GNU libc because\n"
854 "                 backtrace() is not defined elsewhere, and we only have a fallback for windows boxes, not mac ones for example.\n"
855 "         -> %%B: short backtrace (only the first line of the %%b). Called %%throwable{short} in LOG4J; defined where %%b is.\n"
856 "\n"
857 "         -> %%d: date (UNIX-like epoch)\n"
858 "         -> %%r: application age (time elapsed since the beginning of the application)\n"
859 "\n"
860 "   Miscellaneous:\n"
861 "      --help-log-categories    Display the current hierarchy of log categories.\n"
862 "      --log=no_loc             Don't print file names in messages (for tesh tests).\n"
863 "\n"
864     );
865 }
866
867 static int xbt_log_cat_cmp(const void *pa, const void *pb)
868 {
869   xbt_log_category_t a = *(xbt_log_category_t *)pa;
870   xbt_log_category_t b = *(xbt_log_category_t *)pb;
871   return strcmp(a->name, b->name);
872 }
873
874 static void xbt_log_help_categories_rec(xbt_log_category_t category, const char *prefix)
875 {
876   char *this_prefix;
877   char *child_prefix;
878   xbt_dynar_t dynar;
879   unsigned i;
880   xbt_log_category_t cat;
881
882   if (!category)
883     return;
884
885   if (category->parent) {
886     this_prefix = bprintf("%s \\_ ", prefix);
887     child_prefix = bprintf("%s |  ", prefix);
888   } else {
889     this_prefix = xbt_strdup(prefix);
890     child_prefix = xbt_strdup(prefix);
891   }
892
893   dynar = xbt_dynar_new(sizeof(xbt_log_category_t), NULL);
894   for (cat = category ; cat != NULL; cat = cat->nextSibling)
895     xbt_dynar_push_as(dynar, xbt_log_category_t, cat);
896
897   xbt_dynar_sort(dynar, xbt_log_cat_cmp);
898
899   for (i = 0; i < xbt_dynar_length(dynar); i++) {
900     if (i == xbt_dynar_length(dynar) - 1 && category->parent)
901       *strrchr(child_prefix, '|') = ' ';
902     cat = xbt_dynar_get_as(dynar, i, xbt_log_category_t);
903     printf("%s%s: %s\n", this_prefix, cat->name, cat->description);
904     xbt_log_help_categories_rec(cat->firstChild, child_prefix);
905   }
906
907   xbt_dynar_free(&dynar);
908   xbt_free(this_prefix);
909   xbt_free(child_prefix);
910 }
911
912 static void xbt_log_help_categories(void)
913 {
914   printf("Current log category hierarchy:\n");
915   xbt_log_help_categories_rec(&_XBT_LOGV(XBT_LOG_ROOT_CAT), "   ");
916   printf("\n");
917 }