Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clang-tidy: readability-qualified-auto.
[simgrid.git] / examples / smpi / replay / replay.cpp
1 /* Copyright (c) 2009-2023. 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/replay.hpp"
7 #include "simgrid/s4u/Actor.hpp"
8 #include "smpi/smpi.h"
9 #include "xbt/asserts.h"
10 #include "xbt/str.h"
11
12 #include "xbt/log.h"
13 XBT_LOG_NEW_DEFAULT_CATEGORY(replay_test, "Messages specific for this example");
14
15 /* This shows how to extend the trace format by adding a new kind of events.
16    This function is registered through xbt_replay_action_register() below. */
17 static void action_blah(const simgrid::xbt::ReplayAction& /*args*/)
18 {
19   /* Add your answer to the blah event here.
20      args is a strings array containing the blank-separated parameters found in the trace for this event instance. */
21 }
22
23 int main(int argc, char* argv[])
24 {
25   const auto* properties = simgrid::s4u::Actor::self()->get_properties();
26
27   const char* instance_id = properties->at("instance_id").c_str();
28   const int rank          = static_cast<int>(xbt_str_parse_int(properties->at("rank").c_str(), "Cannot parse rank"));
29   const char* shared_trace =
30       simgrid::s4u::Actor::self()->get_property("tracefile"); // Cannot use properties because this can be nullptr
31   const char* private_trace  = argv[1];
32   double start_delay_flops   = 0;
33
34   if (argc > 2) {
35     start_delay_flops = xbt_str_parse_double(argv[2], "Cannot parse start_delay_flops");
36   }
37
38   /* Setup things and register default actions */
39   smpi_replay_init(instance_id, rank, start_delay_flops);
40
41   /* Connect your callback function to the "blah" event in the trace files */
42   xbt_replay_action_register("blah", action_blah);
43
44   /* The send action is an override, so we could have saved its previous value in a global, or use a lambda capture like
45    * in the following */
46   int new_rank;
47   MPI_Comm_rank(MPI_COMM_WORLD, &new_rank);
48   if (new_rank != rank)
49     XBT_WARN("Rank inconsistency. Got %d, expected %d", new_rank, rank);
50   if (rank == 0) {
51     auto previous_send = xbt_replay_action_get("send");
52     xbt_replay_action_register("send", [previous_send](simgrid::xbt::ReplayAction& args) {
53       previous_send(args); // Just call the overridden symbol. That's a toy example.
54     });
55   }
56   /* The regular run of the replayer */
57   if (shared_trace != nullptr)
58     xbt_replay_set_tracefile(shared_trace);
59   smpi_replay_main(rank, private_trace);
60   return 0;
61 }