Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid old-style C string processing in C++ example.
[simgrid.git] / examples / cpp / dht-chord / s4u-dht-chord.cpp
1 /* Copyright (c) 2010-2022. 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   std::string platform_file(argv[argc - 2]);
22   std::string deployment_file(argv[argc - 1]);
23   for (const auto& option : std::vector<std::string>(argv + 1, argv + argc - 2)) {
24     if (option.rfind("-nb_bits=", 0) == 0) {
25       nb_bits = std::stod(option.substr(option.find('=') + 1));
26       XBT_DEBUG("Set nb_bits to %d", nb_bits);
27     } else if (option.rfind("-timeout=", 0) == 0) {
28       timeout = std::stod(option.substr(option.find('=') + 1));
29       XBT_DEBUG("Set timeout to %d", timeout);
30     } else {
31       xbt_die("Invalid chord option '%s'", option.c_str());
32     }
33   }
34
35   e.load_platform(platform_file);
36
37   /* Global initialization of the Chord simulation. */
38   nb_keys = 1U << nb_bits;
39   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
40
41   e.register_actor<Node>("node");
42   e.load_deployment(deployment_file);
43
44   e.run();
45
46   XBT_INFO("Simulated time: %g", simgrid::s4u::Engine::get_clock());
47   return 0;
48 }