Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
147747ac0ed6903cec6168b989436d092eb6e8ec
[simgrid.git] / src / surf / network_interface.cpp
1 /* Copyright (c) 2013-2018. 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 #include "network_interface.hpp"
7 #include "simgrid/sg_config.hpp"
8 #include "src/surf/surf_interface.hpp"
9
10 #ifndef NETWORK_INTERFACE_CPP_
11 #define NETWORK_INTERFACE_CPP_
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_network, surf, "Logging specific to the SURF network module");
14
15 namespace simgrid {
16 namespace kernel {
17 namespace resource {
18
19 /* List of links */
20 std::unordered_map<std::string, LinkImpl*>* LinkImpl::links = new std::unordered_map<std::string, LinkImpl*>();
21
22 LinkImpl* LinkImpl::byName(std::string name)
23 {
24   auto link = links->find(name);
25   return link == links->end() ? nullptr : link->second;
26 }
27 /** @brief Returns the amount of links in the platform */
28 int LinkImpl::linksCount()
29 {
30   return links->size();
31 }
32 void LinkImpl::linksList(std::vector<s4u::Link*>* linkList)
33 {
34   for (auto const& kv : *links) {
35     linkList->push_back(&kv.second->piface_);
36   }
37 }
38
39 /** @brief Returns a list of all existing links */
40 LinkImpl** LinkImpl::linksList()
41 {
42   LinkImpl** res = xbt_new(LinkImpl*, (int)links->size());
43   int i          = 0;
44   for (auto const& kv : *links) {
45     res[i] = kv.second;
46     i++;
47   }
48   return res;
49 }
50 /** @brief destructor of the static data */
51 void LinkImpl::linksExit()
52 {
53   for (auto const& kv : *links)
54     (kv.second)->destroy();
55   delete links;
56 }
57 }
58 }
59 } // namespace simgrid
60
61 /*********
62  * Model *
63  *********/
64
65 simgrid::kernel::resource::NetworkModel* surf_network_model = nullptr;
66
67 namespace simgrid {
68 namespace kernel {
69 namespace resource {
70
71 /** @brief Command-line option 'network/TCP-gamma' -- see \ref options_model_network_gamma */
72 simgrid::config::Flag<double> NetworkModel::cfg_tcp_gamma(
73     {"network/TCP-gamma", "network/TCP_gamma"},
74     "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; "
75     "Use the last given value, which is the max window size)",
76     4194304.0);
77
78 /** @brief Command-line option 'network/crosstraffic' -- see \ref options_model_network_crosstraffic */
79 simgrid::config::Flag<bool> NetworkModel::cfg_crosstraffic(
80     "network/crosstraffic",
81     "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)", "yes");
82
83 NetworkModel::~NetworkModel() = default;
84
85 double NetworkModel::latencyFactor(double /*size*/)
86 {
87   return sg_latency_factor;
88 }
89
90 double NetworkModel::bandwidthFactor(double /*size*/)
91 {
92   return sg_bandwidth_factor;
93 }
94
95 double NetworkModel::bandwidthConstraint(double rate, double /*bound*/, double /*size*/)
96 {
97   return rate;
98 }
99
100 double NetworkModel::next_occuring_event_full(double now)
101 {
102   double minRes = Model::next_occuring_event_full(now);
103
104   for (Action const& action : *get_running_action_set()) {
105     const NetworkAction& net_action = static_cast<const NetworkAction&>(action);
106     if (net_action.latency_ > 0)
107       minRes = (minRes < 0) ? net_action.latency_ : std::min(minRes, net_action.latency_);
108   }
109
110   XBT_DEBUG("Min of share resources %f", minRes);
111
112   return minRes;
113 }
114
115 /************
116  * Resource *
117  ************/
118
119 LinkImpl::LinkImpl(NetworkModel* model, const std::string& name, lmm::Constraint* constraint)
120     : Resource(model, name, constraint), piface_(this)
121 {
122
123   if (name != "__loopback__")
124     xbt_assert(not LinkImpl::byName(name), "Link '%s' declared several times in the platform.", name.c_str());
125
126   latency_.scale   = 1;
127   bandwidth_.scale = 1;
128
129   links->insert({name, this});
130   XBT_DEBUG("Create link '%s'", name.c_str());
131 }
132
133 /** @brief use destroy() instead of this destructor */
134 LinkImpl::~LinkImpl()
135 {
136   xbt_assert(currentlyDestroying_, "Don't delete Links directly. Call destroy() instead.");
137 }
138 /** @brief Fire the required callbacks and destroy the object
139  *
140  * Don't delete directly a Link, call l->destroy() instead.
141  */
142 void LinkImpl::destroy()
143 {
144   if (not currentlyDestroying_) {
145     currentlyDestroying_ = true;
146     s4u::Link::onDestruction(this->piface_);
147     delete this;
148   }
149 }
150
151 bool LinkImpl::is_used()
152 {
153   return get_model()->get_maxmin_system()->constraint_used(get_constraint());
154 }
155
156 double LinkImpl::latency()
157 {
158   return latency_.peak * latency_.scale;
159 }
160
161 double LinkImpl::bandwidth()
162 {
163   return bandwidth_.peak * bandwidth_.scale;
164 }
165
166 s4u::Link::SharingPolicy LinkImpl::sharingPolicy()
167 {
168   return get_constraint()->get_sharing_policy();
169 }
170
171 void LinkImpl::turn_on()
172 {
173   if (is_off()) {
174     Resource::turn_on();
175     s4u::Link::onStateChange(this->piface_);
176   }
177 }
178 void LinkImpl::turn_off()
179 {
180   if (is_on()) {
181     Resource::turn_off();
182     s4u::Link::onStateChange(this->piface_);
183   }
184 }
185 void LinkImpl::setStateTrace(tmgr_trace_t trace)
186 {
187   xbt_assert(stateEvent_ == nullptr, "Cannot set a second state trace to Link %s", get_cname());
188   stateEvent_ = future_evt_set->add_trace(trace, this);
189 }
190 void LinkImpl::setBandwidthTrace(tmgr_trace_t trace)
191 {
192   xbt_assert(bandwidth_.event == nullptr, "Cannot set a second bandwidth trace to Link %s", get_cname());
193   bandwidth_.event = future_evt_set->add_trace(trace, this);
194 }
195 void LinkImpl::setLatencyTrace(tmgr_trace_t trace)
196 {
197   xbt_assert(latency_.event == nullptr, "Cannot set a second latency trace to Link %s", get_cname());
198   latency_.event = future_evt_set->add_trace(trace, this);
199 }
200
201 /**********
202  * Action *
203  **********/
204
205 void NetworkAction::set_state(Action::State state)
206 {
207   Action::set_state(state);
208   s4u::Link::onCommunicationStateChange(this);
209 }
210
211 /** @brief returns a list of all Links that this action is using */
212 std::list<LinkImpl*> NetworkAction::links()
213 {
214   std::list<LinkImpl*> retlist;
215   int llen = get_variable()->get_number_of_constraint();
216
217   for (int i = 0; i < llen; i++) {
218     /* Beware of composite actions: ptasks put links and cpus together */
219     // extra pb: we cannot dynamic_cast from void*...
220     Resource* resource = static_cast<Resource*>(get_variable()->get_constraint(i)->get_id());
221     LinkImpl* link     = dynamic_cast<LinkImpl*>(resource);
222     if (link != nullptr)
223       retlist.push_back(link);
224   }
225
226   return retlist;
227 }
228 }
229 } // namespace kernel
230 }
231
232 #endif /* NETWORK_INTERFACE_CPP_ */