X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ed62e57b88a7b804d2dcd3eae08d26671fd0cff2..3554e5655733577059c0c636e5010961d703d3f9:/src/surf/sg_platf.cpp diff --git a/src/surf/sg_platf.cpp b/src/surf/sg_platf.cpp index 809225f15d..68165ebdc5 100644 --- a/src/surf/sg_platf.cpp +++ b/src/surf/sg_platf.cpp @@ -66,16 +66,13 @@ void sg_platf_exit() { /** @brief Add a host to the current AS */ void sg_platf_new_host(const simgrid::kernel::routing::HostCreationArgs* args) { - std::unordered_map props; + simgrid::s4u::Host* host = routing_get_current()->create_host(args->id, args->speed_per_pstate, args->core_amount); + if (args->properties) { - for (auto const& elm : *args->properties) - props.insert({elm.first, elm.second}); + host->set_properties(*args->properties); delete args->properties; } - simgrid::s4u::Host* host = - routing_get_current()->create_host(args->id, args->speed_per_pstate, args->core_amount, &props); - host->pimpl_->set_disks(args->disks, host); /* Change from the defaults */ @@ -83,10 +80,15 @@ void sg_platf_new_host(const simgrid::kernel::routing::HostCreationArgs* args) host->set_state_profile(args->state_trace); if (args->speed_trace) host->set_speed_profile(args->speed_trace); - if (args->pstate != 0) - host->set_pstate(args->pstate); if (not args->coord.empty()) new simgrid::kernel::routing::vivaldi::Coords(host->get_netpoint(), args->coord); + + simgrid::s4u::Host::on_creation(*host); // notify the signal + + /* When energy plugin is activated, changing the pstate requires to already have the HostEnergy extension whose + * allocation is triggered by the on_creation signal. Then set_pstate must be called after the signal emition */ + if (args->pstate != 0) + host->set_pstate(args->pstate); } /** @brief Add a "router" to the network element list */ @@ -110,13 +112,12 @@ simgrid::kernel::routing::NetPoint* sg_platf_new_router(const std::string& name, static void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* args, const std::string& link_name) { - std::unordered_map props; - if (args->properties) - for (auto const& elm : *args->properties) - props.insert({elm.first, elm.second}); + simgrid::s4u::Link* link = routing_get_current()->create_link(link_name, args->bandwidths, args->policy); + if (args->policy != simgrid::s4u::Link::SharingPolicy::WIFI) + link->get_impl()->set_latency(args->latency); - const simgrid::s4u::Link* link = - routing_get_current()->create_link(link_name, args->bandwidths, args->latency, args->policy, &props); + if (args->properties) + link->set_properties(*args->properties); simgrid::kernel::resource::LinkImpl* l = link->get_impl(); if (args->latency_trace) @@ -125,6 +126,8 @@ static void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* l->set_bandwidth_profile(args->bandwidth_trace); if (args->state_trace) l->set_state_profile(args->state_trace); + + link->seal(); } void sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* link) @@ -328,13 +331,16 @@ void sg_platf_new_cabinet(const simgrid::kernel::routing::CabinetCreationArgs* c simgrid::kernel::resource::DiskImpl* sg_platf_new_disk(const simgrid::kernel::routing::DiskCreationArgs* disk) { - simgrid::kernel::resource::DiskImpl* d = surf_disk_model->createDisk(disk->id, disk->read_bw, disk->write_bw); + simgrid::kernel::resource::DiskImpl* pimpl = surf_disk_model->create_disk(disk->id, disk->read_bw, disk->write_bw); + if (disk->properties) { - d->set_properties(*disk->properties); + pimpl->set_properties(*disk->properties); delete disk->properties; } - simgrid::s4u::Disk::on_creation(*d->get_iface()); - return d; + + pimpl->seal(); + simgrid::s4u::Disk::on_creation(*pimpl->get_iface()); + return pimpl; } void sg_platf_new_route(simgrid::kernel::routing::RouteCreationArgs* route) @@ -425,7 +431,7 @@ void sg_platf_new_peer(const simgrid::kernel::routing::PeerCreationArgs* peer) std::vector speed_per_pstate; speed_per_pstate.push_back(peer->speed); - simgrid::s4u::Host* host = as->create_host(peer->id, speed_per_pstate, 1, nullptr); + simgrid::s4u::Host* host = as->create_host(peer->id, speed_per_pstate, 1); as->set_peer_link(host->get_netpoint(), peer->bw_in, peer->bw_out, peer->coord); @@ -434,6 +440,7 @@ void sg_platf_new_peer(const simgrid::kernel::routing::PeerCreationArgs* peer) host->set_state_profile(peer->state_trace); if (peer->speed_trace) host->set_speed_profile(peer->speed_trace); + simgrid::s4u::Host::on_creation(*host); // notify the signal } /* Pick the right models for CPU, net and host, and call their model_init_preparse */ @@ -560,26 +567,26 @@ void sg_platf_new_Zone_set_properties(const std::unordered_mapseal(); simgrid::s4u::NetZone::on_seal(*current_routing->get_iface()); current_routing = current_routing->get_father(); } -/** @brief Add a link connecting a host to the rest of its AS (which must be cluster or vivaldi) */ +/** @brief Add a link connecting a host to the rest of its Zone (which must be cluster or vivaldi) */ void sg_platf_new_hostlink(const simgrid::kernel::routing::HostLinkCreationArgs* hostlink) { const simgrid::kernel::routing::NetPoint* netpoint = simgrid::s4u::Host::by_name(hostlink->id)->get_netpoint(); xbt_assert(netpoint, "Host '%s' not found!", hostlink->id.c_str()); xbt_assert(dynamic_cast(current_routing), - "Only hosts from Cluster and Vivaldi ASes can get a host_link."); + "Only hosts from Cluster and Vivaldi Zones can get a host_link."); const simgrid::s4u::Link* linkUp = simgrid::s4u::Link::by_name_or_null(hostlink->link_up); const simgrid::s4u::Link* linkDown = simgrid::s4u::Link::by_name_or_null(hostlink->link_down);