X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bd1a1fd6782d66e6455d71f5055b0660d4854164..3f9b311ec56db95ec539001a860ae3c838c48312:/include/simgrid/s4u/NetZone.hpp diff --git a/include/simgrid/s4u/NetZone.hpp b/include/simgrid/s4u/NetZone.hpp index 00430d2811..ab535fa289 100644 --- a/include/simgrid/s4u/NetZone.hpp +++ b/include/simgrid/s4u/NetZone.hpp @@ -6,6 +6,7 @@ #ifndef SIMGRID_S4U_NETZONE_HPP #define SIMGRID_S4U_NETZONE_HPP +#include "simgrid/s4u/Host.hpp" #include #include #include @@ -61,6 +62,7 @@ public: /** @brief Get the gateway associated to this netzone */ kernel::routing::NetPoint* get_gateway() const; kernel::routing::NetPoint* get_gateway(const std::string& name) const; + void set_gateway(const s4u::Host* router) { set_gateway(router->get_netpoint()); } void set_gateway(kernel::routing::NetPoint* router); void set_gateway(const std::string& name, kernel::routing::NetPoint* router); @@ -70,14 +72,13 @@ public: /* Add content to the netzone, at parsing time. It should be sealed afterward. */ unsigned long add_component(kernel::routing::NetPoint* elm); /* A host, a router or a netzone, whatever */ - -/** + /** * @brief Add a route between 2 netzones, and same in other direction * @param src Source netzone * @param dst Destination netzone - * @param link_list List of links + * @param links List of links */ - void add_route(NetZone* src, NetZone* dst, const std::vector& links); + void add_route(const NetZone* src, const NetZone* dst, const std::vector& links); /** * @brief Add a route between 2 netzones, and same in other direction @@ -86,8 +87,9 @@ public: * @param link_list List of links and their direction used in this communication * @param symmetrical Bi-directional communication */ - void add_route(NetZone* src, NetZone* dst, const std::vector& link_list, bool symmetrical = true); + void add_route(const NetZone* src, const NetZone* dst, const std::vector& link_list, bool symmetrical = true); +#ifndef DOXYGEN /** * @brief Add a route between 2 netpoints * @@ -102,6 +104,8 @@ public: * @param link_list List of links and their direction used in this communication * @param symmetrical Bi-directional communication */ + //(we should first remove the Python binding in v3.35) XBT_ATTRIB_DEPRECATED_v339("Please call add_route either from + // Host to Host or NetZone to NetZone") void add_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst, const std::vector& link_list, bool symmetrical = true); /** @@ -117,8 +121,10 @@ public: * @param gw_dst Netpoint of the gateway in the destination netzone * @param link_list List of links */ - void add_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src, - kernel::routing::NetPoint* gw_dst, const std::vector& links); + XBT_ATTRIB_DEPRECATED_v339("Please call add_route either from Host to Host or NetZone to NetZone") void add_route( + kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src, + kernel::routing::NetPoint* gw_dst, const std::vector& links); +#endif /** * @brief Add a route between 2 hosts @@ -134,7 +140,7 @@ public: * * @param src Source host * @param dst Destination host - * @param link_list List of links. The UP direction will be used on src->dst and DOWN direction on dst->src + * @param links List of links. The UP direction will be used on src->dst and DOWN direction on dst->src */ void add_route(const Host* src, const Host* dst, const std::vector& links); @@ -246,8 +252,29 @@ struct ClusterCallbacks { * @param id: Internal identifier of the element * @return pair: returns a pair of netpoint and gateway. */ + // XBT_ATTRIB_DEPRECATED_v339 using ClusterNetPointCb = std::pair( NetZone* zone, const std::vector& coord, unsigned long id); + + /** + * @brief Callback used to set the NetZone located at some leaf of clusters (Torus, FatTree, etc) + * + * @param zone: The parent zone, needed for creating new resources (hosts, links) + * @param coord: the coordinates of the element + * @param id: Internal identifier of the element + * @return NetZone*: returns newly created netzone + */ + using ClusterNetZoneCb = NetZone*(NetZone* zone, const std::vector& coord, unsigned long id); + /** + * @brief Callback used to set the Host located at some leaf of clusters (Torus, FatTree, etc) + * + * @param zone: The parent zone, needed for creating new resources (hosts, links) + * @param coord: the coordinates of the element + * @param id: Internal identifier of the element + * @return Host*: returns newly created host + */ + using ClusterHostCb = Host*(NetZone* zone, const std::vector& coord, unsigned long id); + /** * @brief Callback used to set the links for some leaf of the cluster (Torus, FatTree, etc) * @@ -265,14 +292,36 @@ struct ClusterCallbacks { */ using ClusterLinkCb = Link*(NetZone* zone, const std::vector& coord, unsigned long id); - std::function netpoint; + bool by_netzone_ = false; + bool is_by_netzone() const { return by_netzone_; } + bool by_netpoint_ = false; // XBT_ATTRIB_DEPRECATED_v339 + bool is_by_netpoint() const { return by_netpoint_; } // XBT_ATTRIB_DEPRECATED_v339 + std::function netpoint; // XBT_ATTRIB_DEPRECATED_v339 + std::function host; + std::function netzone; std::function loopback = {}; std::function limiter = {}; + explicit ClusterCallbacks(const std::function& set_netzone) + : by_netzone_(true), netzone(set_netzone){/* nothing to do */}; + + ClusterCallbacks(const std::function& set_netzone, + const std::function& set_loopback, const std::function& set_limiter) + : by_netzone_(true), netzone(set_netzone), loopback(set_loopback), limiter(set_limiter){/* nothing to do */}; + + explicit ClusterCallbacks(const std::function& set_host) + : host(set_host) {/* nothing to do */}; + + ClusterCallbacks(const std::function& set_host, + const std::function& set_loopback, const std::function& set_limiter) + : host(set_host), loopback(set_loopback), limiter(set_limiter){/* nothing to do */}; + + XBT_ATTRIB_DEPRECATED_v339("Please use callback with either a Host/NetZone creation function as first parameter") explicit ClusterCallbacks(const std::function& set_netpoint) - : netpoint(set_netpoint){/*nothing to do */}; + : by_netpoint_(true), netpoint(set_netpoint){/* nothing to do */}; + XBT_ATTRIB_DEPRECATED_v339("Please use callback with either a Host/NetZone creation function as first parameter") ClusterCallbacks(const std::function& set_netpoint, const std::function& set_loopback, const std::function& set_limiter) - : netpoint(set_netpoint), loopback(set_loopback), limiter(set_limiter){/*nothing to do */}; + : by_netpoint_(true), netpoint(set_netpoint), loopback(set_loopback), limiter(set_limiter){/* nothing to do */}; }; /** * @brief Create a torus zone