X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a3a100990355eb757dc81106b5aac6daed0b8e1..24de4abff1dbfc7c779f6768186be603342df002:/include/simgrid/s4u/Link.hpp diff --git a/include/simgrid/s4u/Link.hpp b/include/simgrid/s4u/Link.hpp index 83763044c9..9857e6cef0 100644 --- a/include/simgrid/s4u/Link.hpp +++ b/include/simgrid/s4u/Link.hpp @@ -18,28 +18,31 @@ ***********/ namespace simgrid { -namespace surf { -class NetworkAction; -}; namespace s4u { /** @brief A Link represents the network facilities between [hosts](\ref simgrid::s4u::Host) */ class XBT_PUBLIC Link : public simgrid::xbt::Extendable { - friend simgrid::surf::LinkImpl; + friend simgrid::kernel::resource::LinkImpl; // Links are created from the NetZone, and destroyed by their private implementation when the simulation ends - explicit Link(surf::LinkImpl* pimpl) : pimpl_(pimpl) {} + explicit Link(kernel::resource::LinkImpl* pimpl) : pimpl_(pimpl) {} virtual ~Link() = default; // The private implementation, that never changes - surf::LinkImpl* const pimpl_; + kernel::resource::LinkImpl* const pimpl_; public: + enum class SharingPolicy { SPLITDUPLEX = 2, SHARED = 1, FATPIPE = 0 }; + /** @brief Retrieve a link from its name */ - static Link* byName(const char* name); + static Link* by_name(const char* name); /** @brief Retrieves the name of that link as a C++ string */ - const std::string& getName() const; + const std::string& get_name() const; /** @brief Retrieves the name of that link as a C string */ - const char* getCname() const; + const char* get_cname() const; + + XBT_ATTRIB_DEPRECATED_v323("Please use Link::by_name()") static Link* byName(const char* name) { return by_name(name); } + XBT_ATTRIB_DEPRECATED_v323("Please use Link::get_name()") const std::string& getName() const { return get_name(); } + XBT_ATTRIB_DEPRECATED_v323("Please use Link::get_cname()") const char* getCname() const { return get_cname(); } /** @brief Get the bandwidth in bytes per second of current Link */ double bandwidth(); @@ -49,7 +52,7 @@ public: /** @brief The sharing policy is a @{link e_surf_link_sharing_policy_t::EType} (0: FATPIPE, 1: SHARED, 2: SPLITDUPLEX) */ - int sharingPolicy(); + SharingPolicy sharingPolicy(); /** @brief Returns the current load (in flops per second) */ double getUsage(); @@ -84,12 +87,12 @@ public: static simgrid::xbt::signal onStateChange; /** @brief Callback signal fired when a communication starts */ - static simgrid::xbt::signal onCommunicate; + static simgrid::xbt::signal onCommunicate; /** @brief Callback signal fired when a communication changes it state (ready/done/cancel) */ - static simgrid::xbt::signal onCommunicationStateChange; + static simgrid::xbt::signal onCommunicationStateChange; - XBT_ATTRIB_DEPRECATED_v321("Use getCname(): v3.21 will turn this warning into an error.") const char* name(); + XBT_ATTRIB_DEPRECATED_v321("Use get_cname(): v3.21 will turn this warning into an error.") const char* name(); }; } }