X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6c1fdfa949304917158331410c2e91b0ca1b2e90..0facf52013684615c801816de974754778c9474a:/src/surf/network_ns3.cpp diff --git a/src/surf/network_ns3.cpp b/src/surf/network_ns3.cpp index 4a9c40e76e..6e4a467270 100644 --- a/src/surf/network_ns3.cpp +++ b/src/surf/network_ns3.cpp @@ -105,8 +105,8 @@ static void zoneCreation_cb(simgrid::s4u::NetZone const& zone) int mcs_value = mcs ? atoi(mcs) : 3; int nss_value = nss ? atoi(nss) : 1; #if NS3_MINOR_VERSION < 30 - if (nss_value != 1 + (mcs_value / 8)) - xbt_die("On NS3 < 3.30, NSS value has to satisfy NSS == 1+(MCS/8) constraint. Bailing out"); + xbt_assert(nss_value == 1 + (mcs_value / 8), + "On NS3 < 3.30, NSS value has to satisfy NSS == 1+(MCS/8) constraint. Bailing out"); #endif wifi.SetRemoteStationManager("ns3::ConstantRateWifiManager", "ControlMode", ns3::StringValue("HtMcs0"), "DataMode", ns3::StringValue("HtMcs" + std::to_string(mcs_value))); @@ -289,7 +289,7 @@ namespace simgrid { namespace kernel { namespace resource { -NetworkNS3Model::NetworkNS3Model(std::string name) : NetworkModel(name) +NetworkNS3Model::NetworkNS3Model(const std::string& name) : NetworkModel(name) { xbt_assert(not sg_link_energy_is_inited(), "LinkEnergy plugin and ns-3 network models are not compatible. Are you looking for Ecofen, maybe?"); @@ -327,13 +327,15 @@ NetworkNS3Model::NetworkNS3Model(std::string name) : NetworkModel(name) s4u::NetZone::on_seal.connect(&zoneCreation_cb); } -LinkImpl* NetworkNS3Model::create_link(const std::string& name, const std::vector& bandwidths, - s4u::Link::SharingPolicy policy) +LinkImpl* NetworkNS3Model::create_link(const std::string& name, const std::vector& bandwidths) { xbt_assert(bandwidths.size() == 1, "ns-3 links must use only 1 bandwidth."); - auto link = new LinkNS3(name, bandwidths[0], policy); - link->set_model(this); - return link; + return (new LinkNS3(name, bandwidths[0]))->set_model(this); +} + +LinkImpl* NetworkNS3Model::create_wifi_link(const std::string& name, const std::vector& bandwidths) +{ + return create_link(name, bandwidths)->set_sharing_policy(s4u::Link::SharingPolicy::WIFI); } Action* NetworkNS3Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate) @@ -434,8 +436,7 @@ void NetworkNS3Model::update_actions_state(double now, double delta) * Resource * ************/ -LinkNS3::LinkNS3(const std::string& name, double bandwidth, s4u::Link::SharingPolicy policy) - : LinkImpl(name), sharing_policy_(policy) +LinkNS3::LinkNS3(const std::string& name, double bandwidth) : LinkImpl(name) { bandwidth_.peak = bandwidth; } @@ -446,13 +447,17 @@ void LinkNS3::apply_event(profile::Event*, double) { THROW_UNIMPLEMENTED; } -void LinkNS3::set_bandwidth_profile(profile::Profile*) + +LinkImpl* LinkNS3::set_bandwidth_profile(profile::Profile* profile) { - xbt_die("The ns-3 network model doesn't support bandwidth profiles"); + xbt_assert(profile == nullptr, "The ns-3 network model doesn't support bandwidth profiles"); + return this; } -void LinkNS3::set_latency_profile(profile::Profile*) + +LinkImpl* LinkNS3::set_latency_profile(profile::Profile* profile) { - xbt_die("The ns-3 network model doesn't support latency profiles"); + xbt_assert(profile == nullptr, "The ns-3 network model doesn't support latency profiles"); + return this; } LinkImpl* LinkNS3::set_latency(double latency) @@ -460,6 +465,12 @@ LinkImpl* LinkNS3::set_latency(double latency) latency_.peak = latency; return this; } + +LinkImpl* LinkNS3::set_sharing_policy(s4u::Link::SharingPolicy policy) +{ + sharing_policy_ = policy; + return this; +} /********** * Action * **********/ @@ -570,33 +581,32 @@ void ns3_add_direct_route(simgrid::kernel::routing::NetPoint* src, simgrid::kern xbt_assert(host_src != nullptr, "Network element %s does not seem to be ns-3-ready", src->get_cname()); xbt_assert(host_dst != nullptr, "Network element %s does not seem to be ns-3-ready", dst->get_cname()); - if (policy == simgrid::s4u::Link::SharingPolicy::WIFI) { - xbt_die("The wifi sharing policy is not supported for links. You want to use a wifi zone (see documentation)."); - } else { - ns3::PointToPointHelper pointToPoint; + xbt_assert(policy != simgrid::s4u::Link::SharingPolicy::WIFI, + "The wifi sharing policy is not supported for links. You want to use a wifi zone (see documentation)."); - XBT_DEBUG("\tAdd PTP from %s to %s bw:'%f Bps' lat:'%fs'", src->get_cname(), dst->get_cname(), bw, lat); - pointToPoint.SetDeviceAttribute("DataRate", - ns3::DataRateValue(ns3::DataRate(bw * 8))); // ns-3 takes bps, but we provide Bps - pointToPoint.SetChannelAttribute("Delay", ns3::TimeValue(ns3::Seconds(lat))); + ns3::PointToPointHelper pointToPoint; - netA.Add(pointToPoint.Install(host_src->ns3_node_, host_dst->ns3_node_)); + XBT_DEBUG("\tAdd PTP from %s to %s bw:'%f Bps' lat:'%fs'", src->get_cname(), dst->get_cname(), bw, lat); + pointToPoint.SetDeviceAttribute("DataRate", + ns3::DataRateValue(ns3::DataRate(bw * 8))); // ns-3 takes bps, but we provide Bps + pointToPoint.SetChannelAttribute("Delay", ns3::TimeValue(ns3::Seconds(lat))); - std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links); - address.SetBase(addr.c_str(), "255.255.0.0"); - XBT_DEBUG("\tInterface stack '%s'", addr.c_str()); + netA.Add(pointToPoint.Install(host_src->ns3_node_, host_dst->ns3_node_)); - auto addresses = address.Assign(netA); + std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links); + address.SetBase(addr.c_str(), "255.255.0.0"); + XBT_DEBUG("\tInterface stack '%s'", addr.c_str()); - host_src->ipv4_address_ = transformIpv4Address(addresses.GetAddress(0)); - host_dst->ipv4_address_ = transformIpv4Address(addresses.GetAddress(1)); + auto addresses = address.Assign(netA); - if (number_of_links == 255) { - xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255"); - number_of_links = 1; - number_of_networks++; - } else { - number_of_links++; - } + host_src->ipv4_address_ = transformIpv4Address(addresses.GetAddress(0)); + host_dst->ipv4_address_ = transformIpv4Address(addresses.GetAddress(1)); + + if (number_of_links == 255) { + xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255"); + number_of_links = 1; + number_of_networks++; + } else { + number_of_links++; } }