Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2b94aaf9ec0a3cd0d06474fc7e8069f7984a0bdb
[simgrid.git] / src / surf / network_interface.hpp
1 /* Copyright (c) 2004-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SURF_NETWORK_INTERFACE_HPP_
8 #define SURF_NETWORK_INTERFACE_HPP_
9
10 #include <xbt/base.h>
11
12 #include <boost/unordered_map.hpp>
13
14 #include "xbt/fifo.h"
15 #include "xbt/dict.h"
16 #include "surf_interface.hpp"
17 #include "surf_routing.hpp"
18 #include "src/surf/PropertyHolder.hpp"
19
20 #include "simgrid/link.h"
21
22 /***********
23  * Classes *
24  ***********/
25
26 namespace simgrid {
27 namespace surf {
28
29 class NetworkModel;
30 class NetworkAction;
31
32 /*************
33  * Callbacks *
34  *************/
35
36
37 /** @brief Callback signal fired when the state of a NetworkAction changes
38  *  Signature: `void(NetworkAction *action, e_surf_action_state_t old, e_surf_action_state_t current)` */
39 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(simgrid::surf::NetworkAction*, e_surf_action_state_t, e_surf_action_state_t)>) networkActionStateChangedCallbacks;
40
41 /** @brief Callback signal fired when a NetworkAction is created (when a communication starts)
42  *  Signature: `void(NetworkAction *action, RoutingEdge *src, RoutingEdge *dst, double size, double rate)` */
43 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(simgrid::surf::NetworkAction*, simgrid::surf::NetCard *src, simgrid::surf::NetCard *dst, double size, double rate)>) networkCommunicateCallbacks;
44
45 }
46 }
47
48 /*********
49  * Tools *
50  *********/
51 XBT_PUBLIC(void) netlink_parse_init(sg_platf_link_cbarg_t link);
52
53 /*********
54  * Model *
55  *********/
56
57 namespace simgrid {
58 namespace surf {
59
60 /** @ingroup SURF_network_interface
61  * @brief SURF network model interface class
62  * @details A model is an object which handles the interactions between its Resources and its Actions
63  */
64 class NetworkModel : public Model {
65 public:
66   /** @brief Constructor */
67   NetworkModel() : Model() { }
68
69   /** @brief Destructor */
70   ~NetworkModel() {
71   if (p_maxminSystem)
72     lmm_system_free(p_maxminSystem);
73   if (p_actionHeap)
74     xbt_heap_free(p_actionHeap);
75   if (p_modifiedSet)
76     delete p_modifiedSet;
77   }
78
79   /**
80    * @brief Create a Link
81    *
82    * @param name The name of the Link
83    * @param bw_initial The initial bandwidth of the Link in bytes per second
84    * @param bw_trace The trace associated to the Link bandwidth
85    * @param lat_initial The initial latency of the Link in seconds
86    * @param lat_trace The trace associated to the Link latency
87    * @param initiallyOn The initial Link (state)[e_surf_resource_state_t]
88    * @param state_trace The trace associated to the Link (state)[e_surf_resource_state_t]
89    * @param policy The sharing policy of the Link
90    * @param properties Dictionary of properties associated to this Resource
91    * @return The created Link
92    */
93   virtual Link* createLink(const char *name,
94                                    double bw_initial,
95                                    tmgr_trace_t bw_trace,
96                                    double lat_initial,
97                                    tmgr_trace_t lat_trace,
98                                    int initiallyOn,
99                                    tmgr_trace_t state_trace,
100                                    e_surf_link_sharing_policy_t policy,
101                                    xbt_dict_t properties)=0;
102
103   /**
104    * @brief Create a communication between two hosts.
105    * @details It makes calls to the routing part, and execute the communication
106    * between the two end points.
107    *
108    * @param src The source of the communication
109    * @param dst The destination of the communication
110    * @param size The size of the communication in bytes
111    * @param rate Allows to limit the transfer rate. Negative value means
112    * unlimited.
113    * @return The action representing the communication
114    */
115   virtual Action *communicate(NetCard *src, NetCard *dst,
116                                double size, double rate)=0;
117
118   /** @brief Function pointer to the function to use to solve the lmm_system_t
119    *
120    * @param system The lmm_system_t to solve
121    */
122   void (*f_networkSolve)(lmm_system_t) = lmm_solve;
123
124   /**
125    * @brief Get the right multiplicative factor for the latency.
126    * @details Depending on the model, the effective latency when sending
127    * a message might be different from the theoretical latency of the link,
128    * in function of the message size. In order to account for this, this
129    * function gets this factor.
130    *
131    * @param size The size of the message.
132    * @return The latency factor.
133    */
134   virtual double latencyFactor(double size);
135
136   /**
137    * @brief Get the right multiplicative factor for the bandwidth.
138    * @details Depending on the model, the effective bandwidth when sending
139    * a message might be different from the theoretical bandwidth of the link,
140    * in function of the message size. In order to account for this, this
141    * function gets this factor.
142    *
143    * @param size The size of the message.
144    * @return The bandwidth factor.
145    */
146   virtual double bandwidthFactor(double size);
147
148   /**
149    * @brief Get definitive bandwidth.
150    * @details It gives the minimum bandwidth between the one that would
151    * occur if no limitation was enforced, and the one arbitrary limited.
152    * @param rate The desired maximum bandwidth.
153    * @param bound The bandwidth with only the network taken into account.
154    * @param size The size of the message.
155    * @return The new bandwidth.
156    */
157   virtual double bandwidthConstraint(double rate, double bound, double size);
158   double next_occuring_event_full(double now) override;
159 };
160
161 /************
162  * Resource *
163  ************/
164  /** @ingroup SURF_network_interface
165   * @brief SURF network link interface class
166   * @details A Link represents the link between two [hosts](\ref Host)
167   */
168 class Link :
169     public simgrid::surf::Resource,
170     public simgrid::surf::PropertyHolder {
171 public:
172   /**
173    * @brief Link constructor
174    *
175    * @param model The NetworkModel associated to this Link
176    * @param name The name of the Link
177    * @param props Dictionary of properties associated to this Link
178    */
179   Link(simgrid::surf::NetworkModel *model, const char *name, xbt_dict_t props);
180
181   /**
182    * @brief Link constructor
183    *
184    * @param model The NetworkModel associated to this Link
185    * @param name The name of the Link
186    * @param props Dictionary of properties associated to this Link
187    * @param constraint The lmm constraint associated to this Cpu if it is part of a LMM component
188    * @param state_trace [TODO]
189    */
190   Link(simgrid::surf::NetworkModel *model, const char *name, xbt_dict_t props,
191               lmm_constraint_t constraint,
192               tmgr_trace_t state_trace);
193
194   /* Link destruction logic */
195   /**************************/
196 protected:
197   ~Link();
198 public:
199   void destroy(); // Must be called instead of the destructor
200 private:
201   bool currentlyDestroying_ = false;
202
203 public:
204   /** @brief Callback signal fired when a new Link is created.
205    *  Signature: void(Link*) */
206   static simgrid::xbt::signal<void(simgrid::surf::Link*)> onCreation;
207
208   /** @brief Callback signal fired when a Link is destroyed.
209    *  Signature: void(Link*) */
210   static simgrid::xbt::signal<void(simgrid::surf::Link*)> onDestruction;
211
212   /** @brief Callback signal fired when the state of a Link changes (when it is turned on or off)
213    *  Signature: `void(Link*)` */
214   static simgrid::xbt::signal<void(simgrid::surf::Link*)> onStateChange;
215
216
217   /** @brief Get the bandwidth in bytes per second of current Link */
218   virtual double getBandwidth();
219
220   /** @brief Update the bandwidth in bytes per second of current Link */
221   virtual void updateBandwidth(double value)=0;
222
223   /** @brief Get the latency in seconds of current Link */
224   virtual double getLatency();
225
226   /** @brief Update the latency in seconds of current Link */
227   virtual void updateLatency(double value)=0;
228
229   /** @brief The sharing policy is a @{link e_surf_link_sharing_policy_t::EType} (0: FATPIPE, 1: SHARED, 2: FULLDUPLEX) */
230   virtual int sharingPolicy();
231
232   /** @brief Check if the Link is used */
233   bool isUsed() override;
234
235   void turnOn() override;
236   void turnOff() override;
237
238   tmgr_trace_iterator_t m_stateEvent = NULL;
239   s_surf_metric_t m_latency = {1.0,0,NULL};
240   s_surf_metric_t m_bandwidth = {1.0,0,NULL};
241
242   /* User data */
243 public:
244   void *getData()        { return userData;}
245   void  setData(void *d) { userData=d;}
246 private:
247   void *userData = NULL;
248
249   /* List of all links */
250 private:
251   static boost::unordered_map<std::string, Link *> *links;
252 public:
253   static Link *byName(const char* name);
254   static int linksCount();
255   static Link **linksList();
256   static void linksExit();
257 };
258
259 /**********
260  * Action *
261  **********/
262 /** @ingroup SURF_network_interface
263  * @brief SURF network action interface class
264  * @details A NetworkAction represents a communication between two [hosts](\ref Host)
265  */
266 class NetworkAction : public simgrid::surf::Action {
267 public:
268   /** @brief Constructor
269    *
270    * @param model The NetworkModel associated to this NetworkAction
271    * @param cost The cost of this  NetworkAction in [TODO]
272    * @param failed [description]
273    */
274   NetworkAction(simgrid::surf::Model *model, double cost, bool failed)
275   : simgrid::surf::Action(model, cost, failed) {}
276
277   /**
278    * @brief NetworkAction constructor
279    *
280    * @param model The NetworkModel associated to this NetworkAction
281    * @param cost The cost of this  NetworkAction in [TODO]
282    * @param failed [description]
283    * @param var The lmm variable associated to this Action if it is part of a
284    * LMM component
285    */
286   NetworkAction(simgrid::surf::Model *model, double cost, bool failed, lmm_variable_t var)
287   : simgrid::surf::Action(model, cost, failed, var) {};
288
289   void setState(e_surf_action_state_t state);
290
291 #ifdef HAVE_LATENCY_BOUND_TRACKING
292   /**
293    * @brief Check if the action is limited by latency.
294    *
295    * @return 1 if action is limited by latency, 0 otherwise
296    */
297   virtual int getLatencyLimited() {return m_latencyLimited;}
298 #endif
299
300   double m_latency;
301   double m_latCurrent;
302   double m_weight;
303   double m_rate;
304   const char* p_senderLinkName;
305   double m_senderSize;
306   xbt_fifo_item_t p_senderFifoItem;
307 #ifdef HAVE_LATENCY_BOUND_TRACKING
308   int m_latencyLimited;
309 #endif
310
311 };
312
313 }
314 }
315
316 #endif /* SURF_NETWORK_INTERFACE_HPP_ */
317
318