Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix clang build
[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
15 class RelayRunner {
16   size_t task_comm_size = 1000000; /* The token is 1MB long*/
17   simgrid::s4u::MailboxPtr my_mailbox;
18   simgrid::s4u::MailboxPtr neighbor_mailbox;
19   unsigned int rank      = 0;
20
21 public:
22   explicit RelayRunner() = default;
23
24   void operator()()
25   {
26     rank = xbt_str_parse_int(simgrid::s4u::this_actor::name().c_str(),
27                              "Any process of this example must have a numerical name, not %s");
28     my_mailbox = simgrid::s4u::Mailbox::byName(std::to_string(rank));
29     if (rank + 1 == simgrid::s4u::Engine::instance()->hostCount())
30       /* The last process, which sends the token back to rank 0 */
31       neighbor_mailbox = simgrid::s4u::Mailbox::byName("0");
32     else
33       /* The others processes send to their right neighbor (rank+1) */
34       neighbor_mailbox = simgrid::s4u::Mailbox::byName(std::to_string(rank + 1));
35
36     if (rank == 0) {
37       /* The root process (rank 0) first sends the token then waits to receive it back */
38       XBT_INFO("Host \"%u\" send 'Token' to Host \"%s\"", rank, neighbor_mailbox->name());
39       neighbor_mailbox->send(xbt_strdup("Token"), task_comm_size);
40       char* res = static_cast<char*>(my_mailbox->recv());
41       XBT_INFO("Host \"%u\" received \"%s\"", rank, res);
42       xbt_free(res);
43     } else {
44       char* res = static_cast<char*>(my_mailbox->recv());
45       XBT_INFO("Host \"%u\" received \"%s\"", rank, res);
46       XBT_INFO("Host \"%u\" send 'Token' to Host \"%s\"", rank, neighbor_mailbox->name());
47       neighbor_mailbox->send(res, task_comm_size);
48     }
49   }
50 };
51
52 int main(int argc, char** argv)
53 {
54   simgrid::s4u::Engine* e = new simgrid::s4u::Engine(&argc, argv);
55   xbt_assert(argc > 1, "Usage: %s platform.xml\n", argv[0]);
56   e->loadPlatform(argv[1]);
57
58   XBT_INFO("Number of hosts '%zu'", e->hostCount());
59   int id = 0;
60   std::vector<simgrid::s4u::Host*> list;
61   e->hostList(&list);
62   for (auto host : list) {
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
70   delete e;
71   return 0;
72 }