Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sanitize how tracefiles are handled
[simgrid.git] / examples / cpp / replay-comm / s4u-replay-comm.cpp
index 47432561c3b1207f548c88a123a0f639aa9dd3fc..f92c7a117705a6853501a34a4d918b74efb0ab72 100644 (file)
@@ -32,8 +32,12 @@ public:
   explicit Replayer(std::vector<std::string> args)
   {
     const char* actor_name     = args.at(0).c_str();
-    const char* trace_filename = args.size() > 1 ? args[1].c_str() : nullptr;
-    simgrid::xbt::replay_runner(actor_name, trace_filename);
+    if (args.size() > 1) { // split mode, the trace file was provided in the deployment file
+      const char* trace_filename = args[1].c_str();
+      simgrid::xbt::replay_runner(actor_name, trace_filename);
+    } else { // Merged mode
+      simgrid::xbt::replay_runner(actor_name);
+    }
   }
 
   void operator()() const
@@ -92,23 +96,17 @@ int main(int argc, char* argv[])
   e.register_actor<Replayer>("p0");
   e.register_actor<Replayer>("p1");
   e.load_deployment(argv[2]);
+  if (argv[3] != nullptr)
+    xbt_replay_set_tracefile(argv[3]);
 
   /*   Action registration */
   xbt_replay_action_register("compute", Replayer::compute);
   xbt_replay_action_register("send", Replayer::send);
   xbt_replay_action_register("recv", Replayer::recv);
 
-  std::ifstream ifs;
-  if (argv[3]) {
-    ifs.open(argv[3], std::ifstream::in);
-    simgrid::xbt::action_fs = &ifs;
-  }
-
   e.run();
 
-  simgrid::xbt::action_fs = nullptr;
-
-  XBT_INFO("Simulation time %g", e.get_clock());
+  XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
 
   return 0;
 }