Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
finish snake_case s4u::Engine
[simgrid.git] / src / s4u / s4u_Engine.cpp
1 /* s4u::Engine Simulation Engine and global functions. */
2
3 /* Copyright (c) 2006-2018. 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/Engine.hpp"
12 #include "simgrid/s4u/Host.hpp"
13 #include "simgrid/s4u/Mailbox.hpp"
14 #include "simgrid/s4u/NetZone.hpp"
15 #include "simgrid/s4u/Storage.hpp"
16 #include "simgrid/simix.h"
17 #include "src/instr/instr_private.hpp"
18 #include "src/kernel/EngineImpl.hpp"
19 #include "src/surf/network_interface.hpp"
20 #include "surf/surf.hpp" // routing_platf. FIXME:KILLME. SOON
21
22 XBT_LOG_NEW_CATEGORY(s4u, "Log channels of the S4U (Simgrid for you) interface");
23
24 namespace simgrid {
25 namespace s4u {
26 xbt::signal<void()> on_platform_creation;
27 xbt::signal<void()> on_platform_created;
28 xbt::signal<void()> on_simulation_end;
29 xbt::signal<void(double)> on_time_advance;
30 xbt::signal<void(void)> on_deadlock;
31
32 Engine* Engine::instance_ = nullptr; /* That singleton is awful, but I don't see no other solution right now. */
33
34 Engine::Engine(int* argc, char** argv)
35 {
36   xbt_assert(s4u::Engine::instance_ == nullptr,
37              "It is currently forbidden to create more than one instance of s4u::Engine");
38   TRACE_global_init();
39   SIMIX_global_init(argc, argv);
40
41   pimpl                  = new kernel::EngineImpl();
42   s4u::Engine::instance_ = this;
43 }
44
45 Engine::~Engine()
46 {
47   delete pimpl;
48   s4u::Engine::instance_ = nullptr;
49 }
50
51 /** @brief Retrieve the engine singleton */
52 Engine* Engine::get_instance()
53 {
54   if (s4u::Engine::instance_ == nullptr)
55     return new Engine(0, nullptr);
56   else
57     return s4u::Engine::instance_;
58 }
59
60 void Engine::shutdown()
61 {
62   delete s4u::Engine::instance_;
63   s4u::Engine::instance_ = nullptr;
64 }
65
66 double Engine::get_clock()
67 {
68   return SIMIX_get_clock();
69 }
70
71 void Engine::load_platform(const char* platf)
72 {
73   SIMIX_create_environment(platf);
74 }
75
76 void Engine::register_function(const char* name, int (*code)(int, char**))
77 {
78   SIMIX_function_register(name, code);
79 }
80 void Engine::register_default(int (*code)(int, char**))
81 {
82   SIMIX_function_register_default(code);
83 }
84 void Engine::load_deployment(const char* deploy)
85 {
86   SIMIX_launch_application(deploy);
87 }
88 /** @brief Returns the amount of hosts in the platform */
89 size_t Engine::get_host_count()
90 {
91   return pimpl->hosts_.size();
92 }
93 /** @brief Fills the passed list with all hosts found in the platform
94  *  @deprecated Please prefer Engine::getAllHosts()
95  */
96 void Engine::getHostList(std::vector<Host*>* list)
97 {
98   for (auto const& kv : pimpl->hosts_)
99     list->push_back(kv.second);
100 }
101
102 /** @brief Returns the list of all hosts found in the platform */
103 std::vector<Host*> Engine::get_all_hosts()
104 {
105   std::vector<Host*> res;
106   for (auto const& kv : pimpl->hosts_)
107     res.push_back(kv.second);
108   return res;
109 }
110
111 void Engine::host_register(std::string name, simgrid::s4u::Host* host)
112 {
113   pimpl->hosts_[name] = host;
114 }
115
116 void Engine::host_unregister(std::string name)
117 {
118   pimpl->hosts_.erase(name);
119 }
120
121 simgrid::s4u::Host* Engine::host_by_name(std::string name)
122 {
123   return pimpl->hosts_.at(name); // Will raise a std::out_of_range if the host does not exist
124 }
125
126 simgrid::s4u::Host* Engine::host_by_name_or_null(std::string name)
127 {
128   auto host = pimpl->hosts_.find(name);
129   return host == pimpl->hosts_.end() ? nullptr : host->second;
130 }
131
132 /** @brief Returns the amount of storages in the platform */
133 size_t Engine::get_storage_count()
134 {
135   return pimpl->storages_.size();
136 }
137
138 /** @brief Returns the list of all storages found in the platform */
139 std::vector<Storage*> Engine::get_all_storages()
140 {
141   std::vector<Storage*> res;
142   for (auto const& kv : pimpl->storages_)
143     res.push_back(kv.second);
144   return res;
145 }
146
147 simgrid::s4u::Storage* Engine::storage_by_name(std::string name)
148 {
149   return pimpl->storages_.at(name); // Will raise a std::out_of_range if the host does not exist
150 }
151
152 simgrid::s4u::Storage* Engine::storage_by_name_or_null(std::string name)
153 {
154   auto storage = pimpl->storages_.find(name);
155   return storage == pimpl->storages_.end() ? nullptr : storage->second;
156 }
157
158 void Engine::storage_register(std::string name, simgrid::s4u::Storage* storage)
159 {
160   pimpl->storages_[name] = storage;
161 }
162
163 void Engine::storage_unregister(std::string name)
164 {
165   pimpl->storages_.erase(name);
166 }
167
168 /** @brief Returns the amount of links in the platform */
169 size_t Engine::get_link_count()
170 {
171   return kernel::resource::LinkImpl::linksCount();
172 }
173
174 /** @brief Returns the list of all links found in the platform */
175 std::vector<Link*> Engine::get_all_links()
176 {
177   std::vector<Link*> res;
178   kernel::resource::LinkImpl::linksList(&res);
179   return res;
180 }
181
182 void Engine::run()
183 {
184   if (MC_is_active()) {
185     MC_run();
186   } else {
187     SIMIX_run();
188   }
189 }
190
191 /** @brief Retrieve the root netzone, containing all others */
192 s4u::NetZone* Engine::get_netzone_root()
193 {
194   return pimpl->netzone_root_;
195 }
196
197 static s4u::NetZone* netzone_by_name_recursive(s4u::NetZone* current, const char* name)
198 {
199   if (not strcmp(current->get_cname(), name))
200     return current;
201
202   for (auto const& elem : *(current->getChildren())) {
203     simgrid::s4u::NetZone* tmp = netzone_by_name_recursive(elem, name);
204     if (tmp != nullptr) {
205       return tmp;
206     }
207   }
208   return nullptr;
209 }
210
211 /** @brief Retrieve the NetZone of the given name (or nullptr if not found) */
212 NetZone* Engine::netzone_by_name_or_null(const char* name)
213 {
214   return netzone_by_name_recursive(get_netzone_root(), name);
215 }
216
217 /** @brief Retrieve the netpoint of the given name (or nullptr if not found) */
218 simgrid::kernel::routing::NetPoint* Engine::netpoint_by_name_or_null(std::string name)
219 {
220   auto netp = pimpl->netpoints_.find(name);
221   return netp == pimpl->netpoints_.end() ? nullptr : netp->second;
222 }
223
224 /** @brief Fill the provided vector with all existing netpoints */
225 void Engine::getNetpointList(std::vector<simgrid::kernel::routing::NetPoint*>* list)
226 {
227   for (auto const& kv : pimpl->netpoints_)
228     list->push_back(kv.second);
229 }
230 std::vector<simgrid::kernel::routing::NetPoint*> Engine::get_all_netpoints()
231 {
232   std::vector<simgrid::kernel::routing::NetPoint*> res;
233   for (auto const& kv : pimpl->netpoints_)
234     res.push_back(kv.second);
235   return res;
236 }
237
238 /** @brief Register a new netpoint to the system */
239 void Engine::netpoint_register(simgrid::kernel::routing::NetPoint* point)
240 {
241   // simgrid::simix::kernelImmediate([&]{ FIXME: this segfaults in set_thread
242   pimpl->netpoints_[point->get_name()] = point;
243   // });
244 }
245 /** @brief Unregister a given netpoint */
246 void Engine::netpoint_unregister(simgrid::kernel::routing::NetPoint* point)
247 {
248   simgrid::simix::kernelImmediate([this, point] {
249     pimpl->netpoints_.erase(point->get_name());
250     delete point;
251   });
252 }
253
254 bool Engine::is_initialized()
255 {
256   return Engine::instance_ != nullptr;
257 }
258 void Engine::set_config(std::string str)
259 {
260   simgrid::config::set_parse(std::move(str));
261 }
262 } // namespace s4u
263 } // namespace simgrid
264
265 /* **************************** Public C interface *************************** */
266 void sg_engine_load_platform(const char* file)
267 {
268   simgrid::s4u::Engine::get_instance()->load_platform(file);
269 }
270
271 void sg_engine_load_deployment(const char* file)
272 {
273   simgrid::s4u::Engine::get_instance()->load_deployment(file);
274 }
275
276 void sg_engine_register_function(const char* name, int (*code)(int, char**))
277 {
278   simgrid::s4u::Engine::get_instance()->register_function(name, code);
279 }
280 void sg_engine_register_default(int (*code)(int, char**))
281 {
282   simgrid::s4u::Engine::get_instance()->register_default(code);
283 }
284 double sg_engine_get_clock()
285 {
286   return simgrid::s4u::Engine::get_clock();
287 }