X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..b299a7eeae86643b8ad61ec3273b82d99a392432:/src/s4u/s4u_Netzone.cpp?ds=sidebyside diff --git a/src/s4u/s4u_Netzone.cpp b/src/s4u/s4u_Netzone.cpp index 8ab5462637..086e1ad13d 100644 --- a/src/s4u/s4u_Netzone.cpp +++ b/src/s4u/s4u_Netzone.cpp @@ -1,14 +1,17 @@ -/* 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. */ +#include "simgrid/Exception.hpp" #include "simgrid/kernel/routing/NetPoint.hpp" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include "simgrid/s4u/NetZone.hpp" #include "simgrid/simix.hpp" #include "simgrid/zone.h" +#include "src/surf/network_interface.hpp" +#include "xbt/parse_units.hpp" namespace simgrid { namespace s4u { @@ -40,22 +43,41 @@ void NetZone::set_property(const std::string& key, const std::string& value) std::vector NetZone::get_children() const { std::vector res; - for (auto child : *(pimpl_->get_children())) + for (auto child : pimpl_->get_children()) res.push_back(child->get_iface()); return res; } +NetZone* NetZone::add_child(NetZone* new_zone) // XBT_ATTRIB_DEPRECATED_v332 +{ + new_zone->set_parent(this); + return this; +} + const std::string& NetZone::get_name() const { return pimpl_->get_name(); } + const char* NetZone::get_cname() const { return pimpl_->get_cname(); } -NetZone* NetZone::get_father() + +NetZone* NetZone::get_father() const // XBT_ATTRIB_DEPRECATED_v331 +{ + return pimpl_->get_parent()->get_iface(); +} + +NetZone* NetZone::get_parent() const +{ + return pimpl_->get_parent()->get_iface(); +} + +NetZone* NetZone::set_parent(const NetZone* parent) { - return pimpl_->get_father()->get_iface(); + kernel::actor::simcall([this, parent] { pimpl_->set_parent(parent->get_impl()); }); + return this; } /** @brief Returns the list of the hosts found in this NetZone (not recursively) @@ -78,27 +100,146 @@ int NetZone::add_component(kernel::routing::NetPoint* elm) return pimpl_->add_component(elm); } +// XBT_ATTRIB_DEPRECATED_v332 +std::vector NetZone::convert_to_linkInRoute(const std::vector& link_list) +{ + std::vector links; + for (const auto* link : link_list) { + links.emplace_back(LinkInRoute(link->get_iface())); + } + return links; +} + void NetZone::add_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst, - std::vector& link_list, bool symmetrical) + const std::vector& link_list, bool symmetrical) { pimpl_->add_route(src, dst, gw_src, gw_dst, link_list, symmetrical); } + +// XBT_ATTRIB_DEPRECATED_v332 +void NetZone::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) +{ + pimpl_->add_route(src, dst, gw_src, gw_dst, convert_to_linkInRoute(link_list), symmetrical); +} + +// XBT_ATTRIB_DEPRECATED_v332 void NetZone::add_bypass_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst, - std::vector& link_list, bool symmetrical) + std::vector& link_list, bool /*symmetrical*/) { - pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, link_list, symmetrical); + pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, convert_to_linkInRoute(link_list)); } -void NetZone::extract_xbt_graph(const s_xbt_graph_t* graph, std::map* nodes, - std::map* edges) +void NetZone::add_bypass_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, + kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst, + const std::vector& link_list) +{ + pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, link_list); +} + +void NetZone::extract_xbt_graph(const s_xbt_graph_t* graph, std::map>* nodes, + std::map>* edges) { for (auto const& child : get_children()) child->extract_xbt_graph(graph, nodes, edges); pimpl_->get_graph(graph, nodes, edges); } + +NetZone* NetZone::seal() +{ + kernel::actor::simcall([this] { pimpl_->seal(); }); + return this; +} + +s4u::Host* NetZone::create_host(const std::string& name, double speed) +{ + return create_host(name, std::vector{speed}); +} + +s4u::Host* NetZone::create_host(const std::string& name, const std::vector& speed_per_pstate) +{ + return kernel::actor::simcall( + [this, &name, &speed_per_pstate] { return pimpl_->create_host(name, speed_per_pstate); }); +} + +s4u::Host* NetZone::create_host(const std::string& name, const std::string& speed) +{ + return create_host(name, std::vector{speed}); +} + +s4u::Host* NetZone::create_host(const std::string& name, const std::vector& speed_per_pstate) +{ + return create_host(name, Host::convert_pstate_speed_vector(speed_per_pstate)); +} + +s4u::Link* NetZone::create_link(const std::string& name, double bandwidth) +{ + return create_link(name, std::vector{bandwidth}); +} + +s4u::Link* NetZone::create_link(const std::string& name, const std::vector& bandwidths) +{ + return kernel::actor::simcall([this, &name, &bandwidths] { return pimpl_->create_link(name, bandwidths); }); +} + +s4u::Link* NetZone::create_link(const std::string& name, const std::string& bandwidth) +{ + return create_link(name, std::vector{bandwidth}); +} + +s4u::SplitDuplexLink* NetZone::create_split_duplex_link(const std::string& name, const std::string& bandwidth) +{ + double speed; + try { + speed = xbt_parse_get_bandwidth("", 0, bandwidth, ""); + } catch (const simgrid::ParseError&) { + throw std::invalid_argument(std::string("Impossible to create split-duplex link: ") + name + + std::string(". Invalid bandwidth: ") + bandwidth); + } + return create_split_duplex_link(name, speed); +} + +s4u::SplitDuplexLink* NetZone::create_split_duplex_link(const std::string& name, double bandwidth) +{ + return kernel::actor::simcall( + [this, &name, &bandwidth] { return pimpl_->create_split_duplex_link(name, std::vector{bandwidth}); }); +} + +s4u::Link* NetZone::create_link(const std::string& name, const std::vector& bandwidths) +{ + std::vector bw; + bw.reserve(bandwidths.size()); + for (const auto& speed_str : bandwidths) { + try { + double speed = xbt_parse_get_bandwidth("", 0, speed_str, ""); + bw.push_back(speed); + } catch (const simgrid::ParseError&) { + throw std::invalid_argument(std::string("Impossible to create link: ") + name + + std::string(". Invalid bandwidth: ") + speed_str); + } + } + return create_link(name, bw); +} + +kernel::routing::NetPoint* NetZone::create_router(const std::string& name) +{ + return kernel::actor::simcall([this, &name] { return pimpl_->create_router(name); }); +} + +kernel::routing::NetPoint* NetZone::get_netpoint() +{ + return pimpl_->get_netpoint(); +} + +kernel::resource::NetworkModelIntf* NetZone::get_network_model() const +{ + kernel::resource::NetworkModelIntf* model = pimpl_->get_network_model().get(); + return model; +} } // namespace s4u } // namespace simgrid @@ -122,7 +263,7 @@ sg_netzone_t sg_zone_get_by_name(const char* name) void sg_zone_get_sons(const_sg_netzone_t netzone, xbt_dict_t whereto) { for (auto const& elem : netzone->get_children()) { - xbt_dict_set(whereto, elem->get_cname(), static_cast(elem)); + xbt_dict_set(whereto, elem->get_cname(), elem); } }