Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8605a10f3434f64af75c398c120bdde30720a6a3
[simgrid.git] / examples / s4u / replay-comm / s4u-replay-comm.cpp
1 /* Copyright (c) 2009-2018. 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 "simgrid/s4u.hpp"
7 #include "xbt/replay.hpp"
8 #include "xbt/str.h"
9 #include <boost/algorithm/string/join.hpp>
10 #include <string>
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(replay_comm, "Messages specific for this msg example");
13
14 #define ACT_DEBUG(...)                                                                                                 \
15   if (XBT_LOG_ISENABLED(replay_comm, xbt_log_priority_verbose)) {                                                   \
16     std::string NAME = boost::algorithm::join(action, " ");                                                            \
17     XBT_DEBUG(__VA_ARGS__);                                                                                            \
18   } else                                                                                                               \
19   ((void)0)
20
21 static void log_action(simgrid::xbt::ReplayAction& action, double date)
22 {
23   if (XBT_LOG_ISENABLED(replay_comm, xbt_log_priority_verbose)) {
24     std::string s = boost::algorithm::join(action, " ");
25     XBT_VERB("%s %f", s.c_str(), date);
26   }
27 }
28
29 class Replayer {
30 public:
31   explicit Replayer(std::vector<std::string> args)
32   {
33     int argc;
34     char* argv[2];
35     argv[0] = &args.at(0)[0];
36     if (args.size() == 1) {
37       argc = 1;
38     } else {
39       argc    = 2;
40       argv[1] = &args.at(1)[0];
41     }
42     simgrid::xbt::replay_runner(argc, argv);
43   }
44
45   void operator()()
46   {
47     // Nothing to do here
48   }
49
50   /* My actions */
51   static void compute(simgrid::xbt::ReplayAction& action)
52   {
53     double amount = std::stod(action[2]);
54     double clock  = simgrid::s4u::Engine::getClock();
55     ACT_DEBUG("Entering %s", NAME.c_str());
56     simgrid::s4u::this_actor::execute(amount);
57     log_action(action, simgrid::s4u::Engine::getClock() - clock);
58   }
59
60   static void send(simgrid::xbt::ReplayAction& action)
61   {
62     double size                 = std::stod(action[3]);
63     std::string* payload        = new std::string(action[3]);
64     double clock                = simgrid::s4u::Engine::getClock();
65     simgrid::s4u::MailboxPtr to = simgrid::s4u::Mailbox::byName(simgrid::s4u::this_actor::get_name() + "_" + action[2]);
66     ACT_DEBUG("Entering Send: %s (size: %g) -- Actor %s on mailbox %s", NAME.c_str(), size,
67               simgrid::s4u::this_actor::get_cname(), to->get_cname());
68     to->put(payload, size);
69     delete payload;
70
71     log_action(action, simgrid::s4u::Engine::getClock() - clock);
72   }
73
74   static void recv(simgrid::xbt::ReplayAction& action)
75   {
76     double clock = simgrid::s4u::Engine::getClock();
77     simgrid::s4u::MailboxPtr from =
78         simgrid::s4u::Mailbox::byName(std::string(action[2]) + "_" + simgrid::s4u::this_actor::get_name());
79
80     ACT_DEBUG("Receiving: %s -- Actor %s on mailbox %s", NAME.c_str(), simgrid::s4u::this_actor::get_cname(),
81               from->get_cname());
82     from->get();
83     log_action(action, simgrid::s4u::Engine::getClock() - clock);
84   }
85 };
86
87 int main(int argc, char* argv[])
88 {
89   simgrid::s4u::Engine e(&argc, argv);
90
91   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file [action_files]\n"
92                        "\t# if all actions are in the same file\n"
93                        "\tExample: %s msg_platform.xml msg_deployment.xml actions\n"
94                        "\t# if actions are in separate files, specified in deployment\n"
95                        "\tExample: %s msg_platform.xml msg_deployment.xml ",
96              argv[0], argv[0], argv[0]);
97
98   e.load_platform(argv[1]);
99   e.register_default(&simgrid::xbt::replay_runner);
100   e.registerFunction<Replayer>("p0");
101   e.registerFunction<Replayer>("p1");
102   e.load_deployment(argv[2]);
103
104   /*   Action registration */
105   xbt_replay_action_register("compute", Replayer::compute);
106   xbt_replay_action_register("send", Replayer::send);
107   xbt_replay_action_register("recv", Replayer::recv);
108
109   if (argv[3]) {
110     simgrid::xbt::action_fs = new std::ifstream(argv[3], std::ifstream::in);
111   }
112
113   e.run();
114
115   if (argv[3]) {
116     delete simgrid::xbt::action_fs;
117     simgrid::xbt::action_fs = nullptr;
118   }
119
120   XBT_INFO("Simulation time %g", e.getClock());
121
122   return 0;
123 }