Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2cb1cdfb4da17d1dddbc1694ae148cfa204929fc
[simgrid.git] / src / surf / network_interface.cpp
1 /* Copyright (c) 2013-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 #include "network_interface.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/sg_config.hpp"
9 #include "src/kernel/resource/profile/Profile.hpp"
10 #include "src/surf/surf_interface.hpp"
11 #include "surf/surf.hpp"
12
13 #ifndef NETWORK_INTERFACE_CPP_
14 #define NETWORK_INTERFACE_CPP_
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(res_network, ker_resource, "Network resources, that fuel communications");
17
18 /*********
19  * Model *
20  *********/
21
22 namespace simgrid {
23 namespace kernel {
24 namespace resource {
25
26 /** @brief Command-line option 'network/TCP-gamma' -- see @ref options_model_network_gamma */
27 config::Flag<double> NetworkModel::cfg_tcp_gamma(
28     "network/TCP-gamma",
29     "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; "
30     "Use the last given value, which is the max window size)",
31     4194304.0);
32
33 /** @brief Command-line option 'network/crosstraffic' -- see @ref options_model_network_crosstraffic */
34 config::Flag<bool> NetworkModel::cfg_crosstraffic(
35     "network/crosstraffic",
36     "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)", "yes");
37
38 NetworkModel::~NetworkModel() = default;
39
40 double NetworkModel::next_occurring_event_full(double now)
41 {
42   double minRes = Model::next_occurring_event_full(now);
43
44   for (Action const& action : *get_started_action_set()) {
45     const auto& net_action = static_cast<const NetworkAction&>(action);
46     if (net_action.latency_ > 0)
47       minRes = (minRes < 0) ? net_action.latency_ : std::min(minRes, net_action.latency_);
48   }
49
50   XBT_DEBUG("Min of share resources %f", minRes);
51
52   return minRes;
53 }
54
55 /************
56  * Resource *
57  ************/
58
59 LinkImpl::LinkImpl(const std::string& name) : Resource_T(name), piface_(this)
60 {
61   if (name != "__loopback__")
62     xbt_assert(not s4u::Link::by_name_or_null(name), "Link '%s' declared several times in the platform.", name.c_str());
63
64   s4u::Engine::get_instance()->link_register(name, &piface_);
65   XBT_DEBUG("Create link '%s'", name.c_str());
66 }
67
68 /** @brief Fire the required callbacks and destroy the object
69  *
70  * Don't delete directly a Link, call l->destroy() instead.
71  */
72 void LinkImpl::destroy()
73 {
74   s4u::Link::on_destruction(this->piface_);
75   delete this;
76 }
77
78 bool LinkImpl::is_used() const
79 {
80   return get_model()->get_maxmin_system()->constraint_used(get_constraint());
81 }
82
83 LinkImpl* LinkImpl::set_sharing_policy(s4u::Link::SharingPolicy policy)
84 {
85   get_constraint()->set_sharing_policy(policy);
86   return this;
87 }
88 s4u::Link::SharingPolicy LinkImpl::get_sharing_policy() const
89 {
90   return get_constraint()->get_sharing_policy();
91 }
92
93 void LinkImpl::latency_check(double latency) const
94 {
95   static double last_warned_latency = sg_surf_precision;
96   if (latency != 0.0 && latency < last_warned_latency) {
97     XBT_WARN("Latency for link %s is smaller than surf/precision (%g < %g)."
98         " For more accuracy, consider setting \"--cfg=surf/precision:%g\".",
99         get_cname(), latency, sg_surf_precision, latency);
100     last_warned_latency = latency;
101   }
102 }
103
104 void LinkImpl::turn_on()
105 {
106   if (not is_on()) {
107     Resource::turn_on();
108     s4u::Link::on_state_change(piface_);
109   }
110 }
111
112 void LinkImpl::turn_off()
113 {
114   if (is_on()) {
115     Resource::turn_off();
116     s4u::Link::on_state_change(piface_);
117
118     const kernel::lmm::Element* elem = nullptr;
119     double now                       = surf_get_clock();
120     while (const auto* var = get_constraint()->get_variable(&elem)) {
121       Action* action = var->get_id();
122       if (action->get_state() == Action::State::INITED || action->get_state() == Action::State::STARTED) {
123         action->set_finish_time(now);
124         action->set_state(Action::State::FAILED);
125       }
126     }
127   }
128 }
129
130 void LinkImpl::seal()
131 {
132   if (is_sealed())
133     return;
134
135   xbt_assert(this->get_model(), "Cannot seal Link(%s) without setting the Network model first", this->get_cname());
136   Resource::seal();
137   s4u::Link::on_creation(piface_);
138 }
139
140 void LinkImpl::on_bandwidth_change() const
141 {
142   s4u::Link::on_bandwidth_change(piface_);
143 }
144
145 LinkImpl* LinkImpl::set_bandwidth_profile(profile::Profile* profile)
146 {
147   if (profile) {
148     xbt_assert(bandwidth_.event == nullptr, "Cannot set a second bandwidth profile to Link %s", get_cname());
149     bandwidth_.event = profile->schedule(&profile::future_evt_set, this);
150   }
151   return this;
152 }
153
154 LinkImpl* LinkImpl::set_latency_profile(profile::Profile* profile)
155 {
156   if (profile) {
157     xbt_assert(latency_.event == nullptr, "Cannot set a second latency profile to Link %s", get_cname());
158     latency_.event = profile->schedule(&profile::future_evt_set, this);
159   }
160   return this;
161 }
162
163 /**********
164  * Action *
165  **********/
166
167 void NetworkAction::set_state(Action::State state)
168 {
169   Action::State previous = get_state();
170   if (previous != state) { // Trigger only if the state changed
171     Action::set_state(state);
172     s4u::Link::on_communication_state_change(*this, previous);
173   }
174 }
175
176 /** @brief returns a list of all Links that this action is using */
177 std::list<LinkImpl*> NetworkAction::get_links() const
178 {
179   std::list<LinkImpl*> retlist;
180   int llen = get_variable()->get_number_of_constraint();
181
182   for (int i = 0; i < llen; i++) {
183     /* Beware of composite actions: ptasks put links and cpus together */
184     if (auto* link = dynamic_cast<LinkImpl*>(get_variable()->get_constraint(i)->get_id()))
185       retlist.push_back(link);
186   }
187
188   return retlist;
189 }
190 } // namespace resource
191 } // namespace kernel
192 } // namespace simgrid
193
194 #endif /* NETWORK_INTERFACE_CPP_ */