Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'tracemgrsplit' into 'master'
[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 simgrid::xbt::Extension<simgrid::s4u::Host, HostChord> HostChord::EXTENSION_ID;
10
11 int nb_bits  = 24;
12 int nb_keys  = 0;
13 int timeout  = 50;
14
15 int main(int argc, char* argv[])
16 {
17   simgrid::s4u::Engine e(&argc, argv);
18   xbt_assert(argc > 2,
19              "Usage: %s [-nb_bits=n] [-timeout=t] platform_file deployment_file\n"
20              "\tExample: %s ../platforms/cluster_backbone.xml ./s4u-dht-chord_d.xml\n",
21              argv[0], argv[0]);
22   char** options = &argv[1];
23   while (not strncmp(options[0], "-", 1)) {
24     unsigned int length = strlen("-nb_bits=");
25     if (not strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) {
26       nb_bits = xbt_str_parse_int(options[0] + length, "Invalid nb_bits parameter: %s");
27       XBT_DEBUG("Set nb_bits to %d", nb_bits);
28     } else {
29       length = strlen("-timeout=");
30       if (not strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) {
31         timeout = xbt_str_parse_int(options[0] + length, "Invalid timeout parameter: %s");
32         XBT_DEBUG("Set timeout to %d", timeout);
33       } else {
34         xbt_die("Invalid chord option '%s'", options[0]);
35       }
36     }
37     options++;
38   }
39
40   e.load_platform(options[0]);
41
42   /* Global initialization of the Chord simulation. */
43   nb_keys = 1U << nb_bits;
44   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
45
46   HostChord::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostChord>();
47   for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts())
48     host->extension_set(new HostChord(host));
49
50   e.register_actor<Node>("node");
51   e.load_deployment(options[1]);
52
53   e.run();
54
55   XBT_INFO("Simulated time: %g", e.get_clock());
56   return 0;
57 }