X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1f53e33771f1e35a28358934a12e3a057fe56a4c..0c586d7f087b772253980cafd92796edcbd58c50:/include/simgrid/s4u/Engine.hpp?ds=sidebyside diff --git a/include/simgrid/s4u/Engine.hpp b/include/simgrid/s4u/Engine.hpp index 0703c0c201..43be0eba37 100644 --- a/include/simgrid/s4u/Engine.hpp +++ b/include/simgrid/s4u/Engine.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2022. 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. */ @@ -58,6 +58,7 @@ public: static bool has_instance() { return instance_ != nullptr; } void load_platform(const std::string& platf) const; + void seal_platform() const; void register_function(const std::string& name, const std::function& code); void register_function(const std::string& name, const std::function)>& code); @@ -85,7 +86,7 @@ public: } /** If non-null, the provided set will be filled with all activities that fail to start because of a veto */ - void track_vetoed_activities(std::set* vetoed_activities); + void track_vetoed_activities(std::set* vetoed_activities) const; void load_deployment(const std::string& deploy) const; @@ -97,7 +98,7 @@ protected: friend kernel::routing::NetPoint; friend kernel::routing::NetZoneImpl; friend kernel::resource::HostImpl; - friend kernel::resource::LinkImpl; + friend kernel::resource::StandardLinkImpl; void host_register(const std::string& name, Host* host); void host_unregister(const std::string& name); void link_register(const std::string& name, const Link* link); @@ -194,30 +195,41 @@ public: static void set_config(const std::string& name, const std::string& value); Engine* set_default_comm_data_copy_callback(void (*callback)(kernel::activity::CommImpl*, void*, size_t)); - /** Callback fired when the platform is created (ie, the xml file parsed), - * right before the actual simulation starts. */ - static xbt::signal on_platform_created; - /** Callback fired when the platform is about to be created + /** Add a callback fired when the platform is created (ie, the xml file parsed), + * right before the actual simulation starts. */ + static void on_platform_created_cb(const std::function& cb) { on_platform_created.connect(cb); } + /** Add a callback fired when the platform is about to be created * (ie, after any configuration change and just before the resource creation) */ - static xbt::signal on_platform_creation; + static void on_platform_creation_cb(const std::function& cb) { on_platform_creation.connect(cb); } + /** Add a callback fired when the main simulation loop ends, just before the end of Engine::run() */ + static void on_simulation_end_cb(const std::function& cb) { on_simulation_end.connect(cb); } - /** Callback fired when the main simulation loop ends, just before the end of Engine::run() */ - static xbt::signal on_simulation_end; + /** Add a callback fired when the time jumps into the future */ + static void on_time_advance_cb(const std::function& cb) { on_time_advance.connect(cb); } - /** Callback fired when the time jumps into the future */ - static xbt::signal on_time_advance; + /** Add a callback fired when the time cannot advance because of inter-actors deadlock. Note that the on_exit of each + * actor is also executed on deadlock. */ + static void on_deadlock_cb(const std::function& cb) { on_deadlock.connect(cb); } - /** Callback fired when the time cannot advance because of inter-actors deadlock. Note that the on_exit of each actor - * is also executed on deadlock. */ - static xbt::signal on_deadlock; +#ifndef DOXYGEN + /* FIXME signals should be private */ + static xbt::signal on_platform_created; + static xbt::signal on_platform_creation; +#endif private: + static xbt::signal on_simulation_end; + static xbt::signal on_time_advance; + static xbt::signal on_deadlock; kernel::EngineImpl* const pimpl; static Engine* instance_; void initialize(int* argc, char** argv); }; +std::vector create_DAG_from_dot(const std::string& filename); +std::vector create_DAG_from_DAX(const std::string& filename); + #ifndef DOXYGEN /* Internal use only, no need to expose it */ template XBT_PRIVATE void get_filtered_netzones_recursive(const s4u::NetZone* current, std::vector* whereto)