Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Get rid of "%s" in second argument of function xbt_str_parse_*.
[simgrid.git] / examples / cpp / dht-chord / s4u-dht-chord.cpp
1 /* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "s4u-dht-chord.hpp"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_chord, "Messages specific for this s4u example");
9
10 int nb_bits  = 24;
11 int nb_keys  = 0;
12 int timeout  = 50;
13
14 int main(int argc, char* argv[])
15 {
16   simgrid::s4u::Engine e(&argc, argv);
17   xbt_assert(argc > 2,
18              "Usage: %s [-nb_bits=n] [-timeout=t] platform_file deployment_file\n"
19              "\tExample: %s ../platforms/cluster_backbone.xml ./s4u-dht-chord_d.xml\n",
20              argv[0], argv[0]);
21   char** options = &argv[1];
22   while (not strncmp(options[0], "-", 1)) {
23     unsigned int length = strlen("-nb_bits=");
24     if (not strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) {
25       nb_bits = static_cast<int>(xbt_str_parse_int(options[0] + length, "Invalid nb_bits parameter"));
26       XBT_DEBUG("Set nb_bits to %d", nb_bits);
27     } else {
28       length = strlen("-timeout=");
29       xbt_assert(strncmp(options[0], "-timeout=", length) == 0 && strlen(options[0]) > length,
30                  "Invalid chord option '%s'", options[0]);
31       timeout = static_cast<int>(xbt_str_parse_int(options[0] + length, "Invalid timeout parameter"));
32       XBT_DEBUG("Set timeout to %d", timeout);
33     }
34     options++;
35   }
36
37   e.load_platform(options[0]);
38
39   /* Global initialization of the Chord simulation. */
40   nb_keys = 1U << nb_bits;
41   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
42
43   e.register_actor<Node>("node");
44   e.load_deployment(options[1]);
45
46   e.run();
47
48   XBT_INFO("Simulated time: %g", simgrid::s4u::Engine::get_clock());
49   return 0;
50 }