Logo AND Algorithmique Numérique Distribuée

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