Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'split_link_impl' into 'master'
[simgrid.git] / src / s4u / s4u_Netzone.cpp
1 /* Copyright (c) 2006-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 "simgrid/Exception.hpp"
7 #include "simgrid/kernel/routing/NetPoint.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "simgrid/s4u/NetZone.hpp"
11 #include "simgrid/simix.hpp"
12 #include "simgrid/zone.h"
13 #include "src/surf/network_interface.hpp"
14 #include "xbt/parse_units.hpp"
15
16 namespace simgrid {
17 namespace s4u {
18
19 xbt::signal<void(bool symmetrical, kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
20                  kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
21                  std::vector<kernel::resource::LinkImpl*> const& link_list)>
22     NetZone::on_route_creation;
23 xbt::signal<void(NetZone const&)> NetZone::on_creation;
24 xbt::signal<void(NetZone const&)> NetZone::on_seal;
25
26 const std::unordered_map<std::string, std::string>* NetZone::get_properties() const
27 {
28   return pimpl_->get_properties();
29 }
30
31 /** Retrieve the property value (or nullptr if not set) */
32 const char* NetZone::get_property(const std::string& key) const
33 {
34   return pimpl_->get_property(key);
35 }
36
37 void NetZone::set_property(const std::string& key, const std::string& value)
38 {
39   kernel::actor::simcall([this, &key, &value] { pimpl_->set_property(key, value); });
40 }
41
42 /** @brief Returns the list of direct children (no grand-children) */
43 std::vector<NetZone*> NetZone::get_children() const
44 {
45   std::vector<NetZone*> res;
46   for (auto child : pimpl_->get_children())
47     res.push_back(child->get_iface());
48   return res;
49 }
50
51 NetZone* NetZone::add_child(NetZone* new_zone)
52 {
53   new_zone->set_parent(this);
54   return this;
55 }
56
57 const std::string& NetZone::get_name() const
58 {
59   return pimpl_->get_name();
60 }
61
62 const char* NetZone::get_cname() const
63 {
64   return pimpl_->get_cname();
65 }
66
67 NetZone* NetZone::get_father()
68 {
69   return pimpl_->get_parent()->get_iface();
70 }
71
72 NetZone* NetZone::get_parent() const
73 {
74   return pimpl_->get_parent()->get_iface();
75 }
76
77 NetZone* NetZone::set_parent(const NetZone* parent)
78 {
79   kernel::actor::simcall([this, parent] { pimpl_->set_parent(parent->get_impl()); });
80   return this;
81 }
82
83 /** @brief Returns the list of the hosts found in this NetZone (not recursively)
84  *
85  * Only the hosts that are directly contained in this NetZone are retrieved,
86  * not the ones contained in sub-netzones.
87  */
88 std::vector<Host*> NetZone::get_all_hosts() const
89 {
90   return pimpl_->get_all_hosts();
91 }
92
93 int NetZone::get_host_count() const
94 {
95   return pimpl_->get_host_count();
96 }
97
98 int NetZone::add_component(kernel::routing::NetPoint* elm)
99 {
100   return pimpl_->add_component(elm);
101 }
102
103 std::vector<LinkInRoute> NetZone::convert_to_linkInRoute(const std::vector<kernel::resource::LinkImpl*>& link_list)
104 {
105   std::vector<LinkInRoute> links;
106   for (const auto* link : link_list) {
107     links.emplace_back(LinkInRoute(link->get_iface()));
108   }
109   return links;
110 }
111
112 void NetZone::add_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
113                         kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
114                         const std::vector<LinkInRoute>& link_list, bool symmetrical)
115 {
116   pimpl_->add_route(src, dst, gw_src, gw_dst, link_list, symmetrical);
117 }
118
119 void NetZone::add_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
120                         kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
121                         const std::vector<kernel::resource::LinkImpl*>& link_list, bool symmetrical)
122 {
123   pimpl_->add_route(src, dst, gw_src, gw_dst, convert_to_linkInRoute(link_list), symmetrical);
124 }
125
126 void NetZone::add_bypass_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
127                                kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
128                                std::vector<kernel::resource::LinkImpl*>& link_list, bool /*symmetrical*/)
129 {
130   pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, convert_to_linkInRoute(link_list));
131 }
132
133 void NetZone::add_bypass_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
134                                kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
135                                const std::vector<LinkInRoute>& link_list)
136 {
137   pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, link_list);
138 }
139
140 void NetZone::extract_xbt_graph(const s_xbt_graph_t* graph, std::map<std::string, xbt_node_t, std::less<>>* nodes,
141                                 std::map<std::string, xbt_edge_t, std::less<>>* edges)
142 {
143   for (auto const& child : get_children())
144     child->extract_xbt_graph(graph, nodes, edges);
145
146   pimpl_->get_graph(graph, nodes, edges);
147 }
148
149 NetZone* NetZone::seal()
150 {
151   kernel::actor::simcall([this] { pimpl_->seal(); });
152   return this;
153 }
154
155 s4u::Host* NetZone::create_host(const std::string& name, double speed)
156 {
157   return create_host(name, std::vector<double>{speed});
158 }
159
160 s4u::Host* NetZone::create_host(const std::string& name, const std::vector<double>& speed_per_pstate)
161 {
162   return kernel::actor::simcall(
163       [this, &name, &speed_per_pstate] { return pimpl_->create_host(name, speed_per_pstate); });
164 }
165
166 s4u::Host* NetZone::create_host(const std::string& name, const std::string& speed)
167 {
168   return create_host(name, std::vector<std::string>{speed});
169 }
170
171 s4u::Host* NetZone::create_host(const std::string& name, const std::vector<std::string>& speed_per_pstate)
172 {
173   return create_host(name, Host::convert_pstate_speed_vector(speed_per_pstate));
174 }
175
176 s4u::Link* NetZone::create_link(const std::string& name, double bandwidth)
177 {
178   return create_link(name, std::vector<double>{bandwidth});
179 }
180
181 s4u::Link* NetZone::create_link(const std::string& name, const std::vector<double>& bandwidths)
182 {
183   return kernel::actor::simcall([this, &name, &bandwidths] { return pimpl_->create_link(name, bandwidths); });
184 }
185
186 s4u::Link* NetZone::create_link(const std::string& name, const std::string& bandwidth)
187 {
188   return create_link(name, std::vector<std::string>{bandwidth});
189 }
190
191 s4u::SplitDuplexLink* NetZone::create_split_duplex_link(const std::string& name, const std::string& bandwidth)
192 {
193   double speed;
194   try {
195     speed = xbt_parse_get_bandwidth("", 0, bandwidth, "");
196   } catch (const simgrid::ParseError&) {
197     throw std::invalid_argument(std::string("Impossible to create split-duplex link: ") + name +
198                                 std::string(". Invalid bandwidth: ") + bandwidth);
199   }
200   return create_split_duplex_link(name, speed);
201 }
202
203 s4u::SplitDuplexLink* NetZone::create_split_duplex_link(const std::string& name, double bandwidth)
204 {
205   return kernel::actor::simcall(
206       [this, &name, &bandwidth] { return pimpl_->create_split_duplex_link(name, std::vector<double>{bandwidth}); });
207 }
208
209 s4u::Link* NetZone::create_link(const std::string& name, const std::vector<std::string>& bandwidths)
210 {
211   std::vector<double> bw;
212   bw.reserve(bandwidths.size());
213   for (const auto& speed_str : bandwidths) {
214     try {
215       double speed = xbt_parse_get_bandwidth("", 0, speed_str, "");
216       bw.push_back(speed);
217     } catch (const simgrid::ParseError&) {
218       throw std::invalid_argument(std::string("Impossible to create link: ") + name +
219                                   std::string(". Invalid bandwidth: ") + speed_str);
220     }
221   }
222   return create_link(name, bw);
223 }
224
225 kernel::routing::NetPoint* NetZone::create_router(const std::string& name)
226 {
227   return kernel::actor::simcall([this, &name] { return pimpl_->create_router(name); });
228 }
229
230 kernel::routing::NetPoint* NetZone::get_netpoint()
231 {
232   return pimpl_->get_netpoint();
233 }
234
235 kernel::resource::NetworkModelIntf* NetZone::get_network_model() const
236 {
237   kernel::resource::NetworkModelIntf* model = pimpl_->get_network_model().get();
238   return model;
239 }
240 } // namespace s4u
241 } // namespace simgrid
242
243 /* **************************** Public C interface *************************** */
244
245 sg_netzone_t sg_zone_get_root()
246 {
247   return simgrid::s4u::Engine::get_instance()->get_netzone_root();
248 }
249
250 const char* sg_zone_get_name(const_sg_netzone_t netzone)
251 {
252   return netzone->get_cname();
253 }
254
255 sg_netzone_t sg_zone_get_by_name(const char* name)
256 {
257   return simgrid::s4u::Engine::get_instance()->netzone_by_name_or_null(name);
258 }
259
260 void sg_zone_get_sons(const_sg_netzone_t netzone, xbt_dict_t whereto)
261 {
262   for (auto const& elem : netzone->get_children()) {
263     xbt_dict_set(whereto, elem->get_cname(), elem);
264   }
265 }
266
267 const char* sg_zone_get_property_value(const_sg_netzone_t netzone, const char* name)
268 {
269   return netzone->get_property(name);
270 }
271
272 void sg_zone_set_property_value(sg_netzone_t netzone, const char* name, const char* value)
273 {
274   netzone->set_property(name, value);
275 }
276
277 void sg_zone_get_hosts(const_sg_netzone_t netzone, xbt_dynar_t whereto)
278 {
279   /* converts vector to dynar */
280   std::vector<simgrid::s4u::Host*> hosts = netzone->get_all_hosts();
281   for (auto const& host : hosts)
282     xbt_dynar_push(whereto, &host);
283 }