Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
390208d4a8882a066b947bba7e88839ae005b356
[simgrid.git] / src / xbt / log.c
1 /* $Id$ */
2
3 /* log - a generic logging facility in the spirit of log4j                  */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10
11 #include <stdarg.h>
12 #include <ctype.h>
13 #include <stdio.h> /* snprintf */
14 #include <stdlib.h> /* snprintf */
15
16 #include "portable.h" /* to get a working stdarg.h */
17
18 #include "xbt_modinter.h"
19
20 #include "xbt/misc.h"
21 #include "xbt/ex.h"
22 #include "xbt/sysdep.h"
23 #include "xbt/log.h"
24 #include "xbt/dynar.h"
25
26 XBT_PUBLIC_DATA(int) (*xbt_pid)();
27
28 /** \addtogroup XBT_log
29  *
30  *  This section describes the API to the log functions used 
31  *  everywhere in this project.
32
33 \section XBT_log_toc Table of contents
34  
35  - \ref log_overview
36    - \ref log_cat
37    - \ref log_pri
38    - \ref log_app
39    - \ref log_hist
40  - \ref log_API
41    - \ref log_API_cat
42    - \ref log_API_pri
43    - \ref log_API_subcat
44    - \ref log_API_easy
45    - \ref log_API_example
46  - \ref log_user
47    - \ref log_use_conf
48    - \ref log_use_misc
49  - \ref log_internals
50    - \ref log_in_perf
51    - \ref log_in_app
52  - \ref XBT_log_cats
53      
54 \section log_overview 1. Introduction
55
56 This module is in charge of handling the log messages of every SimGrid
57 program. The main design goal are:
58
59   - <b>configurability</b>: the user can choose <i>at runtime</i> what messages to show and 
60     what to hide, as well as how messages get displayed.
61   - <b>ease of use</b>: both to the programmer (using preprocessor macros black magic)
62     and to the user (with command line options)
63   - <b>performances</b>: logging shouldn't slow down the program when turned off, for example
64   - deal with <b>distributed settings</b>: SimGrid programs are [often] distributed ones, 
65     and the logging mecanism allows to syndicate each and every log source into the same place.
66     At least, its design would allow to, once we write the last missing pieces
67      
68 There is three main concepts in SimGrid's logging mecanism: <i>category</i>,
69 <i>priority</i> and <i>appender</i>. These three concepts work together to
70 enable developers to log messages according to message type and priority, and
71 to control at runtime how these messages are formatted and where they are
72 reported. 
73
74 \subsection log_cat 1.1 Category hierarchy
75
76 The first and foremost advantage of any logging API over plain printf()
77 resides in its ability to disable certain log statements while allowing
78 others to print unhindered. This capability assumes that the logging space,
79 that is, the space of all possible logging statements, is categorized
80 according to some developer-chosen criteria. 
81           
82 This observation led to choosing category as the central concept of the
83 system. In a certain sense, they can be considered as logging topics or
84 channels.
85
86 \subsection log_pri 1.2 Logging priorities
87
88 The user can naturally declare interest into this or that logging category, but
89 he also can specify the desired level of details for each of them. This is
90 controled by the <i>priority</i> concept (which should maybe be renamed to
91 <i>severity</i>). 
92
93 Empirically, the user can specify that he wants to see every debuging message
94 of GRAS while only being interested into the messages at level "error" or
95 higher about the XBT internals.
96
97 \subsection log_app 1.3 Message appenders
98
99 The message appenders are the elements in charge of actually displaying the
100 message to the user. For now, there is only one appender: the one able to print
101 stuff on stderr. But everything is in place internally to write new ones, such
102 as the one able to send the strings to a central server in charge of
103 syndicating the logs of every distributed daemons on a well known location.
104
105 It should also be possible to pass configuration informations to the appenders,
106 specifying for example that the message location (file and line number) is only
107 relevant to debugging information, not to critical error messages.
108
109 One day, for sure ;)
110
111 \subsection log_lay 1.4 Message layouts
112
113 The message layouts are the elements in charge of choosing how each message
114 will look like. Their result is a string which is then passed to the appender
115 attached to the category to be displayed. 
116
117 For now, there is two layouts: The simple one, which is good for most cases,
118 and another one allowing users to specify the format they want.
119
120 Here are the existing format directives:
121
122  - %%: the % char
123  - %n: platform-dependant line separator (LOG4J compliant)
124  - %e: plain old space (SimGrid extension)
125
126  - %m: user-provided message
127
128  - %c: Category name (LOG4J compliant)
129  - %p: Priority name (LOG4J compliant)
130
131  - %h: Hostname (SimGrid extension)
132  - %t: Process name (LOG4J compliant -- thread name in LOG4J)
133  - %I: Process PID (SimGrid extension)
134
135  - %F: file name where the log event was raised (LOG4J compliant)
136  - %l: location where the log event was raised (LOG4J compliant, like '%F:%L')
137  - %L: line number where the log event was raised (LOG4J compliant)
138  - %M: function name (LOG4J compliant -- called method name here of course). 
139    Defined only when using gcc because there is no __FUNCTION__ elsewhere.
140
141  - %b: full backtrace (Called %throwable in LOG4J). 
142    Defined only when using the GNU libc because backtrace() is not defined 
143    elsewhere.
144  - %B: short backtrace (only the first line of the %b). 
145    Called %throwable{short} in LOG4J, defined where %b is.
146
147  - %d: date (UNIX epoch)
148  - %r: application age (time elapsed since the beginning of the application)
149
150
151 If you want to mimick the simple layout with the format one, you would use this
152 format: '[%h:%i:(%I) %r] %l: [%c/%p] %m%n'. This is not completely correct
153 because the simple layout do not display the message location for messages at
154 priority INFO (thus, the fmt is '[%h:%i:(%I) %r] %l: [%c/%p] %m%n' in this
155 case). Moreover, if there is no process name (ie, messages comming from the
156 library itself, or test programs doing strange things) do not display the
157 process identity (thus, fmt is '[%r] %l: [%c/%p] %m%n' in that case, and '[%r]
158 [%c/%p] %m%n' if they are at priority INFO).
159
160 For now, there is only one format modifyier: the precision field. You can for
161 example specify %.4r to get the application age with 4 numbers after the radix.
162
163 \subsection log_hist 1.5 History of this module
164
165 Historically, this module is an adaptation of the log4c project, which is dead
166 upstream, and which I was given the permission to fork under the LGPL licence
167 by the log4c's authors. The log4c project itself was loosely based on the
168 Apache project's Log4J, which also inspired Log4CC, Log4py and so on. Our work
169 differs somehow from these projects anyway, because the C programming language
170 is not object oriented.
171
172 \section log_API 2. Programmer interface
173
174 \subsection log_API_cat 2.1 Constructing the category hierarchy
175
176 Every category is declared by providing a name and an optional
177 parent. If no parent is explicitly named, the root category, LOG_ROOT_CAT is
178 the category's parent. 
179       
180 A category is created by a macro call at the top level of a file.  A
181 category can be created with any one of the following macros:
182
183  - \ref XBT_LOG_NEW_CATEGORY(MyCat,desc); Create a new root
184  - \ref XBT_LOG_NEW_SUBCATEGORY(MyCat, ParentCat,desc);
185     Create a new category being child of the category ParentCat
186  - \ref XBT_LOG_NEW_DEFAULT_CATEGORY(MyCat,desc);
187     Like XBT_LOG_NEW_CATEGORY, but the new category is the default one
188       in this file
189  -  \ref XBT_LOG_NEW_DEFAULT_SUBCATEGORY(MyCat, ParentCat,desc);
190     Like XBT_LOG_NEW_SUBCATEGORY, but the new category is the default one
191       in this file
192             
193 The parent cat can be defined in the same file or in another file (in
194 which case you want to use the \ref XBT_LOG_EXTERNAL_CATEGORY macro to make
195 it visible in the current file), but each category may have only one
196 definition.
197       
198 Typically, there will be a Category for each module and sub-module, so you
199 can independently control logging for each module.
200
201 For a list of all existing categories, please refer to the \ref XBT_log_cats
202 section. This file is generated automatically from the SimGrid source code, so
203 it should be complete and accurate.
204
205 \section log_API_pri 2.2 Declaring message priority
206
207 A category may be assigned a threshold priorty. The set of priorites are
208 defined by the \ref e_xbt_log_priority_t enum. All logging request under
209 this priority will be discarded.
210           
211 If a given category is not assigned a threshold priority, then it inherits
212 one from its closest ancestor with an assigned threshold. To ensure that all
213 categories can eventually inherit a threshold, the root category always has
214 an assigned threshold priority.
215
216 Logging requests are made by invoking a logging macro on a category.  All of
217 the macros have a printf-style format string followed by arguments. If you
218 compile with the -Wall option, gcc will warn you for unmatched arguments, ie
219 when you pass a pointer to a string where an integer was specified by the
220 format. This is usualy a good idea.
221
222 Because some C compilers do not support vararg macros, there is a version of
223 the macro for any number of arguments from 0 to 6. The macro name ends with
224 the total number of arguments.
225         
226 Here is an example of the most basic type of macro. This is a logging
227 request with priority <i>warning</i>.
228
229 <code>CLOG5(MyCat, gras_log_priority_warning, "Values are: %d and '%s'", 5,
230 "oops");</code>
231
232 A logging request is said to be enabled if its priority is higher than or
233 equal to the threshold priority of its category. Otherwise, the request is
234 said to be disabled. A category without an assigned priority will inherit
235 one from the hierarchy. 
236       
237 It is possible to use any non-negative integer as a priority. If, as in the
238 example, one of the standard priorites is used, then there is a convenience
239 macro that is typically used instead. For example, the above example is
240 equivalent to the shorter:
241
242 <code>CWARN4(MyCat, "Values are: %d and '%s'", 5, "oops");</code>
243
244 \section log_API_subcat 2.3 Using a default category (the easy interface)
245   
246 If \ref XBT_LOG_NEW_DEFAULT_SUBCATEGORY(MyCat, Parent) or
247 \ref XBT_LOG_NEW_DEFAULT_CATEGORY(MyCat) is used to create the
248 category, then the even shorter form can be used:
249
250 <code>WARN3("Values are: %d and '%s'", 5, "oops");</code>
251
252 Only one default category can be created per file, though multiple
253 non-defaults can be created and used.
254
255 \section log_API_easy 2.4 Putting all together: the easy interface
256
257 First of all, each module should register its own category into the categories
258 tree using \ref XBT_LOG_NEW_DEFAULT_SUBCATEGORY.
259
260 Then, logging should be done with the DEBUG<n>, VERB<n>, INFO<n>, WARN<n>,
261 ERROR<n> or CRITICAL<n> macro families (such as #DEBUG10, #VERB10,
262 #INFO10, #WARN10, #ERROR10 and #CRITICAL10). For each group, there is at
263 least 11 different macros (like DEBUG0, DEBUG1, DEBUG2, DEBUG3, DEBUG4 and
264 DEBUG5, DEBUG6, DEBUG7, DEBUG8, DEBUG9, DEBUG10), only differing in the number of arguments passed along the format.
265 This is because we want SimGrid itself to keep compilable on ancient
266 compiler not supporting variable number of arguments to macros. But we
267 should provide a macro simpler to use for the users not interested in SP3
268 machines (FIXME).
269   
270 Under GCC, these macro check there arguments the same way than printf does. So,
271 if you compile with -Wall, the folliwing code will issue a warning:
272 <code>DEBUG2("Found %s (id %f)", some_string, a_double)</code>
273
274 If you want to specify the category to log onto (for example because you
275 have more than one category per file, add a C before the name of the log
276 producing macro (ie, use #CDEBUG10, #CVERB10, #CINFO10, #CWARN10, #CERROR10 and
277 #CCRITICAL10 and friends), and pass the category name as first argument.
278   
279 The TRACE priority is not used the same way than the other. You should use
280 the #XBT_IN, XBT_IN<n> (up to #XBT_IN5), #XBT_OUT and #XBT_HERE macros
281 instead.
282
283 \section log_API_example 2.5 Example of use
284
285 Here is a more complete example:
286
287 \verbatim
288 #include "xbt/log.h"
289
290 / * create a category and a default subcategory * /
291 XBT_LOG_NEW_CATEGORY(VSS);
292 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(SA, VSS);
293
294 int main() {
295        / * Now set the parent's priority.  (the string would typcially be a runtime option) * /
296        xbt_log_control_set("SA.thresh:3");
297
298        / * This request is enabled, because WARNING &gt;= INFO. * /
299        CWARN2(VSS, "Low fuel level.");
300
301        / * This request is disabled, because DEBUG &lt; INFO. * /
302        CDEBUG2(VSS, "Starting search for nearest gas station.");
303
304        / * The default category SA inherits its priority from VSS. Thus,
305           the following request is enabled because INFO &gt;= INFO.  * /
306        INFO1("Located nearest gas station.");
307
308        / * This request is disabled, because DEBUG &lt; INFO. * /
309        DEBUG1("Exiting gas station search"); 
310 }
311 \endverbatim
312
313
314 \section log_user 3. User interface
315
316 \section log_use_conf 3.1 Configuration
317 Configuration is typically done during program initialization by invoking
318 the xbt_log_control_set() method. The control string passed to it typically
319 comes from the command line. Look at the documentation for that function for
320 the format of the control string.
321
322 Any SimGrid program can furthermore be configured at run time by passing a
323 --xbt-log argument on the command line (--gras-log, --msg-log and --surf-log
324 are synonyms provided by aestheticism). You can provide several of those
325 arguments to change the setting of several categories, they will be applied
326 from left to right. So, 
327 \verbatim --xbt-log="root.thres:debug root.thres:critical"\endverbatim 
328 should disable any logging.
329
330 Note that the quotes on above line are mandatory because there is a space in
331 the argument, so we are protecting ourselves from the shell, not from SimGrid.
332 We could also reach the same effect with this:
333 \verbatim --xbt-log=root.thres:debug --xbt-log=root.thres:critical\endverbatim 
334
335 \section log_use_misc 3.2 Misc and Caveats
336
337   - Do not use any of the macros that start with '_'.
338   - Log4J has a 'rolling file appender' which you can select with a run-time
339     option and specify the max file size. This would be a nice default for
340     non-kernel applications.
341   - Careful, category names are global variables.
342
343 \section log_internals 4. Internal considerations
344
345 This module is a mess of macro black magic, and when it goes wrong, SimGrid
346 studently loose its ability to explain its problems. When messing around this
347 module, I often find useful to define XBT_LOG_MAYDAY (which turns it back to
348 good old printf) for the time of finding what's going wrong.
349
350 \section log_in_perf 4.1 Performance
351
352 Except for the first invocation of a given category, a disabled logging request
353 requires an a single comparison of a static variable to a constant.
354
355 There is also compile time constant, \ref XBT_LOG_STATIC_THRESHOLD, which
356 causes all logging requests with a lower priority to be optimized to 0 cost
357 by the compiler. By setting it to gras_log_priority_infinite, all logging
358 requests are statically disabled and cost nothing. Released executables
359 might be compiled with
360 \verbatim-DXBT_LOG_STATIC_THRESHOLD=gras_log_priority_infinite\endverbatim
361
362 Compiling with the \verbatim-DNLOG\endverbatim option disables all logging 
363 requests at compilation time while the \verbatim-DNDEBUG\endverbatim disables 
364 the requests of priority below INFO.
365
366 \todo Logging performance *may* be improved further by improving the message
367 propagation from appender to appender in the category tree.
368
369 \section log_in_app 4.2 Appenders
370
371 Each category has an optional appender. An appender is a pointer to a
372 structure which starts with a pointer to a doAppend() function. DoAppend()
373 prints a message to a log.
374
375 When a category is passed a message by one of the logging macros, the
376 category performs the following actions:
377
378   - if the category has an appender, the message is passed to the
379     appender's doAppend() function,
380   - if additivity is true for the category (which is the case by
381     default, and can be controlled by xbt_log_additivity_set()), the 
382     message is passed to the category's parent. 
383     
384 By default, only the root category have an appender, and any other category has
385 its additivity set to true. This causes all messages to be logged by the root
386 category's appender.
387
388 The default appender function currently prints to stderr, and no other one
389 exist, even if more would be needed, like the one able to send the logs to a
390 remote dedicated server, or other ones offering different output formats.
391 This is on our TODO list for quite a while now, but your help would be
392 welcome here, too.
393
394
395 *//*'*/
396
397 \f
398 xbt_log_appender_t xbt_log_default_appender = NULL; /* set in log_init */
399 xbt_log_layout_t xbt_log_default_layout = NULL; /* set in log_init */
400 int _log_usable = 0;
401
402 typedef struct {
403   char *catname;
404   e_xbt_log_priority_t thresh;
405   char *fmt;
406   int additivity;
407 } s_xbt_log_setting_t,*xbt_log_setting_t;
408
409 static xbt_dynar_t xbt_log_settings=NULL;
410
411 static void _free_setting(void *s) {
412   xbt_log_setting_t set=*(xbt_log_setting_t*)s;
413   if (set) {
414     free(set->catname);
415     if (set->fmt)
416       free(set->fmt);
417     free(set);
418   }
419 }
420 static void _xbt_log_cat_apply_set(xbt_log_category_t category,
421                                    xbt_log_setting_t setting);
422
423 const char *xbt_log_priority_names[8] = {
424   "NONE",
425   "TRACE",
426   "DEBUG",
427   "VERBOSE",
428   "INFO",
429   "WARNING",
430   "ERROR",
431   "CRITICAL"
432 };
433
434 XBT_PUBLIC_DATA(s_xbt_log_category_t)  _XBT_LOGV(XBT_LOG_ROOT_CAT) = {
435   0, 0, 0,
436   "root", xbt_log_priority_uninitialized, 0,
437   NULL, 0
438 };
439
440 XBT_LOG_NEW_CATEGORY(xbt,"All XBT categories (simgrid toolbox)");
441 XBT_LOG_NEW_CATEGORY(surf,"All SURF categories");
442 XBT_LOG_NEW_CATEGORY(msg,"All MSG categories");
443 XBT_LOG_NEW_CATEGORY(simix,"All SIMIX categories");
444 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(log,xbt,"Loggings from the logging mechanism itself");
445
446 /** @brief Get all logging settings from the command line
447  * 
448  * xbt_log_control_set() is called on each string we got from cmd line
449  */
450 void xbt_log_init(int *argc,char **argv) {
451         int i,j;
452         char *opt;
453         
454         /* create the default appender and install it in the root category,
455            which were already created (damnit. Too slow little beetle)*/
456         xbt_log_default_appender = xbt_log_appender_file_new(NULL);
457         xbt_log_default_layout = xbt_log_layout_simple_new(NULL);
458         _XBT_LOGV(XBT_LOG_ROOT_CAT).appender = xbt_log_default_appender;
459         _XBT_LOGV(XBT_LOG_ROOT_CAT).layout = xbt_log_default_layout;
460         _log_usable = 1;   
461
462         /* Set logs and init log submodule */
463         for (i=1; i<*argc; i++){
464                 if (!strncmp(argv[i],"--log=",strlen("--log=")) ||
465                     !strncmp(argv[i],"--gras-log=",strlen("--gras-log=")) ||
466                     !strncmp(argv[i],"--surf-log=",strlen("--surf-log=")) ||
467                     !strncmp(argv[i],"--msg-log=",strlen("--msg-log=")) ||
468                     !strncmp(argv[i],"--simix-log=",strlen("--simix-log=")) ||
469                     !strncmp(argv[i],"--xbt-log=",strlen("--xbt-log="))){
470                         
471                   if (strncmp(argv[i],"--log=",strlen("--log=")))
472                       WARN2("Option %.*s is deprecated and will disapear in the future. Use --log instead.",
473                             (int)(strchr(argv[i],'=')-argv[i]),argv[i]);
474
475                   opt=strchr(argv[i],'=');
476                   opt++;
477                   xbt_log_control_set(opt);
478                   DEBUG1("Did apply '%s' as log setting",opt);
479                   /*remove this from argv*/
480                   
481                   for (j=i+1; j<*argc; j++){
482                     argv[j-1] = argv[j];
483                   } 
484                   
485                   argv[j-1] = NULL;
486                   (*argc)--;
487                   i--; /* compensate effect of next loop incrementation */
488                 }
489         }
490 }
491
492 static void log_cat_exit(xbt_log_category_t cat) {
493   xbt_log_category_t child;
494
495   if (cat->appender) {
496     if (cat->appender->free_)
497       cat->appender->free_(cat->appender);
498     free(cat->appender);
499   }
500   if (cat->layout) {
501     if (cat->layout->free_)
502       cat->layout->free_(cat->layout);
503     free(cat->layout);
504   }    
505
506   for(child=cat->firstChild ; child != NULL; child = child->nextSibling) 
507     log_cat_exit(child);
508 }
509
510 void xbt_log_exit(void) {
511   VERB0("Exiting log");
512   xbt_dynar_free(&xbt_log_settings);
513   log_cat_exit(&_XBT_LOGV(XBT_LOG_ROOT_CAT));
514   _log_usable = 0;
515 }
516
517 void _xbt_log_event_log( xbt_log_event_t ev, const char *fmt, ...) {
518   
519   xbt_log_category_t cat = ev->cat;
520   if (!_log_usable) {
521      fprintf(stderr,"XXXXXXXXXXXXXXXXXXX\nXXX Warning, logs not usable here. Either before xbt_init() or after xbt_exit().\nXXXXXXXXXXXXXXXXXXX\n");
522      va_start(ev->ap, fmt);
523      vfprintf(stderr,fmt,ev->ap);
524      va_end(ev->ap);
525      xbt_backtrace_display();
526      return;
527   }
528    
529   va_start(ev->ap, fmt);
530   while(1) {
531     xbt_log_appender_t appender = cat->appender;
532     if (appender != NULL) {
533       xbt_assert1(cat->layout,"No valid layout for the appender of category %s",cat->name);
534       char *str= cat->layout->do_layout(cat->layout, ev, fmt);    
535       appender->do_append(appender, str);
536     }
537     if (!cat->additivity)
538       break;
539
540     cat = cat->parent;
541   } 
542   va_end(ev->ap);
543 }
544
545 static void _xbt_log_cat_apply_set(xbt_log_category_t category,
546                                    xbt_log_setting_t setting) { 
547
548   s_xbt_log_event_t _log_ev;
549
550   if (setting->thresh != xbt_log_priority_uninitialized) {
551     xbt_log_threshold_set(category, setting->thresh);
552     
553     if (category->threshold <= xbt_log_priority_debug) {
554       _log_ev.cat = category;
555       _log_ev.priority = xbt_log_priority_debug;
556       _log_ev.fileName = __FILE__ ;
557       _log_ev.functionName = _XBT_FUNCTION ;
558       _log_ev.lineNum = __LINE__ ;
559       
560       _xbt_log_event_log(&_log_ev,
561           "Apply settings for category '%s': set threshold to %s (=%d)",
562                          category->name,
563                          xbt_log_priority_names[category->threshold],
564                          category->threshold);
565     }
566   }
567
568   if (setting->fmt) {
569     xbt_log_layout_set(category,xbt_log_layout_format_new(setting->fmt));
570     
571     if (category->threshold <= xbt_log_priority_debug) {
572       _log_ev.cat = category;
573       _log_ev.priority = xbt_log_priority_debug;
574       _log_ev.fileName = __FILE__ ;
575       _log_ev.functionName = _XBT_FUNCTION ;
576       _log_ev.lineNum = __LINE__ ;
577       
578       _xbt_log_event_log(&_log_ev,
579               "Apply settings for category '%s': set format to %s",
580                          category->name,
581                          setting->fmt);
582     }
583   }
584
585   if (setting->additivity != -1) {
586     xbt_log_additivity_set(category,setting->additivity);
587     
588     if (category->threshold <= xbt_log_priority_debug) {
589       _log_ev.cat = category;
590       _log_ev.priority = xbt_log_priority_debug;
591       _log_ev.fileName = __FILE__ ;
592       _log_ev.functionName = _XBT_FUNCTION ;
593       _log_ev.lineNum = __LINE__ ;
594       
595       _xbt_log_event_log(&_log_ev,
596                     "Apply settings for category '%s': set additivity to %s",
597                          category->name,
598                          (setting->additivity?"on":"off"));
599     }
600   }
601 }
602 /*
603  * This gets called the first time a category is referenced and performs the
604  * initialization. 
605  * Also resets threshold to inherited!
606  */
607 int _xbt_log_cat_init(xbt_log_category_t category,
608                       e_xbt_log_priority_t priority) {
609   int cursor;
610   xbt_log_setting_t setting=NULL;
611   int found = 0;
612   s_xbt_log_event_t _log_ev;
613         
614   if(category == &_XBT_LOGV(XBT_LOG_ROOT_CAT)){
615     category->threshold = xbt_log_priority_info;/* xbt_log_priority_debug*/;
616     category->appender = xbt_log_default_appender;
617     category->layout = xbt_log_default_layout;
618   } else {
619
620     if (!category->parent)
621       category->parent = &_XBT_LOGV(XBT_LOG_ROOT_CAT);
622     
623     xbt_log_parent_set(category, category->parent);
624   }
625
626   /* Apply the control */  
627   if (!xbt_log_settings)
628     return priority >= category->threshold;
629   
630   xbt_assert0(category,"NULL category");
631   xbt_assert(category->name);
632   
633   xbt_dynar_foreach(xbt_log_settings,cursor,setting) {
634     xbt_assert0(setting,"Damnit, NULL cat in the list");
635     xbt_assert1(setting->catname,"NULL setting(=%p)->catname",(void*)setting);
636     
637     if (!strcmp(setting->catname,category->name)) {
638       
639       found = 1;
640       
641       _xbt_log_cat_apply_set(category,setting);
642
643       xbt_dynar_cursor_rm(xbt_log_settings,&cursor);
644     }
645   }
646   
647   if (!found && category->threshold <= xbt_log_priority_verbose) {
648     
649     _log_ev.cat = category;
650     _log_ev.priority = xbt_log_priority_verbose;
651     _log_ev.fileName = __FILE__ ;
652     _log_ev.functionName = _XBT_FUNCTION ;
653     _log_ev.lineNum = __LINE__ ;
654     
655     _xbt_log_event_log(&_log_ev,
656                        "Category '%s': inherited threshold = %s (=%d)",
657                        category->name,
658             xbt_log_priority_names[category->threshold], category->threshold);
659   }
660     
661   return priority >= category->threshold;
662 }
663
664 void xbt_log_parent_set(xbt_log_category_t cat,xbt_log_category_t parent) 
665 {
666         
667         xbt_assert0(cat,"NULL category to be given a parent");
668         xbt_assert1(parent,"The parent category of %s is NULL",cat->name);
669         
670         /* 
671          * if the threshold is initialized 
672          * unlink from current parent 
673          */
674         if(cat->threshold != xbt_log_priority_uninitialized){
675
676                 xbt_log_category_t* cpp = &parent->firstChild;
677         
678                 while(*cpp != cat && *cpp != NULL) {
679                         cpp = &(*cpp)->nextSibling;
680                 }
681                 
682                 xbt_assert(*cpp == cat);
683                 *cpp = cat->nextSibling;
684         }
685         
686         cat->parent = parent;
687         cat->nextSibling = parent->firstChild;
688         
689         parent->firstChild = cat;
690         
691         if (parent->threshold == xbt_log_priority_uninitialized){
692                 
693           _xbt_log_cat_init(parent,
694                             xbt_log_priority_uninitialized/* ignored*/);
695         }
696         
697         cat->threshold = parent->threshold;
698         
699         cat->isThreshInherited = 1;
700         
701 }
702
703 static void _set_inherited_thresholds(xbt_log_category_t cat) {
704         
705   xbt_log_category_t child = cat->firstChild;
706   
707   for( ; child != NULL; child = child->nextSibling) {
708     if (child->isThreshInherited) {
709       if (cat != &_XBT_LOGV(log))
710         VERB3("Set category threshold of %s to %s (=%d)",
711               child->name,xbt_log_priority_names[cat->threshold],cat->threshold);
712       child->threshold = cat->threshold;
713       _set_inherited_thresholds(child);
714     }
715   }
716   
717  
718 }
719
720 void xbt_log_threshold_set(xbt_log_category_t   cat,
721                             e_xbt_log_priority_t threshold) {
722   cat->threshold = threshold;
723   cat->isThreshInherited = 0;
724  
725   _set_inherited_thresholds(cat);
726  
727 }
728
729 static xbt_log_setting_t _xbt_log_parse_setting(const char* control_string) {
730
731   xbt_log_setting_t set = xbt_new(s_xbt_log_setting_t,1);
732   const char *name, *dot, *eq;
733   
734   set->catname=NULL;
735   set->thresh = xbt_log_priority_uninitialized;
736   set->fmt = NULL;
737   set->additivity = -1;
738
739   if (!*control_string) 
740     return set;
741   DEBUG1("Parse log setting '%s'",control_string);
742
743   control_string += strspn(control_string, " ");
744   name = control_string;
745   control_string += strcspn(control_string, ".= ");
746   dot = control_string;
747   control_string += strcspn(control_string, ":= ");
748   eq = control_string;
749   control_string += strcspn(control_string, " ");
750
751   xbt_assert1(*dot == '.' && (*eq == '=' || *eq == ':'),
752                "Invalid control string '%s'",control_string);
753
754   if (!strncmp(dot + 1, "thresh", (size_t)(eq - dot - 1))) {
755     int i;
756     char *neweq=xbt_strdup(eq+1);
757     char *p=neweq-1;
758     
759     while (*(++p) != '\0') {
760       if (*p >= 'a' && *p <= 'z') {
761         *p-='a'-'A';
762       }
763     }
764     
765     DEBUG1("New priority name = %s",neweq);
766     for (i=0; i<xbt_log_priority_infinite; i++) {
767       if (!strncmp(xbt_log_priority_names[i],neweq,p-eq)) {
768         DEBUG1("This is priority %d",i);
769         break;
770       }
771     }
772     if (i<xbt_log_priority_infinite) {
773       set->thresh= (e_xbt_log_priority_t) i;
774     } else {
775       THROW1(arg_error,0,
776              "Unknown priority name: %s (must be one of: trace,debug,verbose,info,warning,error,critical)",eq+1);
777     }
778     free(neweq);
779   } else if ( !strncmp(dot + 1, "add", (size_t)(eq - dot - 1)) ||
780               !strncmp(dot + 1, "additivity", (size_t)(eq - dot - 1)) ) {
781
782     char *neweq=xbt_strdup(eq+1);
783     char *p=neweq-1;
784     
785     while (*(++p) != '\0') {
786       if (*p >= 'a' && *p <= 'z') {
787         *p-='a'-'A';
788       }
789     }
790     if ( !strcmp(neweq,"ON") ||
791          !strcmp(neweq,"YES") ||
792          !strcmp(neweq,"1") ) {
793       set->additivity = 1;      
794     } else {
795       set->additivity = 0;      
796     }
797     free(neweq);
798   } else if (!strncmp(dot + 1, "fmt", (size_t)(eq - dot - 1))) {
799     set->fmt = xbt_strdup(eq+1);
800   } else {
801     char buff[512];
802     snprintf(buff,min(512,eq - dot),"%s",dot+1);
803     THROW1(arg_error,0,"Unknown setting of the log category: '%s'",buff);
804   }
805   set->catname=(char*)xbt_malloc(dot - name+1);
806     
807   memcpy(set->catname,name,dot-name);
808   set->catname[dot-name]='\0'; /* Just in case */
809   DEBUG1("This is for cat '%s'", set->catname);
810   
811   return set;
812 }
813
814 static xbt_log_category_t _xbt_log_cat_searchsub(xbt_log_category_t cat,char *name) {
815   xbt_log_category_t child;
816   
817   if (!strcmp(cat->name,name)) 
818     return cat;
819
820   for(child=cat->firstChild ; child != NULL; child = child->nextSibling) 
821     return _xbt_log_cat_searchsub(child,name);
822   
823   THROW1(not_found_error,0,"No such category: %s", name);
824 }
825
826 /**
827  * \ingroup XBT_log  
828  * \param control_string What to parse
829  *
830  * Typically passed a command-line argument. The string has the syntax:
831  *
832  *      ( [category] "." [keyword] ":" value (" ")... )...
833  *
834  * where [category] is one the category names (see \ref XBT_log_cats for 
835  * a complete list of the ones defined in the SimGrid library)  
836  * and keyword is one of the following:
837  *
838  *    - thres: category's threshold priority. Possible values:
839  *             TRACE,DEBUG,VERBOSE,INFO,WARNING,ERROR,CRITICAL
840  *    - add or additivity: whether the logging actions must be passed to 
841  *      the parent category. 
842  *      Possible values: 0, 1, no, yes, on, off.
843  *      Default value: yes.
844  *    - fmt: the format to use. See \ref log_lay for more information.
845  *            
846  */
847 void xbt_log_control_set(const char* control_string) {
848   xbt_log_setting_t set;
849
850   /* To split the string in commands, and the cursors */
851   xbt_dynar_t set_strings;
852   char *str;
853   int cpt;
854
855   if (!control_string)
856     return;
857   DEBUG1("Parse log settings '%s'",control_string);
858
859   /* some initialization if this is the first time that this get called */
860   if (xbt_log_settings == NULL)
861     xbt_log_settings = xbt_dynar_new(sizeof(xbt_log_setting_t),
862                                      _free_setting);
863
864   /* split the string, and remove empty entries */
865   set_strings=xbt_str_split_quoted(control_string);
866
867   if (xbt_dynar_length(set_strings) == 0) { /* vicious user! */
868     xbt_dynar_free(&set_strings);
869     return; 
870   }
871
872   /* Parse each entry and either use it right now (if the category was already
873      created), or store it for further use */
874   xbt_dynar_foreach(set_strings,cpt,str) {
875     xbt_log_category_t cat=NULL;
876     int found=0;
877     xbt_ex_t e;
878     
879     set = _xbt_log_parse_setting(str);
880
881     TRY {
882       cat = _xbt_log_cat_searchsub(&_XBT_LOGV(root),set->catname);
883       found = 1;
884     } CATCH(e) {
885       if (e.category != not_found_error)
886         RETHROW;
887       xbt_ex_free(e);
888       found = 0;
889     } 
890
891     if (found) {
892       DEBUG0("Apply directly");
893       _xbt_log_cat_apply_set(cat,set);
894       _free_setting((void*)&set);
895     } else {
896
897       DEBUG0("Store for further application");
898       DEBUG1("push %p to the settings",(void*)set);
899       xbt_dynar_push(xbt_log_settings,&set);
900     }
901   }
902   xbt_dynar_free(&set_strings);
903
904
905 void xbt_log_appender_set(xbt_log_category_t cat, xbt_log_appender_t app) {
906   if (cat->appender) {
907     if (cat->appender->free_)
908       cat->appender->free_(cat->appender);
909     free(cat->appender);
910   }
911   cat->appender = app;
912 }
913 void xbt_log_layout_set(xbt_log_category_t cat, xbt_log_layout_t lay) {
914   if (!cat->appender) {
915     VERB1("No appender to category %s. Setting the file appender as default",
916           cat->name);
917     xbt_log_appender_set(cat,xbt_log_appender_file_new(NULL));
918   }
919   if (cat->layout && cat != &_XBT_LOGV(root)) {
920     /* better leak the default layout than check every categories to 
921        change it */
922     if (cat->layout->free_) {
923       cat->layout->free_(cat->layout);
924       free(cat->layout);
925     }
926   }
927   cat->layout = lay;
928   xbt_log_additivity_set(cat,0);
929 }
930
931 void xbt_log_additivity_set(xbt_log_category_t cat, int additivity) {
932   cat->additivity = additivity;
933 }
934