X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4d648ebbbe5705878080b9cbf1ca61497323c592..de00769095da24e77ceab237b324c2c3a4f94a9d:/include/simgrid/kernel/routing/NetPoint.hpp diff --git a/include/simgrid/kernel/routing/NetPoint.hpp b/include/simgrid/kernel/routing/NetPoint.hpp index 0b239f7a87..aca24523c9 100644 --- a/include/simgrid/kernel/routing/NetPoint.hpp +++ b/include/simgrid/kernel/routing/NetPoint.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2023. 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. */ @@ -13,45 +13,47 @@ #include namespace simgrid { -namespace kernel { -namespace routing { + +extern template class XBT_PUBLIC xbt::Extendable; + +namespace kernel::routing { /** @ingroup ROUTING_API * @brief Network cards are the vertices in the graph representing the network, used to compute paths between nodes. * * @details This represents a position in the network. One can send information between two netpoints */ -class NetPoint : public simgrid::xbt::Extendable { - +class NetPoint : public xbt::Extendable { public: enum class Type { Host, Router, NetZone }; - NetPoint(const std::string& name, NetPoint::Type component_type, NetZoneImpl* netzone_p); - ~NetPoint() = default; + NetPoint(const std::string& name, NetPoint::Type component_type); // Our rank in the vertices_ array of the netzone that contains us. - unsigned int id() { return id_; } + unsigned long id() const { return id_; } const std::string& get_name() const { return name_; } const char* get_cname() const { return name_.c_str(); } /** @brief the NetZone in which this NetPoint is included */ - NetZoneImpl* get_englobing_zone() { return englobing_zone_; } + NetZoneImpl* get_englobing_zone() const { return englobing_zone_; } + /** @brief Set the NetZone in which this NetPoint is included */ + NetPoint* set_englobing_zone(NetZoneImpl* netzone_p); + NetPoint* set_coordinates(const std::string& coords); bool is_netzone() const { return component_type_ == Type::NetZone; } bool is_host() const { return component_type_ == Type::Host; } bool is_router() const { return component_type_ == Type::Router; } - static simgrid::xbt::signal on_creation; + static xbt::signal on_creation; bool operator<(const NetPoint& rhs) const { return name_ < rhs.name_; } private: - unsigned int id_; + unsigned long id_ = -1; std::string name_; NetPoint::Type component_type_; - NetZoneImpl* englobing_zone_; + NetZoneImpl* englobing_zone_ = nullptr; }; -} // namespace routing -} // namespace kernel +} // namespace kernel::routing } // namespace simgrid XBT_PUBLIC simgrid::kernel::routing::NetPoint* sg_netpoint_by_name_or_null(const char* name);