Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f31917b57e266380cd25bafe2162a69eca60613f
[simgrid.git] / src / s4u / s4u_Netzone.cpp
1 /* Copyright (c) 2006-2019. 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/kernel/routing/NetPoint.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9 #include "simgrid/s4u/NetZone.hpp"
10 #include "simgrid/zone.h"
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_netzone, "S4U Networking Zones");
13
14 namespace simgrid {
15 namespace s4u {
16
17 simgrid::xbt::signal<void(bool symmetrical, kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
18                           kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
19                           std::vector<kernel::resource::LinkImpl*>& link_list)>
20     NetZone::on_route_creation;
21 simgrid::xbt::signal<void(NetZone&)> NetZone::on_creation;
22 simgrid::xbt::signal<void(NetZone&)> NetZone::on_seal;
23
24 NetZone::NetZone(kernel::routing::NetZoneImpl* impl) : pimpl_(impl) {}
25
26 NetZone::~NetZone()
27 {
28 }
29
30 std::unordered_map<std::string, std::string>* NetZone::get_properties()
31 {
32   return simgrid::simix::simcall([this] { return &properties_; });
33 }
34
35 /** Retrieve the property value (or nullptr if not set) */
36 const char* NetZone::get_property(const std::string& key)
37 {
38   return properties_.at(key).c_str();
39 }
40 void NetZone::set_property(const std::string& key, std::string value)
41 {
42   simgrid::simix::simcall([this, key, value] { properties_[key] = std::move(value); });
43 }
44
45 /** @brief Returns the list of direct children (no grand-children) */
46 std::vector<NetZone*> NetZone::get_children()
47 {
48   std::vector<NetZone*> res;
49   for (auto child : *(pimpl_->get_children()))
50     res.push_back(child->get_iface());
51   return res;
52 }
53
54 const std::string& NetZone::get_name() const
55 {
56   return pimpl_->get_name();
57 }
58 const char* NetZone::get_cname() const
59 {
60   return pimpl_->get_cname();
61 }
62 NetZone* NetZone::get_father()
63 {
64   return pimpl_->get_father()->get_iface();
65 }
66
67 /** @brief Returns the list of the hosts found in this NetZone (not recursively)
68  *
69  * Only the hosts that are directly contained in this NetZone are retrieved,
70  * not the ones contained in sub-netzones.
71  */
72 std::vector<Host*> NetZone::get_all_hosts()
73 {
74   return pimpl_->get_all_hosts();
75 }
76
77 void NetZone::getHosts(std::vector<s4u::Host*>* whereto)
78 {
79   for (auto const& card : pimpl_->get_vertices()) {
80     s4u::Host* host = simgrid::s4u::Host::by_name_or_null(card->get_name());
81     if (host != nullptr)
82       whereto->push_back(host);
83   }
84 }
85
86 int NetZone::get_host_count()
87 {
88   return pimpl_->get_host_count();
89 }
90
91 int NetZone::add_component(kernel::routing::NetPoint* elm)
92 {
93   return pimpl_->add_component(elm);
94 }
95
96 void NetZone::add_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
97                         kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
98                         std::vector<kernel::resource::LinkImpl*>& link_list, bool symmetrical)
99 {
100   pimpl_->add_route(src, dst, gw_src, gw_dst, link_list, symmetrical);
101 }
102 void NetZone::add_bypass_route(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
103                                kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
104                                std::vector<kernel::resource::LinkImpl*>& link_list, bool symmetrical)
105 {
106   pimpl_->add_bypass_route(src, dst, gw_src, gw_dst, link_list, symmetrical);
107 }
108 std::vector<kernel::routing::NetPoint*> NetZone::getVertices()
109 {
110   return pimpl_->get_vertices();
111 }
112 } // namespace s4u
113 } // namespace simgrid
114
115 /* **************************** Public C interface *************************** */
116
117 sg_netzone_t sg_zone_get_root()
118 {
119   return simgrid::s4u::Engine::get_instance()->get_netzone_root();
120 }
121
122 const char* sg_zone_get_name(sg_netzone_t netzone)
123 {
124   return netzone->get_cname();
125 }
126
127 sg_netzone_t sg_zone_get_by_name(const char* name)
128 {
129   return simgrid::s4u::Engine::get_instance()->netzone_by_name_or_null(name);
130 }
131
132 void sg_zone_get_sons(sg_netzone_t netzone, xbt_dict_t whereto)
133 {
134   for (auto const& elem : netzone->get_children()) {
135     xbt_dict_set(whereto, elem->get_cname(), static_cast<void*>(elem), nullptr);
136   }
137 }
138
139 const char* sg_zone_get_property_value(sg_netzone_t netzone, const char* name)
140 {
141   return netzone->get_property(name);
142 }
143
144 void sg_zone_set_property_value(sg_netzone_t netzone, const char* name, char* value)
145 {
146   netzone->set_property(name, value);
147 }
148
149 void sg_zone_get_hosts(sg_netzone_t netzone, xbt_dynar_t whereto)
150 {
151   /* converts vector to dynar */
152   std::vector<simgrid::s4u::Host*> hosts = netzone->get_all_hosts();
153   for (auto const& host : hosts)
154     xbt_dynar_push(whereto, &host);
155 }