Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove useless temporary shadowing outer variable.
[simgrid.git] / src / s4u / s4u_Engine.cpp
1 /* s4u::Engine Simulation Engine and global functions. */
2
3 /* Copyright (c) 2006-2021. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "mc/mc.h"
9 #include "simgrid/kernel/routing/NetPoint.hpp"
10 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
11 #include "simgrid/s4u/Disk.hpp"
12 #include "simgrid/s4u/Engine.hpp"
13 #include "simgrid/s4u/Host.hpp"
14 #include "simgrid/s4u/Mailbox.hpp"
15 #include "simgrid/s4u/NetZone.hpp"
16 #include "simgrid/simix.h"
17 #include "src/instr/instr_private.hpp"
18 #include "src/kernel/EngineImpl.hpp"
19 #include "src/mc/mc_replay.hpp"
20 #include "src/surf/network_interface.hpp"
21 #include "surf/surf.hpp" // routing_platf. FIXME:KILLME. SOON
22 #include <simgrid/Exception.hpp>
23
24 #include <algorithm>
25 #include <string>
26
27 XBT_LOG_NEW_CATEGORY(s4u, "Log channels of the S4U (Simgrid for you) interface");
28 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_engine, s4u, "Logging specific to S4U (engine)");
29
30 namespace simgrid {
31 namespace s4u {
32 xbt::signal<void()> Engine::on_platform_creation;
33 xbt::signal<void()> Engine::on_platform_created;
34 xbt::signal<void()> Engine::on_simulation_end;
35 xbt::signal<void(double)> Engine::on_time_advance;
36 xbt::signal<void(void)> Engine::on_deadlock;
37
38 Engine* Engine::instance_ = nullptr; /* That singleton is awful, but I don't see no other solution right now. */
39
40 void Engine::initialize(int* argc, char** argv)
41 {
42   xbt_assert(Engine::instance_ == nullptr, "It is currently forbidden to create more than one instance of s4u::Engine");
43   Engine::instance_ = this;
44   instr::init();
45   SIMIX_global_init(argc, argv);
46 }
47
48 Engine::Engine(std::string name) : pimpl(new kernel::EngineImpl())
49 {
50   int argc   = 1;
51   char* argv = &name[0];
52   initialize(&argc, &argv);
53 }
54
55 Engine::Engine(int* argc, char** argv) : pimpl(new kernel::EngineImpl())
56 {
57   initialize(argc, argv);
58 }
59
60 Engine::~Engine()
61 {
62   delete pimpl;
63   Engine::instance_ = nullptr;
64 }
65
66 /** @brief Retrieve the engine singleton */
67 Engine* Engine::get_instance()
68 {
69   if (Engine::instance_ == nullptr) {
70     auto e = new Engine(nullptr, nullptr);
71     xbt_assert(Engine::instance_ == e);
72   }
73   return Engine::instance_;
74 }
75
76 void Engine::shutdown()
77 {
78   delete Engine::instance_;
79   Engine::instance_ = nullptr;
80 }
81
82 double Engine::get_clock()
83 {
84   if (MC_is_active() || MC_record_replay_is_active()) {
85     return MC_process_clock_get(SIMIX_process_self());
86   } else {
87     return surf_get_clock();
88   }
89 }
90
91 void Engine::add_model(std::shared_ptr<kernel::resource::Model> model,
92                        const std::vector<kernel::resource::Model*>& dependencies)
93 {
94   simgrid::kernel::actor::simcall([this, &model, &dependencies] { pimpl->add_model(std::move(model), dependencies); });
95 }
96
97 const std::vector<simgrid::kernel::resource::Model*>& Engine::get_all_models() const
98 {
99   return pimpl->get_all_models();
100 }
101
102 /**
103  * Creates a new platform, including hosts, links, and the routing table.
104  *
105  * @beginrst
106  * See also: :ref:`platform`.
107  * @endrst
108  */
109 void Engine::load_platform(const std::string& platf) const
110 {
111   double start = xbt_os_time();
112   parse_platform_file(platf);
113
114   double end = xbt_os_time();
115   XBT_DEBUG("PARSE TIME: %g", (end - start));
116 }
117
118 void Engine::register_function(const std::string& name, int (*code)(int, char**)) // XBT_ATTRIB_DEPRECATED_v329
119 {
120   kernel::actor::ActorCodeFactory code_factory = [code](std::vector<std::string> args) {
121     return xbt::wrap_main(code, std::move(args));
122   };
123   register_function(name, code_factory);
124 }
125 void Engine::register_default(int (*code)(int, char**)) // XBT_ATTRIB_DEPRECATED_v329
126 {
127   register_default([code](std::vector<std::string> args) { return xbt::wrap_main(code, std::move(args)); });
128 }
129
130 /** Registers the main function of an actor that will be launched from the deployment file */
131 void Engine::register_function(const std::string& name, const std::function<void(int, char**)>& code)
132 {
133   kernel::actor::ActorCodeFactory code_factory = [code](std::vector<std::string> args) {
134     return xbt::wrap_main(code, std::move(args));
135   };
136   register_function(name, code_factory);
137 }
138
139 /** Registers the main function of an actor that will be launched from the deployment file */
140 void Engine::register_function(const std::string& name, const std::function<void(std::vector<std::string>)>& code)
141 {
142   kernel::actor::ActorCodeFactory code_factory = [code{code}](std::vector<std::string> args) mutable {
143     return std::bind(std::move(code), std::move(args));
144   };
145   register_function(name, code_factory);
146 }
147 /** Registers a function as the default main function of actors
148  *
149  * It will be used as fallback when the function requested from the deployment file was not registered.
150  * It is used for trace-based simulations (see examples/cpp/replay-comms and similar).
151  */
152 void Engine::register_default(const std::function<void(int, char**)>& code)
153 {
154   register_default([code](std::vector<std::string> args) { return xbt::wrap_main(code, std::move(args)); });
155 }
156 void Engine::register_default(const kernel::actor::ActorCodeFactory& code)
157 {
158   simgrid::kernel::actor::simcall([this, &code]() { pimpl->register_default(code); });
159 }
160
161 void Engine::register_function(const std::string& name, const kernel::actor::ActorCodeFactory& code)
162 {
163   simgrid::kernel::actor::simcall([this, name, &code]() { pimpl->register_function(name, code); });
164 }
165
166 /** Load a deployment file and launch the actors that it contains
167  *
168  * @beginrst
169  * See also: :ref:`deploy`.
170  * @endrst
171  */
172 void Engine::load_deployment(const std::string& deploy) const
173 {
174   pimpl->load_deployment(deploy);
175 }
176
177 /** Returns the amount of hosts in the platform */
178 size_t Engine::get_host_count() const
179 {
180   return pimpl->hosts_.size();
181 }
182
183 std::vector<Host*> Engine::get_all_hosts() const
184 {
185   std::vector<Host*> res;
186   for (auto const& kv : pimpl->hosts_)
187     res.push_back(kv.second);
188   return res;
189 }
190
191 std::vector<Host*> Engine::get_filtered_hosts(const std::function<bool(Host*)>& filter) const
192 {
193   std::vector<Host*> hosts;
194   for (auto const& kv : pimpl->hosts_) {
195     if (filter(kv.second))
196       hosts.push_back(kv.second);
197   }
198
199   return hosts;
200 }
201
202 void Engine::host_register(const std::string& name, Host* host)
203 {
204   pimpl->hosts_[name] = host;
205 }
206
207 void Engine::host_unregister(const std::string& name)
208 {
209   pimpl->hosts_.erase(name);
210 }
211
212 /** @brief Find a host from its name.
213  *
214  *  @throw std::invalid_argument if the searched host does not exist.
215  */
216 Host* Engine::host_by_name(const std::string& name) const
217 {
218   auto host = pimpl->hosts_.find(name);
219   if (host == pimpl->hosts_.end())
220     throw std::invalid_argument(std::string("Host not found: '") + name + std::string("'"));
221   return host->second;
222 }
223
224 /** @brief Find a host from its name (or nullptr if that host does not exist) */
225 Host* Engine::host_by_name_or_null(const std::string& name) const
226 {
227   auto host = pimpl->hosts_.find(name);
228   return host == pimpl->hosts_.end() ? nullptr : host->second;
229 }
230
231 /** @brief Find a link from its name.
232  *
233  *  @throw std::invalid_argument if the searched link does not exist.
234  */
235 Link* Engine::link_by_name(const std::string& name) const
236 {
237   auto link = pimpl->links_.find(name);
238   if (link == pimpl->links_.end())
239     throw std::invalid_argument(std::string("Link not found: ") + name);
240   return link->second->get_iface();
241 }
242
243 /** @brief Find a link from its name (or nullptr if that link does not exist) */
244 Link* Engine::link_by_name_or_null(const std::string& name) const
245 {
246   auto link = pimpl->links_.find(name);
247   return link == pimpl->links_.end() ? nullptr : link->second->get_iface();
248 }
249
250 /** @brief Find a mailox from its name or create one if it does not exist) */
251 Mailbox* Engine::mailbox_by_name_or_create(const std::string& name) const
252 {
253   /* two actors may have pushed the same mbox_create simcall at the same time */
254   kernel::activity::MailboxImpl* mbox = kernel::actor::simcall([&name, this] {
255     auto m = pimpl->mailboxes_.emplace(name, nullptr);
256     if (m.second) {
257       m.first->second = new kernel::activity::MailboxImpl(name);
258       XBT_DEBUG("Creating a mailbox at %p with name %s", m.first->second, name.c_str());
259     }
260     return m.first->second;
261   });
262   return mbox->get_iface();
263 }
264
265 void Engine::link_register(const std::string& name, const Link* link)
266 {
267   pimpl->links_[name] = link->get_impl();
268 }
269
270 void Engine::link_unregister(const std::string& name)
271 {
272   pimpl->links_.erase(name);
273 }
274
275 /** @brief Returns the amount of links in the platform */
276 size_t Engine::get_link_count() const
277 {
278   return pimpl->links_.size();
279 }
280
281 /** @brief Returns the list of all links found in the platform */
282 std::vector<Link*> Engine::get_all_links() const
283 {
284   std::vector<Link*> res;
285   for (auto const& kv : pimpl->links_)
286     res.push_back(kv.second->get_iface());
287   return res;
288 }
289
290 std::vector<Link*> Engine::get_filtered_links(const std::function<bool(Link*)>& filter) const
291 {
292   std::vector<Link*> filtered_list;
293   for (auto const& kv : pimpl->links_) {
294     Link* l = kv.second->get_iface();
295     if (filter(l))
296       filtered_list.push_back(l);
297   }
298   return filtered_list;
299 }
300
301 size_t Engine::get_actor_count() const
302 {
303   return pimpl->get_actor_count();
304 }
305
306 std::vector<ActorPtr> Engine::get_all_actors() const
307 {
308   std::vector<ActorPtr> actor_list;
309   for (auto const& kv : pimpl->get_actor_list()) {
310     actor_list.push_back(kv.second->get_iface());
311   }
312   return actor_list;
313 }
314
315 std::vector<ActorPtr> Engine::get_filtered_actors(const std::function<bool(ActorPtr)>& filter) const
316 {
317   std::vector<ActorPtr> actor_list;
318   for (auto const& kv : pimpl->get_actor_list()) {
319     if (filter(kv.second->get_iface()))
320       actor_list.push_back(kv.second->get_iface());
321   }
322   return actor_list;
323 }
324
325 void Engine::run() const
326 {
327   /* sealing resources before run: links */
328   for (auto* link : get_all_links())
329     link->seal();
330   /* seal netzone root, recursively seal children netzones, hosts and disks */
331   get_netzone_root()->seal();
332
333   /* Clean IO before the run */
334   fflush(stdout);
335   fflush(stderr);
336
337   if (MC_is_active()) {
338     MC_run();
339   } else {
340     pimpl->run();
341   }
342 }
343
344 /** @brief Retrieve the root netzone, containing all others */
345 s4u::NetZone* Engine::get_netzone_root() const
346 {
347   if (pimpl->netzone_root_)
348     return pimpl->netzone_root_->get_iface();
349   return nullptr;
350 }
351 /** @brief Set the root netzone, containing all others. Once set, it cannot be changed. */
352 void Engine::set_netzone_root(const s4u::NetZone* netzone)
353 {
354   xbt_assert(pimpl->netzone_root_ == nullptr, "The root NetZone cannot be changed once set");
355   pimpl->netzone_root_ = netzone->get_impl();
356 }
357
358 static NetZone* netzone_by_name_recursive(NetZone* current, const std::string& name)
359 {
360   if (current->get_name() == name)
361     return current;
362
363   for (auto const& elem : current->get_children()) {
364     NetZone* tmp = netzone_by_name_recursive(elem, name);
365     if (tmp != nullptr) {
366       return tmp;
367     }
368   }
369   return nullptr;
370 }
371
372 /** @brief Retrieve the NetZone of the given name (or nullptr if not found) */
373 NetZone* Engine::netzone_by_name_or_null(const std::string& name) const
374 {
375   return netzone_by_name_recursive(get_netzone_root(), name);
376 }
377
378 /** @brief Retrieve the netpoint of the given name (or nullptr if not found) */
379 kernel::routing::NetPoint* Engine::netpoint_by_name_or_null(const std::string& name) const
380 {
381   auto netp = pimpl->netpoints_.find(name);
382   return netp == pimpl->netpoints_.end() ? nullptr : netp->second;
383 }
384
385 kernel::routing::NetPoint* Engine::netpoint_by_name(const std::string& name) const
386 {
387   auto netp = netpoint_by_name_or_null(name);
388   if (netp == nullptr) {
389     throw std::invalid_argument(std::string("Netpoint not found: %s") + name);
390   }
391   return netp;
392 }
393
394 std::vector<kernel::routing::NetPoint*> Engine::get_all_netpoints() const
395 {
396   std::vector<kernel::routing::NetPoint*> res;
397   for (auto const& kv : pimpl->netpoints_)
398     res.push_back(kv.second);
399   return res;
400 }
401
402 /** @brief Register a new netpoint to the system */
403 void Engine::netpoint_register(kernel::routing::NetPoint* point)
404 {
405   simgrid::kernel::actor::simcall([this, point] { pimpl->netpoints_[point->get_name()] = point; });
406 }
407
408 /** @brief Unregister a given netpoint */
409 void Engine::netpoint_unregister(kernel::routing::NetPoint* point)
410 {
411   kernel::actor::simcall([this, point] {
412     pimpl->netpoints_.erase(point->get_name());
413     delete point;
414   });
415 }
416
417 bool Engine::is_initialized()
418 {
419   return Engine::instance_ != nullptr;
420 }
421 void Engine::set_config(const std::string& str)
422 {
423   config::set_parse(str);
424 }
425 void Engine::set_config(const std::string& name, int value)
426 {
427   config::set_value(name.c_str(), value);
428 }
429 void Engine::set_config(const std::string& name, double value)
430 {
431   config::set_value(name.c_str(), value);
432 }
433 void Engine::set_config(const std::string& name, bool value)
434 {
435   config::set_value(name.c_str(), value);
436 }
437 void Engine::set_config(const std::string& name, const std::string& value)
438 {
439   config::set_value(name.c_str(), value);
440 }
441
442 } // namespace s4u
443 } // namespace simgrid
444
445 /* **************************** Public C interface *************************** */
446 void simgrid_init(int* argc, char** argv)
447 {
448   simgrid::s4u::Engine e(argc, argv);
449 }
450 void simgrid_load_platform(const char* file)
451 {
452   simgrid::s4u::Engine::get_instance()->load_platform(file);
453 }
454
455 void simgrid_load_deployment(const char* file)
456 {
457   simgrid::s4u::Engine::get_instance()->load_deployment(file);
458 }
459 void simgrid_run()
460 {
461   simgrid::s4u::Engine::get_instance()->run();
462 }
463 void simgrid_register_function(const char* name, void (*code)(int, char**))
464 {
465   simgrid::s4u::Engine::get_instance()->register_function(name, code);
466 }
467 void simgrid_register_default(void (*code)(int, char**))
468 {
469   simgrid::s4u::Engine::get_instance()->register_default(code);
470 }
471 double simgrid_get_clock()
472 {
473   return simgrid::s4u::Engine::get_clock();
474 }
475
476 int simgrid_get_actor_count() // XBT_ATTRIB_DEPRECATED_v330
477 {
478   return simgrid::s4u::Engine::get_instance()->get_actor_count();
479 }