Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sanitize how tracefiles are handled
[simgrid.git] / examples / smpi / replay / replay.cpp
1 /* Copyright (c) 2009-2021. 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 msg 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 action_fun previous_send;
24 static void overriding_send(simgrid::xbt::ReplayAction& args)
25 {
26   previous_send(args); // Just call the overridden symbol. That's a toy example.
27 }
28
29 int main(int argc, char* argv[])
30 {
31   auto properties = simgrid::s4u::Actor::self()->get_properties();
32
33   const char* instance_id = properties->at("instance_id").c_str();
34   const int rank          = static_cast<int>(xbt_str_parse_int(properties->at("rank").c_str(), "Cannot parse rank"));
35   const char* shared_trace =
36       simgrid::s4u::Actor::self()->get_property("tracefile"); // Cannot use properties because this can be nullptr
37   const char* private_trace  = argv[1];
38   double start_delay_flops   = 0;
39
40   if (argc > 2) {
41     start_delay_flops = xbt_str_parse_double(argv[2], "Cannot parse start_delay_flops");
42   }
43
44   /* Setup things and register default actions */
45   smpi_replay_init(instance_id, rank, start_delay_flops);
46
47   /* Connect your callback function to the "blah" event in the trace files */
48   xbt_replay_action_register("blah", action_blah);
49
50   /* The send action is an override, so we have to first save its previous value in a global */
51   int new_rank;
52   MPI_Comm_rank(MPI_COMM_WORLD, &new_rank);
53   if (new_rank != rank)
54     XBT_WARN("Rank inconsistency. Got %d, expected %d", new_rank, rank);
55   if (rank == 0) {
56     previous_send = xbt_replay_action_get("send");
57     xbt_replay_action_register("send", overriding_send);
58   }
59   /* The regular run of the replayer */
60   if (shared_trace != nullptr)
61     xbt_replay_set_tracefile(shared_trace);
62   smpi_replay_main(rank, private_trace);
63   return 0;
64 }