X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a022e693bd8313e3c727fd56ceefb5d8e982d8e1..691ad8fcfd10c7c03c272897ff3f309abadf3043:/src/s4u/s4u_Link.cpp diff --git a/src/s4u/s4u_Link.cpp b/src/s4u/s4u_Link.cpp index 6d71cf2208..970786be86 100644 --- a/src/s4u/s4u_Link.cpp +++ b/src/s4u/s4u_Link.cpp @@ -97,11 +97,15 @@ double Link::get_usage() const void Link::turn_on() { - simgrid::kernel::actor::simcall([this]() { this->pimpl_->turn_on(); }); + kernel::actor::simcall([this]() { this->pimpl_->turn_on(); }); } void Link::turn_off() { - simgrid::kernel::actor::simcall([this]() { this->pimpl_->turn_off(); }); + kernel::actor::simcall([this]() { this->pimpl_->turn_off(); }); +} +void Link::seal() +{ + kernel::actor::simcall([this]() { this->pimpl_->seal(); }); } bool Link::is_on() const @@ -111,25 +115,38 @@ bool Link::is_on() const void Link::set_state_profile(kernel::profile::Profile* profile) { - simgrid::kernel::actor::simcall([this, profile]() { this->pimpl_->set_state_profile(profile); }); + kernel::actor::simcall([this, profile]() { this->pimpl_->set_state_profile(profile); }); } void Link::set_bandwidth_profile(kernel::profile::Profile* profile) { - simgrid::kernel::actor::simcall([this, profile]() { this->pimpl_->set_bandwidth_profile(profile); }); + kernel::actor::simcall([this, profile]() { this->pimpl_->set_bandwidth_profile(profile); }); } void Link::set_latency_profile(kernel::profile::Profile* trace) { - simgrid::kernel::actor::simcall([this, trace]() { this->pimpl_->set_latency_profile(trace); }); + kernel::actor::simcall([this, trace]() { this->pimpl_->set_latency_profile(trace); }); } const char* Link::get_property(const std::string& key) const { return this->pimpl_->get_property(key); } -void Link::set_property(const std::string& key, const std::string& value) +Link* Link::set_property(const std::string& key, const std::string& value) +{ + kernel::actor::simcall([this, &key, &value] { this->pimpl_->set_property(key, value); }); + return this; +} + +const std::unordered_map* Link::get_properties() const { - simgrid::kernel::actor::simcall([this, &key, &value] { this->pimpl_->set_property(key, value); }); + return this->pimpl_->get_properties(); } + +Link* Link::set_properties(const std::unordered_map& properties) +{ + kernel::actor::simcall([this, &properties] { this->pimpl_->set_properties(properties); }); + return this; +} + } // namespace s4u } // namespace simgrid