Logo AND Algorithmique Numérique Distribuée

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