Logo AND Algorithmique Numérique Distribuée

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