X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..434e141487bc5640f854a74f58f03eae36458ce0:/src/kernel/routing/NetPoint.cpp diff --git a/src/kernel/routing/NetPoint.cpp b/src/kernel/routing/NetPoint.cpp index c37e5d8d7c..5112bc65bd 100644 --- a/src/kernel/routing/NetPoint.cpp +++ b/src/kernel/routing/NetPoint.cpp @@ -4,6 +4,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/kernel/routing/NetPoint.hpp" +#include "simgrid/kernel/routing/VivaldiZone.hpp" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include "xbt/log.h" @@ -19,19 +20,29 @@ namespace routing { simgrid::xbt::signal NetPoint::on_creation; -NetPoint::NetPoint(const std::string& name, NetPoint::Type componentType, NetZoneImpl* netzone_p) - : name_(name), component_type_(componentType), englobing_zone_(netzone_p) +NetPoint::NetPoint(const std::string& name, NetPoint::Type componentType) : name_(name), component_type_(componentType) { - if (netzone_p != nullptr) - id_ = netzone_p->add_component(this); - else - id_ = static_cast(-1); simgrid::s4u::Engine::get_instance()->netpoint_register(this); simgrid::kernel::routing::NetPoint::on_creation(*this); } + +NetPoint* NetPoint::set_englobing_zone(NetZoneImpl* netzone_p) +{ + englobing_zone_ = netzone_p; + if (netzone_p != nullptr) + id_ = netzone_p->add_component(this); + return this; } + +NetPoint* NetPoint::set_coordinates(const std::string& coords) +{ + if (not coords.empty()) + new vivaldi::Coords(this, coords); + return this; } -} // namespace simgrid::kernel::routing +} // namespace routing +} // namespace kernel +} // namespace simgrid /** @brief Retrieve a netpoint from its name *