Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not trim in split_quoted, that's expensive, and the caller can do it if his input...
[simgrid.git] / src / xbt / config.c
1 /* config - Dictionnary where the type of each variable is provided.            */
2
3 /* This is useful to build named structs, like option or property sets.     */
4
5 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
6  * All rights reserved.                                                     */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include <stdio.h>
12 #include "xbt/misc.h"
13 #include "xbt/sysdep.h"
14 #include "xbt/log.h"
15 #include "xbt/ex.h"
16 #include "xbt/dynar.h"
17 #include "xbt/dict.h"
18 #include "xbt/peer.h"
19
20 #include "xbt/config.h"         /* prototypes of this module */
21
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_cfg, xbt, "configuration support");
23
24 /* xbt_cfgelm_t: the typedef corresponding to a config variable.
25
26    Both data and DTD are mixed, but fixing it now would prevent me to ever
27    defend my thesis. */
28
29 typedef struct {
30   /* Description */
31   char *desc;
32
33   /* Allowed type of the variable */
34   e_xbt_cfgelm_type_t type;
35   int min, max;
36   int isdefault:1;
37
38   /* Callbacks */
39   xbt_cfg_cb_t cb_set;
40   xbt_cfg_cb_t cb_rm;
41
42   /* actual content
43      (cannot be an union because type peer uses both str and i) */
44   xbt_dynar_t content;
45 } s_xbt_cfgelm_t, *xbt_cfgelm_t;
46
47 static const char *xbt_cfgelm_type_name[xbt_cfgelm_type_count] =
48     { "int", "double", "string", "peer", "any" };
49
50 /* Internal stuff used in cache to free a variable */
51 static void xbt_cfgelm_free(void *data);
52
53 /* Retrieve the variable we'll modify */
54 static xbt_cfgelm_t xbt_cfgelm_get(xbt_cfg_t cfg, const char *name,
55                                    e_xbt_cfgelm_type_t type);
56
57 /*----[ Memory management ]-----------------------------------------------*/
58
59 /** @brief Constructor
60  *
61  * Initialise an config set
62  */
63
64
65 xbt_cfg_t xbt_cfg_new(void)
66 {
67   return (xbt_cfg_t) xbt_dict_new();
68 }
69
70 /** \brief Copy an existing configuration set
71  *
72  * \arg whereto the config set to be created
73  * \arg tocopy the source data
74  *
75  * This only copy the registrations, not the actual content
76  */
77
78 void xbt_cfg_cpy(xbt_cfg_t tocopy, xbt_cfg_t * whereto)
79 {
80   xbt_dict_cursor_t cursor = NULL;
81   xbt_cfgelm_t variable = NULL;
82   char *name = NULL;
83
84   DEBUG1("Copy cfg set %p", tocopy);
85   *whereto = NULL;
86   xbt_assert0(tocopy, "cannot copy NULL config");
87
88   xbt_dict_foreach((xbt_dict_t) tocopy, cursor, name, variable) {
89     xbt_cfg_register(whereto, name, variable->desc, variable->type, NULL,
90                      variable->min, variable->max, variable->cb_set,
91                      variable->cb_rm);
92   }
93 }
94
95 /** @brief Destructor */
96 void xbt_cfg_free(xbt_cfg_t * cfg)
97 {
98   DEBUG1("Frees cfg set %p", cfg);
99   xbt_dict_free((xbt_dict_t *) cfg);
100 }
101
102 /** @brief Dump a config set for debuging purpose
103  *
104  * \arg name The name to give to this config set
105  * \arg indent what to write at the begining of each line (right number of spaces)
106  * \arg cfg the config set
107  */
108 void xbt_cfg_dump(const char *name, const char *indent, xbt_cfg_t cfg)
109 {
110   xbt_dict_t dict = (xbt_dict_t) cfg;
111   xbt_dict_cursor_t cursor = NULL;
112   xbt_cfgelm_t variable = NULL;
113   char *key = NULL;
114   int i;
115   int size;
116   int ival;
117   char *sval;
118   double dval;
119   xbt_peer_t hval;
120
121   if (name)
122     printf("%s>> Dumping of the config set '%s':\n", indent, name);
123   xbt_dict_foreach(dict, cursor, key, variable) {
124
125     printf("%s  %s:", indent, key);
126
127     size = xbt_dynar_length(variable->content);
128     printf
129         ("%d_to_%d_%s. Actual size=%d. prerm=%p,postset=%p, List of values:\n",
130          variable->min, variable->max,
131          xbt_cfgelm_type_name[variable->type], size, variable->cb_rm,
132          variable->cb_set);
133
134     switch (variable->type) {
135
136     case xbt_cfgelm_int:
137       for (i = 0; i < size; i++) {
138         ival = xbt_dynar_get_as(variable->content, i, int);
139         printf("%s    %d\n", indent, ival);
140       }
141       break;
142
143     case xbt_cfgelm_double:
144       for (i = 0; i < size; i++) {
145         dval = xbt_dynar_get_as(variable->content, i, double);
146         printf("%s    %f\n", indent, dval);
147       }
148       break;
149
150     case xbt_cfgelm_string:
151       for (i = 0; i < size; i++) {
152         sval = xbt_dynar_get_as(variable->content, i, char *);
153         printf("%s    %s\n", indent, sval);
154       }
155       break;
156
157     case xbt_cfgelm_peer:
158       for (i = 0; i < size; i++) {
159         hval = xbt_dynar_get_as(variable->content, i, xbt_peer_t);
160         printf("%s    %s:%d\n", indent, hval->name, hval->port);
161       }
162       break;
163
164     default:
165       printf("%s    Invalid type!!\n", indent);
166     }
167
168   }
169
170   if (name)
171     printf("%s<< End of the config set '%s'\n", indent, name);
172   fflush(stdout);
173
174   xbt_dict_cursor_free(&cursor);
175   return;
176 }
177
178 /*
179  * free an config element
180  */
181
182 void xbt_cfgelm_free(void *data)
183 {
184   xbt_cfgelm_t c = (xbt_cfgelm_t) data;
185
186   DEBUG1("Frees cfgelm %p", c);
187   if (!c)
188     return;
189   xbt_free(c->desc);
190   xbt_dynar_free(&(c->content));
191   free(c);
192 }
193
194 /*----[ Registering stuff ]-----------------------------------------------*/
195
196 /** @brief Register an element within a config set
197  *
198  *  @arg cfg the config set
199  *  @arg type the type of the config element
200  *  @arg min the minimum
201  *  @arg max the maximum
202  */
203
204 void
205 xbt_cfg_register(xbt_cfg_t * cfg,
206                  const char *name, const char *desc,
207                  e_xbt_cfgelm_type_t type, void *default_value, int min,
208                  int max, xbt_cfg_cb_t cb_set, xbt_cfg_cb_t cb_rm)
209 {
210   xbt_cfgelm_t res;
211
212   if (*cfg == NULL)
213     *cfg = xbt_cfg_new();
214   xbt_assert4(type >= xbt_cfgelm_int && type <= xbt_cfgelm_peer,
215               "type of %s not valid (%d should be between %d and %d)",
216               name, type, xbt_cfgelm_int, xbt_cfgelm_peer);
217   res = xbt_dict_get_or_null((xbt_dict_t) * cfg, name);
218
219   if (res) {
220     WARN1("Config elem %s registered twice.", name);
221     /* Will be removed by the insertion of the new one */
222   }
223
224   res = xbt_new(s_xbt_cfgelm_t, 1);
225   DEBUG8("Register cfg elm %s (%s) (%d to %d %s (=%d) @%p in set %p)",
226          name, desc, min, max, xbt_cfgelm_type_name[type], type, res,
227          *cfg);
228
229   res->desc = xbt_strdup(desc);
230   res->type = type;
231   res->min = min;
232   res->max = max;
233   res->cb_set = cb_set;
234   res->cb_rm = cb_rm;
235   res->isdefault = 1;
236
237   switch (type) {
238   case xbt_cfgelm_int:
239     res->content = xbt_dynar_new(sizeof(int), NULL);
240     if (default_value)
241       xbt_dynar_push(res->content, default_value);
242     break;
243
244   case xbt_cfgelm_double:
245     res->content = xbt_dynar_new(sizeof(double), NULL);
246     if (default_value)
247       xbt_dynar_push(res->content, default_value);
248     break;
249
250   case xbt_cfgelm_string:
251     res->content = xbt_dynar_new(sizeof(char *), xbt_free_ref);
252     if (default_value)
253       xbt_dynar_push(res->content, default_value);
254     break;
255
256   case xbt_cfgelm_peer:
257     res->content = xbt_dynar_new(sizeof(xbt_peer_t), xbt_peer_free_voidp);
258     if (default_value)
259       xbt_dynar_push(res->content, default_value);
260     break;
261
262   default:
263     ERROR1("%d is an invalide type code", type);
264   }
265
266   xbt_dict_set((xbt_dict_t) * cfg, name, res, &xbt_cfgelm_free);
267 }
268
269 /** @brief Unregister an element from a config set.
270  *
271  *  @arg cfg the config set
272  *  @arg name the name of the elem to be freed
273  *
274  *  Note that it removes both the description and the actual content.
275  *  Throws not_found when no such element exists.
276  */
277
278 void xbt_cfg_unregister(xbt_cfg_t cfg, const char *name)
279 {
280   DEBUG2("Unregister elm '%s' from set %p", name, cfg);
281   xbt_dict_remove((xbt_dict_t) cfg, name);
282 }
283
284 /**
285  * @brief Parse a string and register the stuff described.
286  *
287  * @arg cfg the config set
288  * @arg entry a string describing the element to register
289  *
290  * The string may consist in several variable descriptions separated by a space.
291  * Each of them must use the following syntax: \<name\>:\<min nb\>_to_\<max nb\>_\<type\>
292  * with type being one of  'string','int', 'peer' or 'double'.
293  *
294  * @fixme: this does not allow to set the description
295  */
296
297 void xbt_cfg_register_str(xbt_cfg_t * cfg, const char *entry)
298 {
299   char *entrycpy = xbt_strdup(entry);
300   char *tok;
301
302   int min, max;
303   e_xbt_cfgelm_type_t type;
304   DEBUG1("Register string '%s'", entry);
305
306   tok = strchr(entrycpy, ':');
307   xbt_assert2(tok, "Invalid config element descriptor: %s%s",
308               entry, "; Should be <name>:<min nb>_to_<max nb>_<type>");
309   *(tok++) = '\0';
310
311   min = strtol(tok, &tok, 10);
312   xbt_assert1(tok, "Invalid minimum in config element descriptor %s",
313               entry);
314
315   xbt_assert2(strcmp(tok, "_to_"),
316               "Invalid config element descriptor : %s%s",
317               entry, "; Should be <name>:<min nb>_to_<max nb>_<type>");
318   tok += strlen("_to_");
319
320   max = strtol(tok, &tok, 10);
321   xbt_assert1(tok, "Invalid maximum in config element descriptor %s",
322               entry);
323
324   xbt_assert2(*(tok++) == '_',
325               "Invalid config element descriptor: %s%s", entry,
326               "; Should be <name>:<min nb>_to_<max nb>_<type>");
327
328   for (type = 0;
329        type < xbt_cfgelm_type_count
330        && strcmp(tok, xbt_cfgelm_type_name[type]); type++);
331   xbt_assert2(type < xbt_cfgelm_type_count,
332               "Invalid type in config element descriptor: %s%s", entry,
333               "; Should be one of 'string', 'int', 'peer' or 'double'.");
334
335   xbt_cfg_register(cfg, entrycpy, NULL, type, NULL, min, max, NULL, NULL);
336
337   free(entrycpy);               /* strdup'ed by dict mechanism, but cannot be const */
338 }
339
340 /** @brief Displays the declared options and their description */
341 void xbt_cfg_help(xbt_cfg_t cfg)
342 {
343   xbt_dict_cursor_t cursor;
344   xbt_cfgelm_t variable;
345   char *name;
346
347   int i;
348   int size;
349
350   xbt_dict_foreach((xbt_dict_t) cfg, cursor, name, variable) {
351     printf("   %s: %s\n", name, variable->desc);
352     printf("       Type: %s; ", xbt_cfgelm_type_name[variable->type]);
353     if (variable->min != 1 || variable->max != 1) {
354       if (variable->min == 0 && variable->max == 0)
355         printf("Arity: no bound; ");
356       else
357         printf("Arity: min:%d to max:%d; ", variable->min, variable->max);
358     }
359     printf("Current value: ");
360     size = xbt_dynar_length(variable->content);
361
362     switch (variable->type) {
363       int ival;
364       char *sval;
365       double dval;
366       xbt_peer_t hval;
367
368     case xbt_cfgelm_int:
369       for (i = 0; i < size; i++) {
370         ival = xbt_dynar_get_as(variable->content, i, int);
371         printf("%s%d\n", (i == 0 ? "" : "              "), ival);
372       }
373       break;
374
375     case xbt_cfgelm_double:
376       for (i = 0; i < size; i++) {
377         dval = xbt_dynar_get_as(variable->content, i, double);
378         printf("%s%f\n", (i == 0 ? "" : "              "), dval);
379       }
380       break;
381
382     case xbt_cfgelm_string:
383       for (i = 0; i < size; i++) {
384         sval = xbt_dynar_get_as(variable->content, i, char *);
385         printf("%s'%s'\n", (i == 0 ? "" : "              "), sval);
386       }
387       break;
388
389     case xbt_cfgelm_peer:
390       for (i = 0; i < size; i++) {
391         hval = xbt_dynar_get_as(variable->content, i, xbt_peer_t);
392         printf("%s%s:%d\n", (i == 0 ? "" : "              "), hval->name,
393                hval->port);
394       }
395       break;
396
397     default:
398       printf("Invalid type!!\n");
399     }
400
401   }
402 }
403
404 /** @brief Check that each variable have the right amount of values */
405 void xbt_cfg_check(xbt_cfg_t cfg)
406 {
407   xbt_dict_cursor_t cursor;
408   xbt_cfgelm_t variable;
409   char *name;
410   int size;
411
412   xbt_assert0(cfg, "NULL config set.");
413   DEBUG1("Check cfg set %p", cfg);
414
415   xbt_dict_foreach((xbt_dict_t) cfg, cursor, name, variable) {
416     size = xbt_dynar_length(variable->content);
417     if (variable->min > size) {
418       xbt_dict_cursor_free(&cursor);
419       THROW4(mismatch_error, 0,
420              "Config elem %s needs at least %d %s, but there is only %d values.",
421              name, variable->min, xbt_cfgelm_type_name[variable->type],
422              size);
423     }
424
425     if (variable->max > 0 && variable->max < size) {
426       xbt_dict_cursor_free(&cursor);
427       THROW4(mismatch_error, 0,
428              "Config elem %s accepts at most %d %s, but there is %d values.",
429              name, variable->max, xbt_cfgelm_type_name[variable->type],
430              size);
431     }
432   }
433
434   xbt_dict_cursor_free(&cursor);
435 }
436
437 static xbt_cfgelm_t xbt_cfgelm_get(xbt_cfg_t cfg,
438                                    const char *name,
439                                    e_xbt_cfgelm_type_t type)
440 {
441   xbt_cfgelm_t res = NULL;
442
443   res = xbt_dict_get_or_null((xbt_dict_t) cfg, name);
444   if (!res) {
445     xbt_cfg_help(cfg);
446     THROW1(not_found_error, 0,
447            "No registered variable '%s' in this config set", name);
448   }
449
450   xbt_assert3(type == xbt_cfgelm_any || res->type == type,
451               "You tried to access to the config element %s as an %s, but its type is %s.",
452               name,
453               xbt_cfgelm_type_name[type], xbt_cfgelm_type_name[res->type]);
454
455   return res;
456 }
457
458 /** @brief Get the type of this variable in that configuration set
459  *
460  * \arg cfg the config set
461  * \arg name the name of the element
462  * \arg type the result
463  *
464  */
465
466 e_xbt_cfgelm_type_t xbt_cfg_get_type(xbt_cfg_t cfg, const char *name)
467 {
468
469   xbt_cfgelm_t variable = NULL;
470
471   variable = xbt_dict_get_or_null((xbt_dict_t) cfg, name);
472   if (!variable)
473     THROW1(not_found_error, 0,
474            "Can't get the type of '%s' since this variable does not exist",
475            name);
476
477   INFO1("type in variable = %d", variable->type);
478
479   return variable->type;
480 }
481
482 /*----[ Setting ]---------------------------------------------------------*/
483 /**  @brief va_args version of xbt_cfg_set
484  *
485  * \arg cfg config set to fill
486  * \arg n   variable name
487  * \arg pa  variable value
488  *
489  * Add some values to the config set.
490  */
491 void xbt_cfg_set_vargs(xbt_cfg_t cfg, const char *name, va_list pa)
492 {
493   char *str;
494   int i;
495   double d;
496   e_xbt_cfgelm_type_t type = 0; /* Set a dummy value to make gcc happy. It cannot get uninitialized */
497
498   xbt_ex_t e;
499
500   TRY {
501     type = xbt_cfg_get_type(cfg, name);
502   } CATCH(e) {
503     if (e.category == not_found_error) {
504       xbt_ex_free(e);
505       THROW1(not_found_error, 0,
506              "Can't set the property '%s' since it's not registered",
507              name);
508     }
509     RETHROW;
510   }
511
512   switch (type) {
513   case xbt_cfgelm_peer:
514     str = va_arg(pa, char *);
515     i = va_arg(pa, int);
516     xbt_cfg_set_peer(cfg, name, str, i);
517     break;
518
519   case xbt_cfgelm_string:
520     str = va_arg(pa, char *);
521     xbt_cfg_set_string(cfg, name, str);
522     break;
523
524   case xbt_cfgelm_int:
525     i = va_arg(pa, int);
526     xbt_cfg_set_int(cfg, name, i);
527     break;
528
529   case xbt_cfgelm_double:
530     d = va_arg(pa, double);
531     xbt_cfg_set_double(cfg, name, d);
532     break;
533
534   default:
535     xbt_assert2(0, "Config element variable %s not valid (type=%d)", name,
536                 type);
537   }
538 }
539
540 /** @brief Add a NULL-terminated list of pairs {(char*)key, value} to the set
541  *
542  * \arg cfg config set to fill
543  * \arg name variable name
544  * \arg varargs variable value
545  *
546  */
547 void xbt_cfg_set(xbt_cfg_t cfg, const char *name, ...)
548 {
549   va_list pa;
550
551   va_start(pa, name);
552   xbt_cfg_set_vargs(cfg, name, pa);
553   va_end(pa);
554 }
555
556 /** @brief Add values parsed from a string into a config set
557  *
558  * \arg cfg config set to fill
559  * \arg options a string containing the content to add to the config set. This
560  * is a '\\t',' ' or '\\n' or ',' separated list of variables. Each individual variable is
561  * like "[name]:[value]" where [name] is the name of an already registred
562  * variable, and [value] conforms to the data type under which this variable was
563  * registred.
564  *
565  * @todo This is a crude manual parser, it should be a proper lexer.
566  */
567
568 void xbt_cfg_set_parse(xbt_cfg_t cfg, const char *options)
569 {
570   xbt_ex_t e;
571
572   int i;
573   double d;
574   char *str;
575
576   xbt_cfgelm_t variable = NULL;
577   char *optionlist_cpy;
578   char *option, *name, *val;
579
580   int len;
581
582   XBT_IN;
583   if (!options || !strlen(options)) {   /* nothing to do */
584     return;
585   }
586   optionlist_cpy = xbt_strdup(options);
587
588   DEBUG1("List to parse and set:'%s'", options);
589   option = optionlist_cpy;
590   while (1) {                   /* breaks in the code */
591
592     if (!option)
593       break;
594     name = option;
595     len = strlen(name);
596     DEBUG3("Still to parse and set: '%s'. len=%d; option-name=%ld",
597            name, len, (long) (option - name));
598
599     /* Pass the value */
600     while (option - name <= (len - 1) && *option != ' ' && *option != '\n'
601            && *option != '\t' && *option != ',') {
602       DEBUG1("Take %c.", *option);
603       option++;
604     }
605     if (option - name == len) {
606       DEBUG0("Boundary=EOL");
607       option = NULL;            /* don't do next iteration */
608
609     } else {
610       DEBUG3("Boundary on '%c'. len=%d;option-name=%ld",
611              *option, len, (long) (option - name));
612
613       /* Pass the following blank chars */
614       *(option++) = '\0';
615       while (option - name < (len - 1) &&
616              (*option == ' ' || *option == '\n' || *option == '\t')) {
617         /*      fprintf(stderr,"Ignore a blank char.\n"); */
618         option++;
619       }
620       if (option - name == len - 1)
621         option = NULL;          /* don't do next iteration */
622     }
623     DEBUG2("parse now:'%s'; parse later:'%s'", name, option);
624
625     if (name[0] == ' ' || name[0] == '\n' || name[0] == '\t')
626       continue;
627     if (!strlen(name))
628       break;
629
630     val = strchr(name, ':');
631     if (!val) {
632       free(optionlist_cpy);
633       xbt_assert1(FALSE,
634                   "Option '%s' badly formated. Should be of the form 'name:value'",
635                   name);
636     }
637     *(val++) = '\0';
638
639     INFO2("Configuration change: Set '%s' to '%s'", name, val);
640
641     TRY {
642       variable = xbt_dict_get((xbt_dict_t) cfg, name);
643     }
644     CATCH(e) {
645       /* put it back on what won't get freed, ie within "options" and out of "optionlist_cpy" */
646       name = (char *) (optionlist_cpy - name + options);
647       free(optionlist_cpy);
648       if (e.category == not_found_error) {
649         xbt_ex_free(e);
650         THROW1(not_found_error, 0,
651                "No registered variable corresponding to '%s'.", name);
652       }
653       RETHROW;
654     }
655
656     TRY {
657       switch (variable->type) {
658       case xbt_cfgelm_string:
659         xbt_cfg_set_string(cfg, name, val);     /* throws */
660         break;
661
662       case xbt_cfgelm_int:
663         i = strtol(val, &val, 0);
664         if (val == NULL) {
665           free(optionlist_cpy);
666           xbt_assert1(FALSE,
667                       "Value of option %s not valid. Should be an integer",
668                       name);
669         }
670
671         xbt_cfg_set_int(cfg, name, i);  /* throws */
672         break;
673
674       case xbt_cfgelm_double:
675         d = strtod(val, &val);
676         if (val == NULL) {
677           free(optionlist_cpy);
678           xbt_assert1(FALSE,
679                       "Value of option %s not valid. Should be a double",
680                       name);
681         }
682
683         xbt_cfg_set_double(cfg, name, d);       /* throws */
684         break;
685
686       case xbt_cfgelm_peer:
687         str = val;
688         val = strchr(val, ':');
689         if (!val) {
690           free(optionlist_cpy);
691           xbt_assert1(FALSE,
692                       "Value of option %s not valid. Should be an peer (machine:port)",
693                       name);
694         }
695
696         *(val++) = '\0';
697         i = strtol(val, &val, 0);
698         if (val == NULL) {
699           free(optionlist_cpy);
700           xbt_assert1(FALSE,
701                       "Value of option %s not valid. Should be an peer (machine:port)",
702                       name);
703         }
704
705         xbt_cfg_set_peer(cfg, name, str, i);    /* throws */
706         break;
707
708       default:
709         THROW1(unknown_error, 0, "Type of config element %s is not valid.",
710                name);
711       }
712     }
713     CATCH(e) {
714       free(optionlist_cpy);
715       RETHROW;
716     }
717   }
718   free(optionlist_cpy);
719
720 }
721
722 /** @brief Set an integer value to \a name within \a cfg if it wasn't changed yet
723  *
724  * This is useful to change the default value of a variable while allowing
725  * users to override it with command line arguments
726  */
727 void xbt_cfg_setdefault_int(xbt_cfg_t cfg, const char *name, int val)
728 {
729   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_int);
730
731   if (variable->isdefault)
732     xbt_cfg_set_int(cfg, name, val);
733   else
734     DEBUG2
735         ("Do not override configuration variable '%s' with value '%d' because it was already set.",
736          name, val);
737 }
738
739 /** @brief Set an integer value to \a name within \a cfg if it wasn't changed yet
740  *
741  * This is useful to change the default value of a variable while allowing
742  * users to override it with command line arguments
743  */
744 void xbt_cfg_setdefault_double(xbt_cfg_t cfg, const char *name, double val)
745 {
746   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_double);
747
748   if (variable->isdefault)
749     xbt_cfg_set_double(cfg, name, val);
750   else
751     DEBUG2
752         ("Do not override configuration variable '%s' with value '%lf' because it was already set.",
753          name, val);
754 }
755
756 /** @brief Set a string value to \a name within \a cfg if it wasn't changed yet
757  *
758  * This is useful to change the default value of a variable while allowing
759  * users to override it with command line arguments
760  */
761 void xbt_cfg_setdefault_string(xbt_cfg_t cfg, const char *name,
762                                const char *val)
763 {
764   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_string);
765
766   if (variable->isdefault)
767     xbt_cfg_set_string(cfg, name, val);
768   else
769     DEBUG2
770         ("Do not override configuration variable '%s' with value '%s' because it was already set.",
771          name, val);
772 }
773
774 /** @brief Set a peer value to \a name within \a cfg if it wasn't changed yet
775  *
776  * This is useful to change the default value of a variable while allowing
777  * users to override it with command line arguments
778  */
779 void xbt_cfg_setdefault_peer(xbt_cfg_t cfg, const char *name,
780                              const char *host, int port)
781 {
782   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_peer);
783
784   if (variable->isdefault)
785     xbt_cfg_set_peer(cfg, name, host, port);
786   else
787     DEBUG3
788         ("Do not override configuration variable '%s' with value '%s:%d' because it was already set.",
789          name, host, port);
790 }
791
792 /** @brief Set or add an integer value to \a name within \a cfg
793  *
794  * \arg cfg the config set
795  * \arg name the name of the variable
796  * \arg val the value of the variable
797  */
798 void xbt_cfg_set_int(xbt_cfg_t cfg, const char *name, int val)
799 {
800   xbt_cfgelm_t variable;
801
802   VERB2("Configuration setting: %s=%d", name, val);
803   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_int);
804
805   if (variable->max == 1) {
806     if (variable->cb_rm && xbt_dynar_length(variable->content))
807       (*variable->cb_rm) (name, 0);
808
809     xbt_dynar_set(variable->content, 0, &val);
810   } else {
811     if (variable->max
812         && xbt_dynar_length(variable->content) ==
813         (unsigned long) variable->max)
814       THROW3(mismatch_error, 0,
815              "Cannot add value %d to the config element %s since it's already full (size=%d)",
816              val, name, variable->max);
817
818     xbt_dynar_push(variable->content, &val);
819   }
820
821   if (variable->cb_set)
822     (*variable->cb_set) (name, xbt_dynar_length(variable->content) - 1);
823   variable->isdefault = 0;
824 }
825
826 /** @brief Set or add a double value to \a name within \a cfg
827  *
828  * \arg cfg the config set
829  * \arg name the name of the variable
830  * \arg val the doule to set
831  */
832
833 void xbt_cfg_set_double(xbt_cfg_t cfg, const char *name, double val)
834 {
835   xbt_cfgelm_t variable;
836
837   VERB2("Configuration setting: %s=%f", name, val);
838   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_double);
839
840   if (variable->max == 1) {
841     if (variable->cb_rm && xbt_dynar_length(variable->content))
842       (*variable->cb_rm) (name, 0);
843
844     xbt_dynar_set(variable->content, 0, &val);
845   } else {
846     if (variable->max
847         && xbt_dynar_length(variable->content) == variable->max)
848       THROW3(mismatch_error, 0,
849              "Cannot add value %f to the config element %s since it's already full (size=%d)",
850              val, name, variable->max);
851
852     xbt_dynar_push(variable->content, &val);
853   }
854
855   if (variable->cb_set)
856     (*variable->cb_set) (name, xbt_dynar_length(variable->content) - 1);
857   variable->isdefault = 0;
858 }
859
860 /** @brief Set or add a string value to \a name within \a cfg
861  *
862  * \arg cfg the config set
863  * \arg name the name of the variable
864  * \arg val the value to be added
865  *
866  */
867
868 void xbt_cfg_set_string(xbt_cfg_t cfg, const char *name, const char *val)
869 {
870   xbt_cfgelm_t variable;
871   char *newval = xbt_strdup(val);
872
873   VERB2("Configuration setting: %s=%s", name, val);
874   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_string);
875   DEBUG5("Variable: %d to %d %s (=%d) @%p",
876          variable->min, variable->max,
877          xbt_cfgelm_type_name[variable->type], variable->type, variable);
878
879   if (variable->max == 1) {
880     if (xbt_dynar_length(variable->content)) {
881       if (variable->cb_rm)
882         (*variable->cb_rm) (name, 0);
883       else if (variable->type == xbt_cfgelm_string) {
884         char *sval = xbt_dynar_get_as(variable->content, 0, char *);
885         free(sval);
886       }
887     }
888
889     xbt_dynar_set(variable->content, 0, &newval);
890   } else {
891     if (variable->max
892         && xbt_dynar_length(variable->content) == variable->max)
893       THROW3(mismatch_error, 0,
894              "Cannot add value %s to the config element %s since it's already full (size=%d)",
895              name, val, variable->max);
896
897     xbt_dynar_push(variable->content, &newval);
898   }
899
900   if (variable->cb_set)
901     (*variable->cb_set) (name, xbt_dynar_length(variable->content) - 1);
902   variable->isdefault = 0;
903 }
904
905 /** @brief Set or add an peer value to \a name within \a cfg
906  *
907  * \arg cfg the config set
908  * \arg name the name of the variable
909  * \arg peer the peer
910  * \arg port the port number
911  *
912  * \e peer values are composed of a string (peername) and an integer (port)
913  */
914
915 void
916 xbt_cfg_set_peer(xbt_cfg_t cfg, const char *name, const char *peer,
917                  int port)
918 {
919   xbt_cfgelm_t variable;
920   xbt_peer_t val = xbt_peer_new(peer, port);
921
922   VERB3("Configuration setting: %s=%s:%d", name, peer, port);
923
924   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_peer);
925
926   if (variable->max == 1) {
927     if (variable->cb_rm && xbt_dynar_length(variable->content))
928       (*variable->cb_rm) (name, 0);
929
930     xbt_dynar_set(variable->content, 0, &val);
931   } else {
932     if (variable->max
933         && xbt_dynar_length(variable->content) == variable->max)
934       THROW4(mismatch_error, 0,
935              "Cannot add value %s:%d to the config element %s since it's already full (size=%d)",
936              peer, port, name, variable->max);
937
938     xbt_dynar_push(variable->content, &val);
939   }
940
941   if (variable->cb_set)
942     (*variable->cb_set) (name, xbt_dynar_length(variable->content) - 1);
943   variable->isdefault = 0;
944 }
945
946 /* ---- [ Removing ] ---- */
947
948 /** @brief Remove the provided \e val integer value from a variable
949  *
950  * \arg cfg the config set
951  * \arg name the name of the variable
952  * \arg val the value to be removed
953  */
954 void xbt_cfg_rm_int(xbt_cfg_t cfg, const char *name, int val)
955 {
956
957   xbt_cfgelm_t variable;
958   unsigned int cpt;
959   int seen;
960
961   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_int);
962
963   if (xbt_dynar_length(variable->content) == variable->min)
964     THROW3(mismatch_error, 0,
965            "Cannot remove value %d from the config element %s since it's already at its minimal size (=%d)",
966            val, name, variable->min);
967
968   xbt_dynar_foreach(variable->content, cpt, seen) {
969     if (seen == val) {
970       if (variable->cb_rm)
971         (*variable->cb_rm) (name, cpt);
972       xbt_dynar_cursor_rm(variable->content, &cpt);
973       return;
974     }
975   }
976
977   THROW2(not_found_error, 0,
978          "Can't remove the value %d of config element %s: value not found.",
979          val, name);
980 }
981
982 /** @brief Remove the provided \e val double value from a variable
983  *
984  * \arg cfg the config set
985  * \arg name the name of the variable
986  * \arg val the value to be removed
987  */
988
989 void xbt_cfg_rm_double(xbt_cfg_t cfg, const char *name, double val)
990 {
991   xbt_cfgelm_t variable;
992   unsigned int cpt;
993   double seen;
994
995   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_double);
996
997   if (xbt_dynar_length(variable->content) == variable->min)
998     THROW3(mismatch_error, 0,
999            "Cannot remove value %f from the config element %s since it's already at its minimal size (=%d)",
1000            val, name, variable->min);
1001
1002   xbt_dynar_foreach(variable->content, cpt, seen) {
1003     if (seen == val) {
1004       xbt_dynar_cursor_rm(variable->content, &cpt);
1005       if (variable->cb_rm)
1006         (*variable->cb_rm) (name, cpt);
1007       return;
1008     }
1009   }
1010
1011   THROW2(not_found_error, 0,
1012          "Can't remove the value %f of config element %s: value not found.",
1013          val, name);
1014 }
1015
1016 /** @brief Remove the provided \e val string value from a variable
1017  *
1018  * \arg cfg the config set
1019  * \arg name the name of the variable
1020  * \arg val the value of the string which will be removed
1021  */
1022 void xbt_cfg_rm_string(xbt_cfg_t cfg, const char *name, const char *val)
1023 {
1024   xbt_cfgelm_t variable;
1025   unsigned int cpt;
1026   char *seen;
1027
1028   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_string);
1029
1030   if (xbt_dynar_length(variable->content) == variable->min)
1031     THROW3(mismatch_error, 0,
1032            "Cannot remove value %s from the config element %s since it's already at its minimal size (=%d)",
1033            name, val, variable->min);
1034
1035   xbt_dynar_foreach(variable->content, cpt, seen) {
1036     if (!strcpy(seen, val)) {
1037       if (variable->cb_rm)
1038         (*variable->cb_rm) (name, cpt);
1039       xbt_dynar_cursor_rm(variable->content, &cpt);
1040       return;
1041     }
1042   }
1043
1044   THROW2(not_found_error, 0,
1045          "Can't remove the value %s of config element %s: value not found.",
1046          val, name);
1047 }
1048
1049 /** @brief Remove the provided \e val peer value from a variable
1050  *
1051  * \arg cfg the config set
1052  * \arg name the name of the variable
1053  * \arg peer the peername
1054  * \arg port the port number
1055  */
1056
1057 void
1058 xbt_cfg_rm_peer(xbt_cfg_t cfg, const char *name, const char *peer,
1059                 int port)
1060 {
1061   xbt_cfgelm_t variable;
1062   unsigned int cpt;
1063   xbt_peer_t seen;
1064
1065   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_peer);
1066
1067   if (xbt_dynar_length(variable->content) == variable->min)
1068     THROW4(mismatch_error, 0,
1069            "Cannot remove value %s:%d from the config element %s since it's already at its minimal size (=%d)",
1070            peer, port, name, variable->min);
1071
1072   xbt_dynar_foreach(variable->content, cpt, seen) {
1073     if (!strcpy(seen->name, peer) && seen->port == port) {
1074       if (variable->cb_rm)
1075         (*variable->cb_rm) (name, cpt);
1076       xbt_dynar_cursor_rm(variable->content, &cpt);
1077       return;
1078     }
1079   }
1080
1081   THROW3(not_found_error, 0,
1082          "Can't remove the value %s:%d of config element %s: value not found.",
1083          peer, port, name);
1084 }
1085
1086 /** @brief Remove the \e pos th value from the provided variable */
1087
1088 void xbt_cfg_rm_at(xbt_cfg_t cfg, const char *name, int pos)
1089 {
1090
1091   xbt_cfgelm_t variable;
1092
1093   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_any);
1094
1095   if (xbt_dynar_length(variable->content) == variable->min)
1096     THROW3(mismatch_error, 0,
1097            "Cannot remove %dth value from the config element %s since it's already at its minimal size (=%d)",
1098            pos, name, variable->min);
1099
1100   if (variable->cb_rm)
1101     (*variable->cb_rm) (name, pos);
1102   xbt_dynar_remove_at(variable->content, pos, NULL);
1103 }
1104
1105 /** @brief Remove all the values from a variable
1106  *
1107  * \arg cfg the config set
1108  * \arg name the name of the variable
1109  */
1110
1111 void xbt_cfg_empty(xbt_cfg_t cfg, const char *name)
1112 {
1113   xbt_cfgelm_t variable = NULL;
1114   xbt_ex_t e;
1115
1116   TRY {
1117     variable = xbt_dict_get((xbt_dict_t) cfg, name);
1118   } CATCH(e) {
1119     if (e.category != not_found_error)
1120       RETHROW;
1121
1122     xbt_ex_free(e);
1123     THROW1(not_found_error, 0,
1124            "Can't empty  '%s' since this config element does not exist",
1125            name);
1126   }
1127
1128   if (variable) {
1129     if (variable->cb_rm) {
1130       unsigned int cpt;
1131       void *ignored;
1132       xbt_dynar_foreach(variable->content, cpt, ignored) {
1133         (*variable->cb_rm) (name, cpt);
1134       }
1135     }
1136     xbt_dynar_reset(variable->content);
1137   }
1138 }
1139
1140 /*----[ Getting ]---------------------------------------------------------*/
1141
1142 /** @brief Retrieve an integer value of a variable (get a warning if not uniq)
1143  *
1144  * \arg cfg the config set
1145  * \arg name the name of the variable
1146  * \arg val the wanted value
1147  *
1148  * Returns the first value from the config set under the given name.
1149  * If there is more than one value, it will issue a warning. Consider using
1150  * xbt_cfg_get_dynar() instead.
1151  *
1152  * \warning the returned value is the actual content of the config set
1153  */
1154 int xbt_cfg_get_int(xbt_cfg_t cfg, const char *name)
1155 {
1156   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_int);
1157
1158   if (xbt_dynar_length(variable->content) > 1) {
1159     WARN2
1160         ("You asked for the first value of the config element '%s', but there is %lu values",
1161          name, xbt_dynar_length(variable->content));
1162   }
1163
1164   return xbt_dynar_get_as(variable->content, 0, int);
1165 }
1166
1167 /** @brief Retrieve a double value of a variable (get a warning if not uniq)
1168  *
1169  * \arg cfg the config set
1170  * \arg name the name of the variable
1171  * \arg val the wanted value
1172  *
1173  * Returns the first value from the config set under the given name.
1174  * If there is more than one value, it will issue a warning. Consider using
1175  * xbt_cfg_get_dynar() instead.
1176  *
1177  * \warning the returned value is the actual content of the config set
1178  */
1179
1180 double xbt_cfg_get_double(xbt_cfg_t cfg, const char *name)
1181 {
1182   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_double);
1183
1184   if (xbt_dynar_length(variable->content) > 1) {
1185     WARN2
1186         ("You asked for the first value of the config element '%s', but there is %lu values\n",
1187          name, xbt_dynar_length(variable->content));
1188   }
1189
1190   return xbt_dynar_get_as(variable->content, 0, double);
1191 }
1192
1193 /** @brief Retrieve a string value of a variable (get a warning if not uniq)
1194  *
1195  * \arg th the config set
1196  * \arg name the name of the variable
1197  * \arg val the wanted value
1198  *
1199  * Returns the first value from the config set under the given name.
1200  * If there is more than one value, it will issue a warning. Consider using
1201  * xbt_cfg_get_dynar() instead. Returns NULL if there is no value.
1202  *
1203  * \warning the returned value is the actual content of the config set
1204  */
1205
1206 char *xbt_cfg_get_string(xbt_cfg_t cfg, const char *name)
1207 {
1208   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_string);
1209
1210   if (xbt_dynar_length(variable->content) > 1) {
1211     WARN2
1212         ("You asked for the first value of the config element '%s', but there is %lu values\n",
1213          name, xbt_dynar_length(variable->content));
1214   } else if (xbt_dynar_length(variable->content) == 0) {
1215     return NULL;
1216   }
1217
1218   return xbt_dynar_get_as(variable->content, 0, char *);
1219 }
1220
1221 /** @brief Retrieve an peer value of a variable (get a warning if not uniq)
1222  *
1223  * \arg cfg the config set
1224  * \arg name the name of the variable
1225  * \arg peer the peer
1226  * \arg port the port number
1227  *
1228  * Returns the first value from the config set under the given name.
1229  * If there is more than one value, it will issue a warning. Consider using
1230  * xbt_cfg_get_dynar() instead.
1231  *
1232  * \warning the returned value is the actual content of the config set
1233  */
1234
1235 void xbt_cfg_get_peer(xbt_cfg_t cfg, const char *name, char **peer,
1236                       int *port)
1237 {
1238   xbt_cfgelm_t variable;
1239   xbt_peer_t val;
1240
1241   variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_peer);
1242
1243   if (xbt_dynar_length(variable->content) > 1) {
1244     WARN2
1245         ("You asked for the first value of the config element '%s', but there is %lu values\n",
1246          name, xbt_dynar_length(variable->content));
1247   }
1248
1249   val = xbt_dynar_get_as(variable->content, 0, xbt_peer_t);
1250   *peer = val->name;
1251   *port = val->port;
1252 }
1253
1254 /** @brief Retrieve the dynar of all the values stored in a variable
1255  *
1256  * \arg cfg where to search in
1257  * \arg name what to search for
1258  * \arg dynar result
1259  *
1260  * Get the data stored in the config set.
1261  *
1262  * \warning the returned value is the actual content of the config set
1263  */
1264 xbt_dynar_t xbt_cfg_get_dynar(xbt_cfg_t cfg, const char *name)
1265 {
1266   xbt_cfgelm_t variable = NULL;
1267   xbt_ex_t e;
1268
1269   TRY {
1270     variable = xbt_dict_get((xbt_dict_t) cfg, name);
1271   } CATCH(e) {
1272     if (e.category == not_found_error) {
1273       xbt_ex_free(e);
1274       THROW1(not_found_error, 0,
1275              "No registered variable %s in this config set", name);
1276     }
1277     RETHROW;
1278   }
1279
1280   return variable->content;
1281 }
1282
1283
1284 /** @brief Retrieve one of the integer value of a variable */
1285 int xbt_cfg_get_int_at(xbt_cfg_t cfg, const char *name, int pos)
1286 {
1287
1288   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_int);
1289   return xbt_dynar_get_as(variable->content, pos, int);
1290 }
1291
1292 /** @brief Retrieve one of the double value of a variable */
1293 double xbt_cfg_get_double_at(xbt_cfg_t cfg, const char *name, int pos)
1294 {
1295
1296   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_double);
1297   return xbt_dynar_get_as(variable->content, pos, double);
1298 }
1299
1300
1301 /** @brief Retrieve one of the string value of a variable */
1302 char *xbt_cfg_get_string_at(xbt_cfg_t cfg, const char *name, int pos)
1303 {
1304
1305   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_string);
1306   return xbt_dynar_get_as(variable->content, pos, char *);
1307 }
1308
1309 /** @brief Retrieve one of the peer value of a variable */
1310 void
1311 xbt_cfg_get_peer_at(xbt_cfg_t cfg, const char *name, int pos,
1312                     char **peer, int *port)
1313 {
1314
1315   xbt_cfgelm_t variable = xbt_cfgelm_get(cfg, name, xbt_cfgelm_int);
1316   xbt_peer_t val = xbt_dynar_get_ptr(variable->content, pos);
1317
1318   *port = val->port;
1319   *peer = val->name;
1320 }
1321
1322
1323 #ifdef SIMGRID_TEST
1324 #include "xbt.h"
1325 #include "xbt/ex.h"
1326
1327 XBT_LOG_EXTERNAL_CATEGORY(xbt_cfg);
1328 XBT_LOG_DEFAULT_CATEGORY(xbt_cfg);
1329
1330 XBT_TEST_SUITE("config", "Configuration support");
1331
1332 static xbt_cfg_t make_set()
1333 {
1334   xbt_cfg_t set = NULL;
1335
1336   xbt_log_threshold_set(&_XBT_LOGV(xbt_cfg), xbt_log_priority_critical);
1337   xbt_cfg_register_str(&set, "speed:1_to_2_int");
1338   xbt_cfg_register_str(&set, "peername:1_to_1_string");
1339   xbt_cfg_register_str(&set, "user:1_to_10_string");
1340
1341   return set;
1342 }                               /* end_of_make_set */
1343
1344 XBT_TEST_UNIT("memuse", test_config_memuse, "Alloc and free a config set")
1345 {
1346   xbt_cfg_t set = make_set();
1347   xbt_test_add0("Alloc and free a config set");
1348   xbt_cfg_set_parse(set,
1349                     "peername:veloce user:mquinson\nuser:oaumage\tuser:alegrand");
1350   xbt_cfg_free(&set);
1351   xbt_cfg_free(&set);
1352 }
1353
1354 XBT_TEST_UNIT("validation", test_config_validation, "Validation tests")
1355 {
1356   xbt_cfg_t set = set = make_set();
1357   xbt_ex_t e;
1358
1359   xbt_test_add0("Having too few elements for speed");
1360   xbt_cfg_set_parse(set,
1361                     "peername:veloce user:mquinson\nuser:oaumage\tuser:alegrand");
1362   TRY {
1363     xbt_cfg_check(set);
1364   }
1365   CATCH(e) {
1366     if (e.category != mismatch_error ||
1367         strncmp(e.msg, "Config elem speed needs",
1368                 strlen("Config elem speed needs")))
1369       xbt_test_fail1("Got an exception. msg=%s", e.msg);
1370     xbt_ex_free(e);
1371   }
1372   xbt_cfg_free(&set);
1373   xbt_cfg_free(&set);
1374
1375
1376
1377   xbt_test_add0("Having too much values of 'speed'");
1378   set = make_set();
1379   xbt_cfg_set_parse(set, "peername:toto:42 user:alegrand");
1380   TRY {
1381     xbt_cfg_set_parse(set, "speed:42 speed:24 speed:34");
1382   }
1383   CATCH(e) {
1384     if (e.category != mismatch_error ||
1385         strncmp(e.msg, "Cannot add value 34 to the config elem speed",
1386                 strlen("Config elem speed needs")))
1387       xbt_test_fail1("Got an exception. msg=%s", e.msg);
1388     xbt_ex_free(e);
1389   }
1390   xbt_cfg_check(set);
1391   xbt_cfg_free(&set);
1392   xbt_cfg_free(&set);
1393
1394 }
1395
1396 XBT_TEST_UNIT("use", test_config_use, "Data retrieving tests")
1397 {
1398
1399   xbt_test_add0("Get a single value");
1400   {
1401     /* get_single_value */
1402     int ival;
1403     xbt_cfg_t myset = make_set();
1404
1405     xbt_cfg_set_parse(myset, "peername:toto:42 speed:42");
1406     ival = xbt_cfg_get_int(myset, "speed");
1407     if (ival != 42)
1408       xbt_test_fail1("Speed value = %d, I expected 42", ival);
1409     xbt_cfg_free(&myset);
1410   }
1411
1412   xbt_test_add0("Get multiple values");
1413   {
1414     /* get_multiple_value */
1415     xbt_dynar_t dyn;
1416     xbt_cfg_t myset = make_set();
1417
1418     xbt_cfg_set_parse(myset,
1419                       "peername:veloce user:foo\nuser:bar\tuser:toto");
1420     xbt_cfg_set_parse(myset, "speed:42");
1421     xbt_cfg_check(myset);
1422     dyn = xbt_cfg_get_dynar(myset, "user");
1423
1424     if (xbt_dynar_length(dyn) != 3)
1425       xbt_test_fail1("Dynar length = %lu, I expected 3",
1426                      xbt_dynar_length(dyn));
1427
1428     if (strcmp(xbt_dynar_get_as(dyn, 0, char *), "foo"))
1429        xbt_test_fail1("Dynar[0] = %s, I expected foo",
1430                       xbt_dynar_get_as(dyn, 0, char *));
1431
1432     if (strcmp(xbt_dynar_get_as(dyn, 1, char *), "bar"))
1433        xbt_test_fail1("Dynar[1] = %s, I expected bar",
1434                       xbt_dynar_get_as(dyn, 1, char *));
1435
1436     if (strcmp(xbt_dynar_get_as(dyn, 2, char *), "toto"))
1437        xbt_test_fail1("Dynar[2] = %s, I expected toto",
1438                       xbt_dynar_get_as(dyn, 2, char *));
1439     xbt_cfg_free(&myset);
1440   }
1441
1442   xbt_test_add0("Access to a non-existant entry");
1443   {
1444     /* non-existant_entry */
1445     xbt_cfg_t myset = make_set();
1446     xbt_ex_t e;
1447
1448     TRY {
1449       xbt_cfg_set_parse(myset, "color:blue");
1450     } CATCH(e) {
1451       if (e.category != not_found_error)
1452         xbt_test_exception(e);
1453       xbt_ex_free(e);
1454     }
1455     xbt_cfg_free(&myset);
1456   }
1457 }
1458 #endif                          /* SIMGRID_TEST */