Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
33acd5f1b87486716d1473553bafeae639edc2df
[simgrid.git] / examples / s4u / dht-chord / s4u-dht-chord.cpp
1 /* Copyright (c) 2010-2019. 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 std::default_random_engine generator;
15
16 int main(int argc, char* argv[])
17 {
18   simgrid::s4u::Engine e(&argc, argv);
19   xbt_assert(argc > 2,
20              "Usage: %s [-nb_bits=n] [-timeout=t] platform_file deployment_file\n"
21              "\tExample: %s ../platforms/cluster_backbone.xml ./s4u-dht-chord_d.xml\n",
22              argv[0], argv[0]);
23   char** options = &argv[1];
24   while (not strncmp(options[0], "-", 1)) {
25     unsigned int length = strlen("-nb_bits=");
26     if (not strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) {
27       nb_bits = xbt_str_parse_int(options[0] + length, "Invalid nb_bits parameter: %s");
28       XBT_DEBUG("Set nb_bits to %d", nb_bits);
29     } else {
30       length = strlen("-timeout=");
31       if (not strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) {
32         timeout = xbt_str_parse_int(options[0] + length, "Invalid timeout parameter: %s");
33         XBT_DEBUG("Set timeout to %d", timeout);
34       } else {
35         xbt_die("Invalid chord option '%s'", options[0]);
36       }
37     }
38     options++;
39   }
40
41   e.load_platform(options[0]);
42
43   /* Global initialization of the Chord simulation. */
44   nb_keys = 1U << nb_bits;
45   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
46
47   e.register_actor<Node>("node");
48   e.load_deployment(options[1]);
49
50   e.run();
51
52   XBT_INFO("Simulated time: %g", e.get_clock());
53   return 0;
54 }