Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetic cleanups in S4U
[simgrid.git] / include / simgrid / s4u / Engine.hpp
1 /* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_S4U_ENGINE_HPP
7 #define SIMGRID_S4U_ENGINE_HPP
8
9 #include <string>
10 #include <utility>
11 #include <vector>
12
13 #include <xbt/base.h>
14 #include <xbt/functional.hpp>
15
16 #include <simgrid/forward.h>
17 #include <simgrid/simix.hpp>
18
19 #include <simgrid/s4u/NetZone.hpp>
20
21 namespace simgrid {
22 namespace s4u {
23 /** @brief Simulation engine
24  *
25  * This class is an interface to the simulation engine.
26  */
27 class XBT_PUBLIC Engine {
28 public:
29   /** Constructor, taking the command line parameters of your main function */
30   explicit Engine(int* argc, char** argv);
31   /** Currently, only one instance is allowed to exist. This is why you can't copy or move it */
32   Engine(const Engine&) = delete;
33   Engine(Engine&&)      = delete;
34
35   ~Engine();
36   /** Finalize the default engine and all its dependencies */
37   static void shutdown();
38
39   /** @brief Run the simulation */
40   void run();
41
42   /** @brief Retrieve the simulation time (in seconds) */
43   static double get_clock();
44   /** @brief Retrieve the engine singleton */
45   static s4u::Engine* get_instance();
46
47   /** @brief Load a platform file describing the environment
48    *
49    * The environment is either a XML file following the simgrid.dtd formalism, or a lua file.
50    * Some examples can be found in the directory examples/platforms.
51    */
52   void load_platform(const std::string& platf);
53
54   /** Registers the main function of an actor that will be launched from the deployment file */
55   void register_function(const std::string& name, int (*code)(int, char**));
56   /** Registers the main function of an actor that will be launched from the deployment file */
57   void register_function(const std::string& name, void (*code)(std::vector<std::string>));
58
59   /** Registers a function as the default main function of actors
60    *
61    * It will be used as fallback when the function requested from the deployment file was not registered.
62    * It is used for trace-based simulations (see examples/s4u/replay-comms and similar).
63    */
64   void register_default(int (*code)(int, char**));
65
66   template <class F> void register_actor(const std::string& name)
67   {
68     simix::register_function(name, [](std::vector<std::string> args) {
69       return simix::ActorCode([args] {
70         F code(std::move(args));
71         code();
72       });
73     });
74   }
75
76   template <class F> void register_actor(const std::string& name, F code)
77   {
78     simix::register_function(name, [code](std::vector<std::string> args) {
79       return simix::ActorCode([code, args] { code(std::move(args)); });
80     });
81   }
82
83   /** @brief Load a deployment file and launch the actors that it contains */
84   void load_deployment(const std::string& deploy);
85
86 protected:
87 #ifndef DOXYGEN
88   friend Host;
89   friend Link;
90   friend Storage;
91   friend kernel::routing::NetPoint;
92   friend kernel::routing::NetZoneImpl;
93   friend kernel::resource::LinkImpl;
94   void host_register(const std::string& name, Host* host);
95   void host_unregister(const std::string& name);
96   void link_register(const std::string& name, Link* link);
97   void link_unregister(const std::string& name);
98   void storage_register(const std::string& name, Storage* storage);
99   void storage_unregister(const std::string& name);
100   void netpoint_register(simgrid::kernel::routing::NetPoint* card);
101   void netpoint_unregister(simgrid::kernel::routing::NetPoint* card);
102 #endif /*DOXYGEN*/
103
104 public:
105   size_t get_host_count();
106   /** @brief Returns the list of all hosts found in the platform */
107   std::vector<Host*> get_all_hosts();
108   std::vector<Host*> get_filtered_hosts(const std::function<bool(Host*)>& filter);
109   Host* host_by_name(const std::string& name);
110   Host* host_by_name_or_null(const std::string& name);
111
112   size_t get_link_count();
113   std::vector<Link*> get_all_links();
114   std::vector<Link*> get_filtered_links(const std::function<bool(Link*)>& filter);
115   Link* link_by_name(const std::string& name);
116   Link* link_by_name_or_null(const std::string& name);
117
118   size_t get_actor_count();
119   std::vector<ActorPtr> get_all_actors();
120   std::vector<ActorPtr> get_filtered_actors(const std::function<bool(ActorPtr)>& filter);
121
122   size_t get_storage_count();
123   std::vector<Storage*> get_all_storages();
124   Storage* storage_by_name(const std::string& name);
125   Storage* storage_by_name_or_null(const std::string& name);
126
127   std::vector<kernel::routing::NetPoint*> get_all_netpoints();
128   kernel::routing::NetPoint* netpoint_by_name_or_null(const std::string& name);
129
130   NetZone* get_netzone_root();
131   void set_netzone_root(NetZone* netzone);
132
133   NetZone* netzone_by_name_or_null(const std::string& name);
134
135   /** @brief Retrieves all netzones of the type indicated by the template argument */
136   template <class T> std::vector<T*> get_filtered_netzones()
137   {
138     static_assert(std::is_base_of<kernel::routing::NetZoneImpl, T>::value,
139                   "Filtering netzones is only possible for subclasses of kernel::routing::NetZoneImpl");
140     std::vector<T*> res;
141     get_filtered_netzones_recursive(get_netzone_root(), &res);
142     return res;
143   }
144
145   /** Returns whether SimGrid was initialized yet -- mostly for internal use */
146   static bool is_initialized();
147   /** @brief set a configuration variable
148    *
149    * Do --help on any simgrid binary to see the list of currently existing configuration variables (see also @ref
150    * options).
151    *
152    * Example:
153    * e->set_config("host/model:ptask_L07");
154    */
155   void set_config(const std::string& str);
156
157 private:
158   kernel::EngineImpl* const pimpl;
159   static Engine* instance_;
160
161   //////////////// Deprecated functions
162 #ifndef DOXYGEN
163 public:
164   /** @deprecated See Engine::load_platform() */
165   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::load_platform()") void loadPlatform(const std::string& platf)
166   {
167     load_platform(platf);
168   }
169   /** @deprecated See Engine::register_function() */
170   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::register_function()") void registerFunction(const std::string& name,
171                                                                                              int (*code)(int, char**))
172   {
173     register_function(name, code);
174   }
175   /** @deprecated See Engine::register_default() */
176   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::register_default()") void registerDefault(int (*code)(int, char**))
177   {
178     register_default(code);
179   }
180   /** @deprecated See Engine::register_actor() */
181   template <class F>
182   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::register_actor()") void registerFunction(const std::string& name)
183   {
184     register_actor<F>(name);
185   }
186   /** @deprecated See Engine::register_actor() */
187   template <class F>
188   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::register_actor()") void registerFunction(const std::string& name,
189                                                                                           F code)
190   {
191     register_actor<F>(name, code);
192   }
193
194   /** @deprecated See Engine::load_deployment() */
195   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::load_deployment()") void loadDeployment(const std::string& deploy)
196   {
197     load_deployment(deploy);
198   }
199   /** @deprecated See Engine::host_by_name() */
200   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::host_by_name()") simgrid::s4u::Host* hostByName(
201       const std::string& name)
202   {
203     return host_by_name(name);
204   }
205   /** @deprecated See Engine::host_by_name_or_null() */
206   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::host_by_name_or_null()") simgrid::s4u::Host* hostByNameOrNull(
207       const std::string& name)
208   {
209     return host_by_name_or_null(name);
210   }
211   /** @deprecated See Engine::storage_by_name() */
212   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::storage_by_name()") simgrid::s4u::Storage* storageByName(
213       const std::string& name)
214   {
215     return storage_by_name(name);
216   }
217   /** @deprecated See Engine::storage_by_name_or_null() */
218   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::storage_by_name_or_null()") simgrid::s4u::Storage* storageByNameOrNull(
219       const std::string& name)
220   {
221     return storage_by_name_or_null(name);
222   }
223
224   /** @deprecated See Engine::get_host_count() */
225   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_host_count()") size_t getHostCount() { return get_host_count(); }
226   /** @deprecated See Engine::get_all_hosts() */
227   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_all_hosts()") std::vector<Host*> getAllHosts()
228   {
229     return get_all_hosts();
230   }
231   /** @deprecated See Engine::get_link_count() */
232   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_link_count()") size_t getLinkCount() { return get_link_count(); }
233   /** @deprecated See Engine::get_link_list() */
234   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_link_list()") std::vector<Link*> getAllLinks()
235   {
236     return get_all_links();
237   }
238   /** @deprecated See Engine::get_all_storages() */
239   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_all_storages()") std::vector<Storage*> getAllStorages()
240   {
241     return get_all_storages();
242   }
243   /** @deprecated See Engine::get_clock() */
244   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_clock()") static double getClock() { return get_clock(); }
245   /** @deprecated See Engine::get_all_netpoints() */
246   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_all_netpoints()") void getNetpointList(
247       std::vector<simgrid::kernel::routing::NetPoint*>* list);
248   /** @deprecated See Engine::netpoint_by_name_or_null() */
249   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::netpoint_by_name_or_null()")
250       simgrid::kernel::routing::NetPoint* getNetpointByNameOrNull(const std::string& name)
251   {
252     return netpoint_by_name_or_null(name);
253   }
254   /** @deprecated See Engine::get_netzone_root() */
255   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_netzone_root()") simgrid::s4u::NetZone* getNetRoot()
256   {
257     return get_netzone_root();
258   }
259   /** @deprecated See Engine::netzone_by_name_or_null() */
260   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::netzone_by_name_or_null()")
261       simgrid::s4u::NetZone* getNetzoneByNameOrNull(const std::string& name)
262   {
263     return netzone_by_name_or_null(name);
264   }
265   /** @deprecated See Engine::filter_netzones_by_type() */
266   template <class T>
267   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::filter_netzones_by_type()") void getNetzoneByType(
268       std::vector<T*>* whereto)
269   {
270     get_filtered_netzones_recursive(get_netzone_root(), whereto);
271   }
272
273   /** @deprecated See Engine::get_instance() */
274   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::get_instance()") static s4u::Engine* getInstance()
275   {
276     return get_instance();
277   }
278   /** @deprecated See Engine::is_initialized() */
279   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::is_initialized()") static bool isInitialized()
280   {
281     return is_initialized();
282   }
283   /** @deprecated See Engine::set_config() */
284   XBT_ATTRIB_DEPRECATED_v323("Please use Engine::set_config()") void setConfig(const std::string& str)
285   {
286     set_config(str);
287   }
288 #endif
289 };
290
291 /** Callback fired when the platform is created (ie, the xml file parsed),
292  * right before the actual simulation starts. */
293 extern XBT_PUBLIC xbt::signal<void()> on_platform_created;
294
295 /** Callback fired when the platform is about to be created
296  * (ie, after any configuration change and just before the resource creation) */
297 extern XBT_PUBLIC xbt::signal<void()> on_platform_creation;
298
299 /** Callback fired when the main simulation loop ends, just before the end of Engine::run() */
300 extern XBT_PUBLIC xbt::signal<void()> on_simulation_end;
301
302 /** Callback fired when the time jumps into the future */
303 extern XBT_PUBLIC xbt::signal<void(double)> on_time_advance;
304
305 /** Callback fired when the time cannot advance because of inter-actors deadlock */
306 extern XBT_PUBLIC xbt::signal<void(void)> on_deadlock;
307
308 #ifndef DOXYGEN /* Internal use only, no need to expose it */
309 template <class T> XBT_PRIVATE void get_filtered_netzones_recursive(s4u::NetZone* current, std::vector<T*>* whereto)
310 {
311   static_assert(std::is_base_of<kernel::routing::NetZoneImpl, T>::value,
312                 "Filtering netzones is only possible for subclasses of kernel::routing::NetZoneImpl");
313   for (auto const& elem : current->get_children()) {
314     get_filtered_netzones_recursive(elem, whereto);
315     T* elem_impl = dynamic_cast<T*>(elem->get_impl());
316     if (elem_impl != nullptr)
317       whereto->push_back(elem_impl);
318   }
319 }
320 #endif
321 } // namespace s4u
322 } // namespace simgrid
323
324 #endif /* SIMGRID_S4U_ENGINE_HPP */