Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / examples / s4u / app-token-ring / s4u_app-token-ring.cpp
1 /* Copyright (c) 2017. 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 "xbt/str.h"
7 #include <simgrid/s4u.hpp>
8 #include <algorithm>
9 #include <string>
10 #include <map>
11 #include <vector>
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_token_ring, "Messages specific for this s4u example");
14 // FIXME: The following duplicates the content of s4u::Host
15 extern std::map<std::string, simgrid::s4u::Host*> host_list;
16
17 class RelayRunner {
18 public:
19   size_t task_comm_size = 1000000; /* The token is 1MB long*/
20   simgrid::s4u::MailboxPtr my_mailbox;
21   simgrid::s4u::MailboxPtr neighbor_mailbox;
22   unsigned int rank      = 0;
23   explicit RelayRunner() = default;
24
25   void operator()()
26   {
27     rank = xbt_str_parse_int(simgrid::s4u::this_actor::name().c_str(),
28                              "Any process of this example must have a numerical name, not %s");
29     my_mailbox = simgrid::s4u::Mailbox::byName(std::to_string(rank));
30     if (rank + 1 == host_list.size())
31       /* The last process, which sends the token back to rank 0 */
32       neighbor_mailbox = simgrid::s4u::Mailbox::byName("0");
33     else
34       /* The others processes send to their right neighbor (rank+1) */
35       neighbor_mailbox = simgrid::s4u::Mailbox::byName(std::to_string(rank + 1));
36
37     if (rank == 0) {
38       /* The root process (rank 0) first sends the token then waits to receive it back */
39       XBT_INFO("Host \"%u\" send 'Token' to Host \"%s\"", rank, neighbor_mailbox->name());
40       simgrid::s4u::this_actor::send(neighbor_mailbox, xbt_strdup("Token"), task_comm_size);
41       char* res = static_cast<char*>(simgrid::s4u::this_actor::recv(my_mailbox));
42       XBT_INFO("Host \"%u\" received \"%s\"", rank, res);
43       xbt_free(res);
44     } else {
45       char* res = static_cast<char*>(simgrid::s4u::this_actor::recv(my_mailbox));
46       XBT_INFO("Host \"%u\" received \"%s\"", rank, res);
47       XBT_INFO("Host \"%u\" send 'Token' to Host \"%s\"", rank, neighbor_mailbox->name());
48       simgrid::s4u::this_actor::send(neighbor_mailbox, res, task_comm_size);
49     }
50   }
51 };
52
53 int main(int argc, char** argv)
54 {
55   simgrid::s4u::Engine* e = new simgrid::s4u::Engine(&argc, argv);
56   xbt_assert(argc > 1, "Usage: %s platform.xml\n", argv[0]);
57   e->loadPlatform(argv[1]);
58
59   XBT_INFO("Number of hosts '%zu'", host_list.size());
60   int id = 0;
61   for (auto h : host_list) {
62     simgrid::s4u::Host* host = h.second;
63     /* - Give a unique rank to each host and create a @ref relay_runner process on each */
64     simgrid::s4u::Actor::createActor((std::to_string(id)).c_str(), host, RelayRunner());
65     id++;
66   }
67   e->run();
68   XBT_INFO("Simulation time %g", e->getClock());
69   return 0;
70 }