Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use std::string for xbt_parse_units.
[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<kernel::resource::LinkImpl*> NetZone::get_link_list_impl(const std::vector<Link*>& link_list)
104 {
105   std::vector<kernel::resource::LinkImpl*> links;
106   for (const auto& link : link_list) {
107     links.push_back(link->get_impl());
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<Link*>& link_list, bool symmetrical)
115 {
116   pimpl_->add_route(src, dst, gw_src, gw_dst, NetZone::get_link_list_impl(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, link_list, symmetrical);
124 }
125 void NetZone::add_bypass_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
126                                kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
127                                std::vector<kernel::resource::LinkImpl*>& link_list, bool symmetrical)
128 {
129   pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, link_list, symmetrical);
130 }
131
132 void NetZone::extract_xbt_graph(const s_xbt_graph_t* graph, std::map<std::string, xbt_node_t, std::less<>>* nodes,
133                                 std::map<std::string, xbt_edge_t, std::less<>>* edges)
134 {
135   for (auto const& child : get_children())
136     child->extract_xbt_graph(graph, nodes, edges);
137
138   pimpl_->get_graph(graph, nodes, edges);
139 }
140
141 NetZone* NetZone::seal()
142 {
143   kernel::actor::simcall([this] { pimpl_->seal(); });
144   return this;
145 }
146
147 s4u::Host* NetZone::create_host(const std::string& name, double speed)
148 {
149   return create_host(name, std::vector<double>{speed});
150 }
151
152 s4u::Host* NetZone::create_host(const std::string& name, const std::vector<double>& speed_per_pstate)
153 {
154   return kernel::actor::simcall(
155       [this, &name, &speed_per_pstate] { return pimpl_->create_host(name, speed_per_pstate); });
156 }
157
158 s4u::Host* NetZone::create_host(const std::string& name, const std::string& speed)
159 {
160   return create_host(name, std::vector<std::string>{speed});
161 }
162
163 s4u::Host* NetZone::create_host(const std::string& name, const std::vector<std::string>& speed_per_pstate)
164 {
165   return create_host(name, Host::convert_pstate_speed_vector(speed_per_pstate));
166 }
167
168 s4u::Link* NetZone::create_link(const std::string& name, double bandwidth)
169 {
170   return create_link(name, std::vector<double>{bandwidth});
171 }
172
173 s4u::Link* NetZone::create_link(const std::string& name, const std::vector<double>& bandwidths)
174 {
175   return kernel::actor::simcall([this, &name, &bandwidths] { return pimpl_->create_link(name, bandwidths); });
176 }
177
178 s4u::Link* NetZone::create_link(const std::string& name, const std::string& bandwidth)
179 {
180   return create_link(name, std::vector<std::string>{bandwidth});
181 }
182
183 s4u::Link* NetZone::create_link(const std::string& name, const std::vector<std::string>& bandwidths)
184 {
185   std::vector<double> bw;
186   bw.reserve(bandwidths.size());
187   for (const auto& speed_str : bandwidths) {
188     try {
189       double speed = xbt_parse_get_bandwidth("", 0, speed_str, "");
190       bw.push_back(speed);
191     } catch (const simgrid::ParseError&) {
192       throw std::invalid_argument(std::string("Impossible to create link: ") + name +
193                                   std::string(". Invalid bandwidth: ") + speed_str);
194     }
195   }
196   return create_link(name, bw);
197 }
198
199 kernel::routing::NetPoint* NetZone::create_router(const std::string& name)
200 {
201   return kernel::actor::simcall([this, &name] { return pimpl_->create_router(name); });
202 }
203
204 kernel::routing::NetPoint* NetZone::get_netpoint()
205 {
206   return pimpl_->get_netpoint();
207 }
208
209 kernel::resource::NetworkModelIntf* NetZone::get_network_model() const
210 {
211   kernel::resource::NetworkModelIntf* model = pimpl_->get_network_model().get();
212   return model;
213 }
214 } // namespace s4u
215 } // namespace simgrid
216
217 /* **************************** Public C interface *************************** */
218
219 sg_netzone_t sg_zone_get_root()
220 {
221   return simgrid::s4u::Engine::get_instance()->get_netzone_root();
222 }
223
224 const char* sg_zone_get_name(const_sg_netzone_t netzone)
225 {
226   return netzone->get_cname();
227 }
228
229 sg_netzone_t sg_zone_get_by_name(const char* name)
230 {
231   return simgrid::s4u::Engine::get_instance()->netzone_by_name_or_null(name);
232 }
233
234 void sg_zone_get_sons(const_sg_netzone_t netzone, xbt_dict_t whereto)
235 {
236   for (auto const& elem : netzone->get_children()) {
237     xbt_dict_set(whereto, elem->get_cname(), elem);
238   }
239 }
240
241 const char* sg_zone_get_property_value(const_sg_netzone_t netzone, const char* name)
242 {
243   return netzone->get_property(name);
244 }
245
246 void sg_zone_set_property_value(sg_netzone_t netzone, const char* name, const char* value)
247 {
248   netzone->set_property(name, value);
249 }
250
251 void sg_zone_get_hosts(const_sg_netzone_t netzone, xbt_dynar_t whereto)
252 {
253   /* converts vector to dynar */
254   std::vector<simgrid::s4u::Host*> hosts = netzone->get_all_hosts();
255   for (auto const& host : hosts)
256     xbt_dynar_push(whereto, &host);
257 }