X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e709643ef0c5b61c6c878016c418bffa2b1b20cd..19e1048a7009c4144b0f361ad85fb9dff44761ea:/include/simgrid/s4u/Engine.hpp diff --git a/include/simgrid/s4u/Engine.hpp b/include/simgrid/s4u/Engine.hpp index 249000775f..074a242bc5 100644 --- a/include/simgrid/s4u/Engine.hpp +++ b/include/simgrid/s4u/Engine.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2021. 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. */ @@ -7,11 +7,10 @@ #define SIMGRID_S4U_ENGINE_HPP #include -#include #include -#include +#include #include #include @@ -25,9 +24,13 @@ namespace s4u { * This is a singleton containing all the main functions of the simulation. */ class XBT_PUBLIC Engine { +#ifndef DOXYGEN friend simgrid::kernel::EngineImpl; +#endif public: + /** Constructor, taking only the name of your main function */ + explicit Engine(std::string name); /** 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 */ @@ -50,44 +53,46 @@ public: void load_platform(const std::string& platf) const; +#ifndef DOXYGEN XBT_ATTRIB_DEPRECATED_v330("Please change the return code of your actors to void") void register_function( const std::string& name, int (*code)(int, char**)); + XBT_ATTRIB_DEPRECATED_v330("Please change the return code of your actors to void") void register_default( + int (*code)(int, char**)); +#endif void register_function(const std::string& name, const std::function& code); void register_function(const std::string& name, const std::function)>& code); + void register_function(const std::string& name, const kernel::actor::ActorCodeFactory& factory); - XBT_ATTRIB_DEPRECATED_v330("Please change the return code of your actors to void") void register_default( - int (*code)(int, char**)); void register_default(const std::function& code); void register_default(const kernel::actor::ActorCodeFactory& factory); - void register_function(const std::string& name, const kernel::actor::ActorCodeFactory& factory); template void register_actor(const std::string& name) { kernel::actor::ActorCodeFactory code_factory = [](std::vector args) { - return kernel::actor::ActorCode([args] { + return kernel::actor::ActorCode([args = std::move(args)]() mutable { F code(std::move(args)); code(); }); }; - register_function(name, std::move(code_factory)); + register_function(name, code_factory); } template void register_actor(const std::string& name, F code) { kernel::actor::ActorCodeFactory code_factory = [code](std::vector args) { - return kernel::actor::ActorCode([code, args] { code(std::move(args)); }); + return kernel::actor::ActorCode([code, args = std::move(args)]() mutable { code(std::move(args)); }); }; - register_function(name, std::move(code_factory)); + register_function(name, code_factory); } void load_deployment(const std::string& deploy) const; protected: #ifndef DOXYGEN + friend surf::HostImpl; friend Host; friend Link; friend Disk; - friend Storage; friend kernel::routing::NetPoint; friend kernel::routing::NetZoneImpl; friend kernel::resource::LinkImpl; @@ -95,8 +100,6 @@ protected: void host_unregister(const std::string& name); void link_register(const std::string& name, const Link* link); void link_unregister(const std::string& name); - 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); #endif /*DOXYGEN*/ @@ -118,27 +121,46 @@ public: std::vector get_all_links() const; std::vector get_filtered_links(const std::function& filter) const; Link* link_by_name(const std::string& name) const; + /** + * @brief Find a split-duplex link from its name. + * @throw std::invalid_argument if the searched link does not exist. + */ + SplitDuplexLink* split_duplex_link_by_name(const std::string& name) const; Link* link_by_name_or_null(const std::string& name) const; + Mailbox* mailbox_by_name_or_create(const std::string& name) const; + size_t get_actor_count() const; std::vector get_all_actors() const; std::vector get_filtered_actors(const std::function& filter) const; -#ifndef DOXYGEN - size_t get_storage_count() const; - std::vector get_all_storages() const; - Storage* storage_by_name(const std::string& name) const; - Storage* storage_by_name_or_null(const std::string& name) const; -#endif - std::vector get_all_netpoints() const; kernel::routing::NetPoint* netpoint_by_name_or_null(const std::string& name) const; + /** + * @brief Get netpoint by its name + * + * @param name Netpoint name + * @throw std::invalid_argument if netpoint doesn't exist + */ + kernel::routing::NetPoint* netpoint_by_name(const std::string& name) const; NetZone* get_netzone_root() const; void set_netzone_root(const NetZone* netzone); NetZone* netzone_by_name_or_null(const std::string& name) const; + /** + * @brief Add a model to engine list + * + * @param model Pointer to model + * @param dependencies List of dependencies for this model (optional) + */ + void add_model(std::shared_ptr model, + const std::vector& dependencies = {}); + + /** @brief Get list of all models managed by this engine */ + const std::vector& get_all_models() const; + /** @brief Retrieves all netzones of the type indicated by the template argument */ template std::vector get_filtered_netzones() const { @@ -188,6 +210,7 @@ public: private: kernel::EngineImpl* const pimpl; static Engine* instance_; + void initialize(int* argc, char** argv); }; #ifndef DOXYGEN /* Internal use only, no need to expose it */ @@ -198,7 +221,7 @@ XBT_PRIVATE void get_filtered_netzones_recursive(const s4u::NetZone* current, st "Filtering netzones is only possible for subclasses of kernel::routing::NetZoneImpl"); for (auto const& elem : current->get_children()) { get_filtered_netzones_recursive(elem, whereto); - T* elem_impl = dynamic_cast(elem->get_impl()); + auto* elem_impl = dynamic_cast(elem->get_impl()); if (elem_impl != nullptr) whereto->push_back(elem_impl); }