Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7a35e2fdf805b522af20f8bdd03000d056969b0b
[simgrid.git] / src / xbt / xbt_replay.cpp
1 /* Copyright (c) 2010, 2012-2015, 2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "xbt/ex.hpp"
8 #include "xbt/log.h"
9 #include "xbt/replay.hpp"
10
11 #include <boost/algorithm/string.hpp>
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(replay,xbt,"Replay trace reader");
14
15 namespace simgrid {
16 namespace xbt {
17
18 std::ifstream* action_fs = nullptr;
19 std::unordered_map<std::string, action_fun> action_funs;
20
21 static void read_and_trim_line(std::ifstream* fs, std::string* line)
22 {
23   do {
24     std::getline(*fs, *line);
25     boost::trim(*line);
26   } while (not fs->eof() && (line->length() == 0 || line->front() == '#'));
27   XBT_DEBUG("got from trace: %s", line->c_str());
28 }
29
30 class ReplayReader {
31   std::ifstream* fs;
32   std::string line;
33
34 public:
35   explicit ReplayReader(const char* filename)
36   {
37     XBT_VERB("Prepare to replay file '%s'", filename);
38     fs = new std::ifstream(filename, std::ifstream::in);
39     xbt_assert(fs->is_open(), "Cannot read replay file '%s'", filename);
40   }
41   ~ReplayReader()
42   {
43     delete fs;
44   }
45   bool get(ReplayAction* action);
46 };
47
48 bool ReplayReader::get(ReplayAction* action)
49 {
50   read_and_trim_line(fs, &line);
51
52   boost::split(*action, line, boost::is_any_of(" \t"), boost::token_compress_on);
53   return not fs->eof();
54 }
55
56 static ReplayAction* get_action(char* name)
57 {
58   ReplayAction* action;
59
60   std::queue<ReplayAction*>* myqueue = nullptr;
61   if (action_queues.find(std::string(name)) != action_queues.end())
62     myqueue = action_queues.at(std::string(name));
63   if (myqueue == nullptr || myqueue->empty()) { // Nothing stored for me. Read the file further
64     // Read lines until I reach something for me (which breaks in loop body) or end of file reached
65     while (true) {
66       std::string action_line;
67       read_and_trim_line(action_fs, &action_line);
68       if (action_fs->eof())
69         break;
70       /* we cannot split in place here because we parse&store several lines for the colleagues... */
71       action = new ReplayAction();
72       boost::split(*action, action_line, boost::is_any_of(" \t"), boost::token_compress_on);
73
74       // if it's for me, I'm done
75       std::string evtname = action->front();
76       if (evtname.compare(name) == 0) {
77         return action;
78       } else {
79         // Else, I have to store it for the relevant colleague
80         std::queue<ReplayAction*>* otherqueue = nullptr;
81         auto act                              = action_queues.find(evtname);
82         if (act != action_queues.end()) {
83           otherqueue = act->second;
84         } else { // Damn. Create the queue of that guy
85           otherqueue = new std::queue<ReplayAction*>();
86           action_queues.insert({evtname, otherqueue});
87         }
88         otherqueue->push(action);
89       }
90     }
91     // end of file reached while searching in vain for more work
92   } else {
93     // Get something from my queue and return it
94     action = myqueue->front();
95     myqueue->pop();
96     return action;
97   }
98   return nullptr;
99 }
100
101 static void handle_action(ReplayAction* action)
102 {
103   XBT_DEBUG("%s replays a %s action", action->at(0).c_str(), action->at(1).c_str());
104   char** c_action     = new char*[action->size() + 1];
105   action_fun function = action_funs.at(action->at(1));
106   int i               = 0;
107   for (auto arg : *action) {
108     c_action[i] = xbt_strdup(arg.c_str());
109     i++;
110   }
111   c_action[i] = nullptr;
112   try {
113     function(c_action);
114   } catch (xbt_ex& e) {
115     for (unsigned int j = 0; j < action->size(); j++)
116       xbt_free(c_action[j]);
117     delete[] c_action;
118     action->clear();
119     xbt_die("Replay error:\n %s", e.what());
120   }
121   for (unsigned int j = 0; j < action->size(); j++)
122     xbt_free(c_action[j]);
123   delete[] c_action;
124 }
125
126 /**
127  * \ingroup XBT_replay
128  * \brief function used internally to actually run the replay
129  */
130 int replay_runner(int argc, char* argv[])
131 {
132   if (simgrid::xbt::action_fs) { // A unique trace file
133     while (true) {
134       simgrid::xbt::ReplayAction* evt = simgrid::xbt::get_action(argv[0]);
135       if (evt == nullptr)
136         break;
137       simgrid::xbt::handle_action(evt);
138       delete evt;
139     }
140     if (action_queues.find(std::string(argv[0])) != action_queues.end()) {
141       std::queue<ReplayAction*>* myqueue = action_queues.at(std::string(argv[0]));
142       delete myqueue;
143       action_queues.erase(std::string(argv[0]));
144     }
145   } else { // Should have got my trace file in argument
146     simgrid::xbt::ReplayAction* evt = new simgrid::xbt::ReplayAction();
147     xbt_assert(argc >= 2, "No '%s' agent function provided, no simulation-wide trace file provided, "
148                           "and no process-wide trace file provided in deployment file. Aborting.",
149                argv[0]);
150     simgrid::xbt::ReplayReader* reader = new simgrid::xbt::ReplayReader(argv[1]);
151     while (reader->get(evt)) {
152       if (evt->front().compare(argv[0]) == 0) {
153         simgrid::xbt::handle_action(evt);
154       } else {
155         XBT_WARN("Ignore trace element not for me");
156       }
157       evt->clear();
158     }
159     delete evt;
160     delete reader;
161   }
162   return 0;
163 }
164 }
165 }
166
167 /**
168  * \ingroup XBT_replay
169  * \brief Registers a function to handle a kind of action
170  *
171  * Registers a function to handle a kind of action
172  * This table is then used by \ref xbt_replay_action_runner
173  *
174  * The argument of the function is the line describing the action, fields separated by spaces.
175  *
176  * \param action_name the reference name of the action.
177  * \param function prototype given by the type: void...(const char** action)
178  */
179 void xbt_replay_action_register(const char* action_name, action_fun function)
180 {
181   simgrid::xbt::action_funs[std::string(action_name)] = function;
182 }
183
184 /**
185  * \ingroup XBT_replay
186  * \brief Get the function that was previously registered to handle a kind of action
187  *
188  * This can be useful if you want to override and extend an existing action.
189  */
190 action_fun xbt_replay_action_get(const char* action_name)
191 {
192   return simgrid::xbt::action_funs.at(std::string(action_name));
193 }