Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into adrien
[simgrid.git] / examples / s4u / dht-chord / s4u-dht-chord.cpp
1 /* Copyright (c) 2010-2020. 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: %s"));
26       XBT_DEBUG("Set nb_bits to %d", nb_bits);
27     } else {
28       length = strlen("-timeout=");
29       if (not strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) {
30         timeout = static_cast<int>(xbt_str_parse_int(options[0] + length, "Invalid timeout parameter: %s"));
31         XBT_DEBUG("Set timeout to %d", timeout);
32       } else {
33         xbt_die("Invalid chord option '%s'", options[0]);
34       }
35     }
36     options++;
37   }
38
39   e.load_platform(options[0]);
40
41   /* Global initialization of the Chord simulation. */
42   nb_keys = 1U << nb_bits;
43   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
44
45   e.register_actor<Node>("node");
46   e.load_deployment(options[1]);
47
48   e.run();
49
50   XBT_INFO("Simulated time: %g", e.get_clock());
51   return 0;
52 }