Logo AND Algorithmique Numérique Distribuée

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