Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
static casting
[simgrid.git] / src / xbt / xbt_replay.cpp
index 8c2e11f..f2c6ae2 100644 (file)
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(replay,xbt,"Replay trace reader");
 
-std::unordered_map<std::string, action_fun> xbt_action_funs;
 xbt_dict_t xbt_action_queues = nullptr;
 bool is_replay_active        = false;
 
 namespace simgrid {
 namespace xbt {
 
+std::ifstream* action_fs = nullptr;
+std::unordered_map<std::string, action_fun> action_funs;
 typedef std::vector<std::string> ReplayAction;
 
 static void read_and_trim_line(std::ifstream* fs, std::string* line)
@@ -37,36 +38,6 @@ static void read_and_trim_line(std::ifstream* fs, std::string* line)
   XBT_DEBUG("got from trace: %s", line->c_str());
 }
 
-static void handle_action(ReplayAction* action)
-{
-  XBT_DEBUG("%s replays a %s action", action->at(0).c_str(), action->at(1).c_str());
-  char** c_action     = new char*[action->size() + 1];
-  action_fun function = xbt_action_funs.at(action->at(1));
-  int i = 0;
-  for (auto arg : *action) {
-    c_action[i] = xbt_strdup(arg.c_str());
-    i++;
-  }
-  c_action[i] = nullptr;
-  try {
-    function(c_action);
-  } catch (xbt_ex& e) {
-    for (unsigned int j = 0; j < action->size(); j++)
-      xbt_free(c_action[j]);
-    delete[] c_action;
-    action->clear();
-    xbt_die("Replay error:\n %s", e.what());
-  }
-  for (unsigned int j = 0; j < action->size(); j++)
-    xbt_free(c_action[j]);
-  delete[] c_action;
-}
-
-bool replay_is_active()
-{
-  return is_replay_active;
-}
-
 class ReplayReader {
   std::ifstream* fs;
   std::string line;
@@ -103,31 +74,8 @@ bool ReplayReader::get(ReplayAction* action)
       return this->get(action);
   }
 }
-std::ifstream* action_fs = nullptr;
-}
-}
 
-static simgrid::xbt::ReplayAction* action_get_action(char* name);
-/**
- * \ingroup XBT_replay
- * \brief Registers a function to handle a kind of action
- *
- * Registers a function to handle a kind of action
- * This table is then used by \ref xbt_replay_action_runner
- *
- * The argument of the function is the line describing the action, fields separated by spaces.
- *
- * \param action_name the reference name of the action.
- * \param function prototype given by the type: void...(const char** action)
- */
-void xbt_replay_action_register(const char *action_name, action_fun function)
-{
-  if (!is_replay_active) // If the user registers a function before the start
-    _xbt_replay_action_init();
-  xbt_action_funs.insert({std::string(action_name), function});
-}
-
-void _xbt_replay_action_init()
+void replay_init()
 {
   if (!is_replay_active) {
     xbt_action_queues = xbt_dict_new_homogeneous(nullptr);
@@ -135,67 +83,34 @@ void _xbt_replay_action_init()
   }
 }
 
-void _xbt_replay_action_exit()
+void replay_exit()
 {
   xbt_dict_free(&xbt_action_queues);
   xbt_action_queues = nullptr;
 }
 
-/**
- * \ingroup XBT_replay
- * \brief function used internally to actually run the replay
-
- * \param argc argc .
- * \param argv argv
- */
-int xbt_replay_action_runner(int argc, char *argv[])
+bool replay_is_active()
 {
-  if (simgrid::xbt::action_fs) { // A unique trace file
-    while (true) {
-      simgrid::xbt::ReplayAction* evt = action_get_action(argv[0]);
-      if (evt == nullptr)
-        break;
-      simgrid::xbt::handle_action(evt);
-      delete evt;
-    }
-  } else {                      // Should have got my trace file in argument
-    simgrid::xbt::ReplayAction* evt = new simgrid::xbt::ReplayAction();
-    xbt_assert(argc >= 2,
-                "No '%s' agent function provided, no simulation-wide trace file provided, "
-                "and no process-wide trace file provided in deployment file. Aborting.", argv[0]
-        );
-    simgrid::xbt::ReplayReader* reader = new simgrid::xbt::ReplayReader(argv[1]);
-    while (reader->get(evt)) {
-      if (evt->at(0).compare(argv[0]) == 0) {
-        simgrid::xbt::handle_action(evt);
-      } else {
-        XBT_WARN("%s:%d: Ignore trace element not for me", reader->filename_, reader->linenum);
-      }
-      evt->clear();
-    }
-    delete evt;
-    delete reader;
-  }
-  return 0;
+  return is_replay_active;
 }
 
-static simgrid::xbt::ReplayAction* action_get_action(char* name)
+static ReplayAction* get_action(char* name)
 {
-  simgrid::xbt::ReplayAction* action;
+  ReplayAction* action;
 
-  std::queue<simgrid::xbt::ReplayAction*>* myqueue =
-      (std::queue<simgrid::xbt::ReplayAction*>*)xbt_dict_get_or_null(xbt_action_queues, name);
-  if (myqueue == nullptr || myqueue->empty()) { // nothing stored for me. Read the file further
-    if (simgrid::xbt::action_fs == nullptr) {   // File closed now. There's nothing more to read. I'm out of here
+  std::queue<ReplayAction*>* myqueue =
+      static_cast<std::queue<ReplayAction*>*>(xbt_dict_get_or_null(xbt_action_queues, name));
+  if (myqueue == nullptr || myqueue->empty()) { // Nothing stored for me. Read the file further
+    if (action_fs == nullptr) {                 // File closed now. There's nothing more to read. I'm out of here
       goto todo_done;
     }
     // Read lines until I reach something for me (which breaks in loop body) or end of file reached
-    while (!simgrid::xbt::action_fs->eof()) {
+    while (!action_fs->eof()) {
       std::string action_line;
-      simgrid::xbt::read_and_trim_line(simgrid::xbt::action_fs, &action_line);
+      read_and_trim_line(action_fs, &action_line);
       if (action_line.length() > 0 && action_line.find("#") == std::string::npos) {
         /* we cannot split in place here because we parse&store several lines for the colleagues... */
-        action = new simgrid::xbt::ReplayAction();
+        action = new ReplayAction();
         boost::split(*action, action_line, boost::is_any_of(" \t"), boost::token_compress_on);
 
         // if it's for me, I'm done
@@ -204,10 +119,10 @@ static simgrid::xbt::ReplayAction* action_get_action(char* name)
           return action;
         } else {
           // Else, I have to store it for the relevant colleague
-          std::queue<simgrid::xbt::ReplayAction*>* otherqueue =
-              (std::queue<simgrid::xbt::ReplayAction*>*)xbt_dict_get_or_null(xbt_action_queues, evtname.c_str());
+          std::queue<ReplayAction*>* otherqueue =
+              static_cast<std::queue<ReplayAction*>*>(xbt_dict_get_or_null(xbt_action_queues, evtname.c_str()));
           if (otherqueue == nullptr) { // Damn. Create the queue of that guy
-            otherqueue = new std::queue<simgrid::xbt::ReplayAction*>();
+            otherqueue = new std::queue<ReplayAction*>();
             xbt_dict_set(xbt_action_queues, evtname.c_str(), otherqueue, nullptr);
           }
           otherqueue->push(action);
@@ -230,3 +145,86 @@ todo_done:
   }
   return nullptr;
 }
+
+static void handle_action(ReplayAction* action)
+{
+  XBT_DEBUG("%s replays a %s action", action->at(0).c_str(), action->at(1).c_str());
+  char** c_action     = new char*[action->size() + 1];
+  action_fun function = action_funs.at(action->at(1));
+  int i               = 0;
+  for (auto arg : *action) {
+    c_action[i] = xbt_strdup(arg.c_str());
+    i++;
+  }
+  c_action[i] = nullptr;
+  try {
+    function(c_action);
+  } catch (xbt_ex& e) {
+    for (unsigned int j = 0; j < action->size(); j++)
+      xbt_free(c_action[j]);
+    delete[] c_action;
+    action->clear();
+    xbt_die("Replay error:\n %s", e.what());
+  }
+  for (unsigned int j = 0; j < action->size(); j++)
+    xbt_free(c_action[j]);
+  delete[] c_action;
+}
+
+/**
+ * \ingroup XBT_replay
+ * \brief function used internally to actually run the replay
+
+ * \param argc argc .
+ * \param argv argv
+ */
+int replay_runner(int argc, char* argv[])
+{
+  if (simgrid::xbt::action_fs) { // A unique trace file
+    while (true) {
+      simgrid::xbt::ReplayAction* evt = simgrid::xbt::get_action(argv[0]);
+      if (evt == nullptr)
+        break;
+      simgrid::xbt::handle_action(evt);
+      delete evt;
+    }
+  } else { // Should have got my trace file in argument
+    simgrid::xbt::ReplayAction* evt = new simgrid::xbt::ReplayAction();
+    xbt_assert(argc >= 2, "No '%s' agent function provided, no simulation-wide trace file provided, "
+                          "and no process-wide trace file provided in deployment file. Aborting.",
+               argv[0]);
+    simgrid::xbt::ReplayReader* reader = new simgrid::xbt::ReplayReader(argv[1]);
+    while (reader->get(evt)) {
+      if (evt->at(0).compare(argv[0]) == 0) {
+        simgrid::xbt::handle_action(evt);
+      } else {
+        XBT_WARN("%s:%d: Ignore trace element not for me", reader->filename_, reader->linenum);
+      }
+      evt->clear();
+    }
+    delete evt;
+    delete reader;
+  }
+  return 0;
+}
+}
+}
+
+/**
+ * \ingroup XBT_replay
+ * \brief Registers a function to handle a kind of action
+ *
+ * Registers a function to handle a kind of action
+ * This table is then used by \ref xbt_replay_action_runner
+ *
+ * The argument of the function is the line describing the action, fields separated by spaces.
+ *
+ * \param action_name the reference name of the action.
+ * \param function prototype given by the type: void...(const char** action)
+ */
+void xbt_replay_action_register(const char* action_name, action_fun function)
+{
+  if (!is_replay_active) // If the user registers a function before the start
+    simgrid::xbt::replay_init();
+  simgrid::xbt::action_funs.insert({std::string(action_name), function});
+}