Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
replay: add an explicit message if an action is not found in the replay engine
authorAugustin Degomme <adegomme@users.noreply.github.com>
Wed, 29 Dec 2021 15:24:35 +0000 (16:24 +0100)
committerAugustin Degomme <adegomme@users.noreply.github.com>
Wed, 29 Dec 2021 15:24:35 +0000 (16:24 +0100)
src/xbt/xbt_replay.cpp

index 9635ca8..3915221 100644 (file)
@@ -99,7 +99,12 @@ static ReplayAction* get_action(const char* name)
 static void handle_action(ReplayAction& action)
 {
   XBT_DEBUG("%s replays a %s action", action.at(0).c_str(), action.at(1).c_str());
-  action_fun function = action_funs.at(action.at(1));
+  action_fun function;
+  try {
+    function = action_funs.at(action.at(1));
+  } catch (const std::out_of_range&) {
+    xbt_die("Replay Error: action %s is unknown, please register it properly in the replay engine",  action.at(1).c_str());
+  }
   try {
     function(action);
   } catch (const Exception&) {