X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/21fe278c8460849931b37ccde22e944edec46f71..84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6:/include/simgrid/s4u/Engine.hpp diff --git a/include/simgrid/s4u/Engine.hpp b/include/simgrid/s4u/Engine.hpp index ea53d1c8e4..e353fe6cc4 100644 --- a/include/simgrid/s4u/Engine.hpp +++ b/include/simgrid/s4u/Engine.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -22,21 +22,23 @@ namespace simgrid { namespace s4u { /** @brief Simulation engine * - * This class is an interface to the simulation engine. + * This is a singleton containing all the main functions of the simulation. */ class XBT_PUBLIC Engine { public: /** Constructor, taking the command line parameters of your main function */ explicit Engine(int* argc, char** argv); - /** Currently, only one instance is allowed to exist. This is why you can't copy or move it */ + /* Currently, only one instance is allowed to exist. This is why you can't copy or move it */ +#ifndef DOXYGEN Engine(const Engine&) = delete; Engine(Engine&&) = delete; - ~Engine(); +#endif + /** Finalize the default engine and all its dependencies */ static void shutdown(); - /** @brief Run the simulation */ + /** Run the simulation after initialization */ void run(); /** @brief Retrieve the simulation time (in seconds) */ @@ -44,23 +46,10 @@ public: /** @brief Retrieve the engine singleton */ static s4u::Engine* get_instance(); - /** @brief Load a platform file describing the environment - * - * The environment is either a XML file following the simgrid.dtd formalism, or a lua file. - * Some examples can be found in the directory examples/platforms. - */ void load_platform(const std::string& platf); - /** Registers the main function of an actor that will be launched from the deployment file */ void register_function(const std::string& name, int (*code)(int, char**)); - /** Registers the main function of an actor that will be launched from the deployment file */ void register_function(const std::string& name, void (*code)(std::vector)); - - /** Registers a function as the default main function of actors - * - * It will be used as fallback when the function requested from the deployment file was not registered. - * It is used for trace-based simulations (see examples/s4u/replay-comms and similar). - */ void register_default(int (*code)(int, char**)); template void register_actor(const std::string& name) @@ -80,7 +69,6 @@ public: }); } - /** @brief Load a deployment file and launch the actors that it contains */ void load_deployment(const std::string& deploy); protected: @@ -94,9 +82,9 @@ protected: friend kernel::resource::LinkImpl; void host_register(const std::string& name, Host* host); void host_unregister(const std::string& name); - void link_register(const std::string& name, Link* link); + void link_register(const std::string& name, const Link* link); void link_unregister(const std::string& name); - void storage_register(const std::string& name, Storage* storage); + void storage_register(const std::string& name, const Storage* storage); void storage_unregister(const std::string& name); void netpoint_register(simgrid::kernel::routing::NetPoint* card); void netpoint_unregister(simgrid::kernel::routing::NetPoint* card); @@ -120,16 +108,18 @@ public: std::vector get_all_actors(); std::vector get_filtered_actors(const std::function& filter); +#ifndef DOXYGEN size_t get_storage_count(); std::vector get_all_storages(); Storage* storage_by_name(const std::string& name); Storage* storage_by_name_or_null(const std::string& name); +#endif std::vector get_all_netpoints(); kernel::routing::NetPoint* netpoint_by_name_or_null(const std::string& name); NetZone* get_netzone_root(); - void set_netzone_root(NetZone* netzone); + void set_netzone_root(const NetZone* netzone); NetZone* netzone_by_name_or_null(const std::string& name); @@ -178,7 +168,8 @@ private: }; #ifndef DOXYGEN /* Internal use only, no need to expose it */ -template XBT_PRIVATE void get_filtered_netzones_recursive(s4u::NetZone* current, std::vector* whereto) +template +XBT_PRIVATE void get_filtered_netzones_recursive(const s4u::NetZone* current, std::vector* whereto) { static_assert(std::is_base_of::value, "Filtering netzones is only possible for subclasses of kernel::routing::NetZoneImpl");