Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
used unsigned long long to have more than 50 bits
[simgrid.git] / examples / simdag / properties / sd_properties.c
1 /* Copyright (c) 2007-2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/simdag.h"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Property test");
10
11 int main(int argc, char **argv)
12 {
13   xbt_dict_cursor_t cursor = NULL;
14   char *key;
15   char *data;
16   char noexist[] = "NoProp";
17   const char *value;
18   char exist[] = "Hdd";
19
20   /* SD initialization */
21   SD_init(&argc, argv);
22   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s ../../platforms/prop.xml", argv[0], argv[0]);
23
24   SD_create_environment(argv[1]);
25
26   /* init of platform elements */
27   sg_host_t h1 = sg_host_by_name("host1");
28   sg_host_t h2 = sg_host_by_name("host2");
29   const char *name1 = sg_host_get_name(h1);
30   const char *name2 = sg_host_get_name(h2);
31
32   /* Get the property list of 'host1' */
33   XBT_INFO("Property list for host %s", name1);
34   xbt_dict_t props = sg_host_get_properties(h1);
35
36   /* Trying to set a new property */
37   xbt_dict_set(props, "NewProp", strdup("newValue"), NULL);
38
39   /* Print the properties of 'host1' */
40   xbt_dict_foreach(props, cursor, key, data) {
41     XBT_INFO("\tProperty: %s has value: %s", key, data);
42   }
43
44   /* Try to get a property that does not exist */
45   value = sg_host_get_property_value(h1, noexist);
46   XBT_INFO("\tProperty: %s has value: %s", noexist, value?value:"Undefined (NULL)");
47
48   /* Get the property list of 'host2' */
49   XBT_INFO("Property list for host %s", name2);
50   props = sg_host_get_properties(h2);
51
52   /* Print the properties of 'host2' */
53   xbt_dict_foreach(props, cursor, key, data) {
54     XBT_INFO("\tProperty: %s on host: %s", key, data);
55   }
56
57   /* Modify an existing property test. First check it exists */
58   XBT_INFO("Modify an existing property");
59
60   value = sg_host_get_property_value(h2, exist);
61   if (value == NULL)
62     XBT_INFO("\tProperty: %s is undefined", exist);
63   else {
64     XBT_INFO("\tProperty: %s old value: %s", exist, value);
65     xbt_dict_set(props, exist, strdup("250"), NULL);
66   }
67
68   /* Test if we have changed the value */
69   value = sg_host_get_property_value(h2, exist);
70   XBT_INFO("\tProperty: %s new value: %s", exist, value?value:"Undefined (NULL)");
71
72   /* Test if properties are displayed by sg_host_dump */
73   sg_host_dump(h2);
74
75   SD_exit();
76   return 0;
77 }