Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in the changelog and NEWS file [skip-ci]
[simgrid.git] / include / simgrid / s4u / Link.hpp
1 /* Copyright (c) 2004-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef S4U_LINK_HPP
7 #define S4U_LINK_HPP
8
9 #include <simgrid/forward.h>
10 #include <simgrid/kernel/resource/Action.hpp>
11 #include <simgrid/link.h>
12 #include <string>
13 #include <unordered_map>
14 #include <xbt/Extendable.hpp>
15 #include <xbt/base.h>
16 #include <xbt/signal.hpp>
17
18 /***********
19  * Classes *
20  ***********/
21
22 namespace simgrid {
23
24 extern template class XBT_PUBLIC xbt::Extendable<s4u::Link>;
25
26 namespace s4u {
27 /**
28  * @beginrst
29  * A Link represents the network facilities between :cpp:class:`hosts <simgrid::s4u::Host>`.
30  * @endrst
31  */
32 class XBT_PUBLIC Link : public xbt::Extendable<Link> {
33 #ifndef DOXYGEN
34   friend kernel::resource::LinkImpl;
35 #endif
36
37 protected:
38   // Links are created from the NetZone, and destroyed by their private implementation when the simulation ends
39   explicit Link(kernel::resource::LinkImplIntf* pimpl) : pimpl_(pimpl) {}
40   virtual ~Link() = default;
41   // The implementation that never changes
42   kernel::resource::LinkImplIntf* const pimpl_;
43
44 public:
45   enum class SharingPolicy { NONLINEAR = 4, WIFI = 3, SPLITDUPLEX = 2, SHARED = 1, FATPIPE = 0 };
46
47   kernel::resource::LinkImpl* get_impl() const;
48
49   /** @brief Retrieve a link from its name */
50   static Link* by_name(const std::string& name);
51   static Link* by_name_or_null(const std::string& name);
52
53   /** @brief Retrieves the name of that link as a C++ string */
54   const std::string& get_name() const;
55   /** @brief Retrieves the name of that link as a C string */
56   const char* get_cname() const;
57
58   /** Get/Set the bandwidth of the current Link (in bytes per second) */
59   double get_bandwidth() const;
60   Link* set_bandwidth(double value);
61
62   /** Get/Set the latency of the current Link (in seconds) */
63   double get_latency() const;
64   /**
65    * @brief Set link's latency
66    *
67    * @param value New latency value (in s)
68    */
69   Link* set_latency(double value);
70   /**
71    * @brief Set latency (string version)
72    *
73    * Accepts values with units, such as '1s' or '7ms'.
74    *
75    * Full list of accepted units: w (week), d (day), h, s, ms, us, ns, ps.
76    *
77    * @throw std::invalid_argument if latency format is incorrect.
78    */
79   Link* set_latency(const std::string& value);
80
81   /** @brief Describes how the link is shared between flows
82    *
83    *  Note that the NONLINEAR callback is in the critical path of the solver, so it should be fast.
84    */
85   Link* set_sharing_policy(SharingPolicy policy, const NonLinearResourceCb& cb = {});
86   SharingPolicy get_sharing_policy() const;
87
88   /** Setup the profile with states events (ON or OFF). The profile must contain boolean values. */
89   Link* set_state_profile(kernel::profile::Profile* profile);
90   /** Setup the profile with bandwidth events (peak speed changes due to external load).
91    * The profile must contain percentages (value between 0 and 1). */
92   Link* set_bandwidth_profile(kernel::profile::Profile* profile);
93   /** Setup the profile file with latency events (peak latency changes due to external load).
94    * The profile must contain absolute values */
95   Link* set_latency_profile(kernel::profile::Profile* profile);
96
97   const std::unordered_map<std::string, std::string>* get_properties() const;
98   const char* get_property(const std::string& key) const;
99   Link* set_properties(const std::unordered_map<std::string, std::string>& properties);
100   Link* set_property(const std::string& key, const std::string& value);
101
102   /**
103    * @brief Set the number of communications that can shared this link at the same time
104    *
105    * Use this method to serialize communication flows going through this link.
106    * Use -1 to set no limit.
107    *
108    * @param limit  Number of concurrent flows
109    */
110   Link* set_concurrency_limit(int limit);
111
112   /** @brief Set the level of communication speed of the given host on this wifi link.
113    *
114    * The bandwidth of a wifi link for a given host depends on its SNR (signal to noise ratio),
115    * which ultimately depends on the distance between the host and the station and the material between them.
116    *
117    * This is modeled in SimGrid by providing several bandwidths to wifi links, one per SNR level (just provide
118    * comma-separated values in the XML file). By default, the first level in the list is used, but you can use the
119    * current function to specify that a given host uses another level of bandwidth. This can be used to take the
120    * location of hosts into account, or even to model mobility in your SimGrid simulation.
121    *
122    * Note that this function asserts that the link is actually a wifi link */
123   void set_host_wifi_rate(const s4u::Host* host, int level) const;
124
125   /** @brief Returns the current load (in bytes per second) */
126   double get_usage() const;
127
128   /** @brief Check if the Link is used (at least one flow uses the link) */
129   bool is_used() const;
130
131   /** @brief Check if the Link is shared (not a FATPIPE) */
132   bool is_shared() const;
133
134   void turn_on();
135   void turn_off();
136   bool is_on() const;
137
138   Link* seal();
139
140   /* The signals */
141   /** @brief Callback signal fired when a new Link is created */
142   static xbt::signal<void(Link&)> on_creation;
143
144   /** @brief Callback signal fired when a Link is destroyed */
145   static xbt::signal<void(Link const&)> on_destruction;
146
147   /** @brief Callback signal fired when the state of a Link changes (when it is turned on or off) */
148   static xbt::signal<void(Link const&)> on_state_change;
149
150   /** @brief Callback signal fired when the bandwidth of a Link changes */
151   static xbt::signal<void(Link const&)> on_bandwidth_change;
152
153   /** @brief Callback signal fired when a communication starts */
154   static xbt::signal<void(kernel::resource::NetworkAction&)> on_communicate;
155
156   /** @brief Callback signal fired when a communication changes it state (ready/done/cancel) */
157   static xbt::signal<void(kernel::resource::NetworkAction&, kernel::resource::Action::State)>
158       on_communication_state_change;
159 };
160
161 /**
162  * @beginrst
163  * A SplitDuplexLink encapsulates the :cpp:class:`links <simgrid::s4u::Link>` which
164  * compose a Split-Duplex link. Remember that a Split-Duplex link is nothing more than
165  * a pair of up/down links.
166  * @endrst
167  */
168 class XBT_PUBLIC SplitDuplexLink : public Link {
169 public:
170   explicit SplitDuplexLink(kernel::resource::LinkImplIntf* pimpl) : Link(pimpl) {}
171   /** @brief Get the link direction up*/
172   Link* get_link_up() const;
173   /** @brief Get the link direction down */
174   Link* get_link_down() const;
175
176   /** @brief Retrieve a link from its name */
177   static SplitDuplexLink* by_name(const std::string& name);
178 };
179
180 /**
181  * @beginrst
182  * Another encapsulation for using links in the :cpp:func:`NetZone::add_route`
183  *
184  * When adding a route with split-duplex links, you need to specify the direction of the link
185  * so SimGrid can know exactly which physical link to insert in the route.
186  *
187  * For shared/fat-pipe links, use the :cpp:enumerator:`Direction::NONE` since they don't have
188  * the concept of UP/DOWN links.
189  * @endrst
190  */
191 class XBT_PUBLIC LinkInRoute {
192 public:
193   enum class Direction { UP = 2, DOWN = 1, NONE = 0 };
194
195   explicit LinkInRoute(const Link* link) : link_(link) {}
196   LinkInRoute(const Link* link, Direction d) : link_(link), direction_(d) {}
197
198   /** @brief Get direction of this link in the route: UP or DOWN */
199   Direction get_direction() const { return direction_; }
200   /** @brief Get pointer to the link */
201   const Link* get_link() const { return link_; }
202
203 private:
204   const Link* link_;
205   Direction direction_ = Direction::NONE;
206 };
207
208 } // namespace s4u
209 } // namespace simgrid
210
211 #endif /* S4U_LINK_HPP */