Logo AND Algorithmique Numérique Distribuée

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