Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make comment match the declaration in Engine.hpp.
[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   pimpl->load_platform(platf);
112 }
113
114 void Engine::register_function(const std::string& name, int (*code)(int, char**)) // XBT_ATTRIB_DEPRECATED_v330
115 {
116   kernel::actor::ActorCodeFactory code_factory = [code](std::vector<std::string> args) {
117     return xbt::wrap_main(code, std::move(args));
118   };
119   register_function(name, code_factory);
120 }
121 void Engine::register_default(int (*code)(int, char**)) // XBT_ATTRIB_DEPRECATED_v330
122 {
123   register_default([code](std::vector<std::string> args) { return xbt::wrap_main(code, std::move(args)); });
124 }
125
126 /** Registers the main function of an actor that will be launched from the deployment file */
127 void Engine::register_function(const std::string& name, const std::function<void(int, char**)>& code)
128 {
129   kernel::actor::ActorCodeFactory code_factory = [code](std::vector<std::string> args) {
130     return xbt::wrap_main(code, std::move(args));
131   };
132   register_function(name, code_factory);
133 }
134
135 /** Registers the main function of an actor that will be launched from the deployment file */
136 void Engine::register_function(const std::string& name, const std::function<void(std::vector<std::string>)>& code)
137 {
138   kernel::actor::ActorCodeFactory code_factory = [code{code}](std::vector<std::string> args) mutable {
139     return std::bind(std::move(code), std::move(args));
140   };
141   register_function(name, code_factory);
142 }
143 /** Registers a function as the default main function of actors
144  *
145  * It will be used as fallback when the function requested from the deployment file was not registered.
146  * It is used for trace-based simulations (see examples/cpp/replay-comms and similar).
147  */
148 void Engine::register_default(const std::function<void(int, char**)>& code)
149 {
150   register_default([code](std::vector<std::string> args) { return xbt::wrap_main(code, std::move(args)); });
151 }
152 void Engine::register_default(const kernel::actor::ActorCodeFactory& code)
153 {
154   simgrid::kernel::actor::simcall([this, &code]() { pimpl->register_default(code); });
155 }
156
157 void Engine::register_function(const std::string& name, const kernel::actor::ActorCodeFactory& code)
158 {
159   simgrid::kernel::actor::simcall([this, name, &code]() { pimpl->register_function(name, code); });
160 }
161
162 /** Load a deployment file and launch the actors that it contains
163  *
164  * @beginrst
165  * See also: :ref:`deploy`.
166  * @endrst
167  */
168 void Engine::load_deployment(const std::string& deploy) const
169 {
170   pimpl->load_deployment(deploy);
171 }
172
173 /** Returns the amount of hosts in the platform */
174 size_t Engine::get_host_count() const
175 {
176   return pimpl->hosts_.size();
177 }
178
179 std::vector<Host*> Engine::get_all_hosts() const
180 {
181   std::vector<Host*> res;
182   for (auto const& kv : pimpl->hosts_)
183     res.push_back(kv.second);
184   return res;
185 }
186
187 std::vector<Host*> Engine::get_filtered_hosts(const std::function<bool(Host*)>& filter) const
188 {
189   std::vector<Host*> hosts;
190   for (auto const& kv : pimpl->hosts_) {
191     if (filter(kv.second))
192       hosts.push_back(kv.second);
193   }
194
195   return hosts;
196 }
197
198 void Engine::host_register(const std::string& name, Host* host)
199 {
200   pimpl->hosts_[name] = host;
201 }
202
203 void Engine::host_unregister(const std::string& name)
204 {
205   pimpl->hosts_.erase(name);
206 }
207
208 /** @brief Find a host from its name.
209  *
210  *  @throw std::invalid_argument if the searched host does not exist.
211  */
212 Host* Engine::host_by_name(const std::string& name) const
213 {
214   auto host = pimpl->hosts_.find(name);
215   if (host == pimpl->hosts_.end())
216     throw std::invalid_argument(std::string("Host not found: '") + name + std::string("'"));
217   return host->second;
218 }
219
220 /** @brief Find a host from its name (or nullptr if that host does not exist) */
221 Host* Engine::host_by_name_or_null(const std::string& name) const
222 {
223   auto host = pimpl->hosts_.find(name);
224   return host == pimpl->hosts_.end() ? nullptr : host->second;
225 }
226
227 /** @brief Find a link from its name.
228  *
229  *  @throw std::invalid_argument if the searched link does not exist.
230  */
231 Link* Engine::link_by_name(const std::string& name) const
232 {
233   auto link = pimpl->links_.find(name);
234   if (link == pimpl->links_.end())
235     throw std::invalid_argument(std::string("Link not found: ") + name);
236   return link->second->get_iface();
237 }
238
239 SplitDuplexLink* Engine::split_duplex_link_by_name(const std::string& name) const
240 {
241   auto link = pimpl->split_duplex_links_.find(name);
242   if (link == pimpl->split_duplex_links_.end())
243     throw std::invalid_argument(std::string("Link not found: ") + name);
244   return link->second->get_iface();
245 }
246
247 /** @brief Find a link from its name (or nullptr if that link does not exist) */
248 Link* Engine::link_by_name_or_null(const std::string& name) const
249 {
250   auto link = pimpl->links_.find(name);
251   return link == pimpl->links_.end() ? nullptr : link->second->get_iface();
252 }
253
254 /** @brief Find a mailox from its name or create one if it does not exist) */
255 Mailbox* Engine::mailbox_by_name_or_create(const std::string& name) const
256 {
257   /* two actors may have pushed the same mbox_create simcall at the same time */
258   kernel::activity::MailboxImpl* mbox = kernel::actor::simcall([&name, this] {
259     auto m = pimpl->mailboxes_.emplace(name, nullptr);
260     if (m.second) {
261       m.first->second = new kernel::activity::MailboxImpl(name);
262       XBT_DEBUG("Creating a mailbox at %p with name %s", m.first->second, name.c_str());
263     }
264     return m.first->second;
265   });
266   return mbox->get_iface();
267 }
268
269 void Engine::link_register(const std::string& name, const Link* link)
270 {
271   pimpl->links_[name] = link->get_impl();
272 }
273
274 void Engine::link_unregister(const std::string& name)
275 {
276   pimpl->links_.erase(name);
277 }
278
279 /** @brief Returns the amount of links in the platform */
280 size_t Engine::get_link_count() const
281 {
282   return pimpl->links_.size();
283 }
284
285 /** @brief Returns the list of all links found in the platform */
286 std::vector<Link*> Engine::get_all_links() const
287 {
288   std::vector<Link*> res;
289   for (auto const& kv : pimpl->links_)
290     res.push_back(kv.second->get_iface());
291   return res;
292 }
293
294 std::vector<Link*> Engine::get_filtered_links(const std::function<bool(Link*)>& filter) const
295 {
296   std::vector<Link*> filtered_list;
297   for (auto const& kv : pimpl->links_) {
298     Link* l = kv.second->get_iface();
299     if (filter(l))
300       filtered_list.push_back(l);
301   }
302   return filtered_list;
303 }
304
305 size_t Engine::get_actor_count() const
306 {
307   return pimpl->get_actor_count();
308 }
309
310 std::vector<ActorPtr> Engine::get_all_actors() const
311 {
312   std::vector<ActorPtr> actor_list;
313   for (auto const& kv : pimpl->get_actor_list()) {
314     actor_list.push_back(kv.second->get_iface());
315   }
316   return actor_list;
317 }
318
319 std::vector<ActorPtr> Engine::get_filtered_actors(const std::function<bool(ActorPtr)>& filter) const
320 {
321   std::vector<ActorPtr> actor_list;
322   for (auto const& kv : pimpl->get_actor_list()) {
323     if (filter(kv.second->get_iface()))
324       actor_list.push_back(kv.second->get_iface());
325   }
326   return actor_list;
327 }
328
329 void Engine::run() const
330 {
331   /* sealing resources before run: links */
332   for (auto* link : get_all_links())
333     link->seal();
334   /* seal netzone root, recursively seal children netzones, hosts and disks */
335   get_netzone_root()->seal();
336
337   /* Clean IO before the run */
338   fflush(stdout);
339   fflush(stderr);
340
341   if (MC_is_active()) {
342     MC_run();
343   } else {
344     pimpl->run();
345   }
346 }
347
348 /** @brief Retrieve the root netzone, containing all others */
349 s4u::NetZone* Engine::get_netzone_root() const
350 {
351   if (pimpl->netzone_root_)
352     return pimpl->netzone_root_->get_iface();
353   return nullptr;
354 }
355 /** @brief Set the root netzone, containing all others. Once set, it cannot be changed. */
356 void Engine::set_netzone_root(const s4u::NetZone* netzone)
357 {
358   xbt_assert(pimpl->netzone_root_ == nullptr, "The root NetZone cannot be changed once set");
359   pimpl->netzone_root_ = netzone->get_impl();
360 }
361
362 static NetZone* netzone_by_name_recursive(NetZone* current, const std::string& name)
363 {
364   if (current->get_name() == name)
365     return current;
366
367   for (auto const& elem : current->get_children()) {
368     NetZone* tmp = netzone_by_name_recursive(elem, name);
369     if (tmp != nullptr) {
370       return tmp;
371     }
372   }
373   return nullptr;
374 }
375
376 /** @brief Retrieve the NetZone of the given name (or nullptr if not found) */
377 NetZone* Engine::netzone_by_name_or_null(const std::string& name) const
378 {
379   return netzone_by_name_recursive(get_netzone_root(), name);
380 }
381
382 /** @brief Retrieve the netpoint of the given name (or nullptr if not found) */
383 kernel::routing::NetPoint* Engine::netpoint_by_name_or_null(const std::string& name) const
384 {
385   auto netp = pimpl->netpoints_.find(name);
386   return netp == pimpl->netpoints_.end() ? nullptr : netp->second;
387 }
388
389 kernel::routing::NetPoint* Engine::netpoint_by_name(const std::string& name) const
390 {
391   auto netp = netpoint_by_name_or_null(name);
392   if (netp == nullptr) {
393     throw std::invalid_argument(std::string("Netpoint not found: %s") + name);
394   }
395   return netp;
396 }
397
398 std::vector<kernel::routing::NetPoint*> Engine::get_all_netpoints() const
399 {
400   std::vector<kernel::routing::NetPoint*> res;
401   for (auto const& kv : pimpl->netpoints_)
402     res.push_back(kv.second);
403   return res;
404 }
405
406 /** @brief Register a new netpoint to the system */
407 void Engine::netpoint_register(kernel::routing::NetPoint* point)
408 {
409   simgrid::kernel::actor::simcall([this, point] { pimpl->netpoints_[point->get_name()] = point; });
410 }
411
412 /** @brief Unregister a given netpoint */
413 void Engine::netpoint_unregister(kernel::routing::NetPoint* point)
414 {
415   kernel::actor::simcall([this, point] {
416     pimpl->netpoints_.erase(point->get_name());
417     delete point;
418   });
419 }
420
421 bool Engine::is_initialized()
422 {
423   return Engine::instance_ != nullptr;
424 }
425 void Engine::set_config(const std::string& str)
426 {
427   config::set_parse(str);
428 }
429 void Engine::set_config(const std::string& name, int value)
430 {
431   config::set_value(name.c_str(), value);
432 }
433 void Engine::set_config(const std::string& name, double value)
434 {
435   config::set_value(name.c_str(), value);
436 }
437 void Engine::set_config(const std::string& name, bool value)
438 {
439   config::set_value(name.c_str(), value);
440 }
441 void Engine::set_config(const std::string& name, const std::string& value)
442 {
443   config::set_value(name.c_str(), value);
444 }
445
446 } // namespace s4u
447 } // namespace simgrid
448
449 /* **************************** Public C interface *************************** */
450 void simgrid_init(int* argc, char** argv)
451 {
452   simgrid::s4u::Engine e(argc, argv);
453 }
454 void simgrid_load_platform(const char* file)
455 {
456   simgrid::s4u::Engine::get_instance()->load_platform(file);
457 }
458
459 void simgrid_load_deployment(const char* file)
460 {
461   simgrid::s4u::Engine::get_instance()->load_deployment(file);
462 }
463 void simgrid_run()
464 {
465   simgrid::s4u::Engine::get_instance()->run();
466 }
467 void simgrid_register_function(const char* name, void (*code)(int, char**))
468 {
469   simgrid::s4u::Engine::get_instance()->register_function(name, code);
470 }
471 void simgrid_register_default(void (*code)(int, char**))
472 {
473   simgrid::s4u::Engine::get_instance()->register_default(code);
474 }
475 double simgrid_get_clock()
476 {
477   return simgrid::s4u::Engine::get_clock();
478 }
479
480 int simgrid_get_actor_count() // XBT_ATTRIB_DEPRECATED_v330
481 {
482   return simgrid::s4u::Engine::get_instance()->get_actor_count();
483 }