Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
moved a line for comprehension
[simgrid.git] / src / s4u / s4u_Link.cpp
1 /* Copyright (c) 2013-2020. 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 <algorithm>
7
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Link.hpp"
10 #include "simgrid/sg_config.hpp"
11 #include "simgrid/simix.hpp"
12 #include "src/kernel/lmm/maxmin.hpp"
13 #include "src/surf/network_interface.hpp"
14 #include "xbt/log.h"
15
16 namespace simgrid {
17
18 template class xbt::Extendable<s4u::Link>;
19
20 namespace s4u {
21
22 xbt::signal<void(Link&)> Link::on_creation;
23 xbt::signal<void(Link const&)> Link::on_destruction;
24 xbt::signal<void(Link const&)> Link::on_state_change;
25 xbt::signal<void(Link const&)> Link::on_bandwidth_change;
26 xbt::signal<void(kernel::resource::NetworkAction&)> Link::on_communicate;
27 xbt::signal<void(kernel::resource::NetworkAction&, kernel::resource::Action::State)>
28     Link::on_communication_state_change;
29
30 Link* Link::by_name(const std::string& name)
31 {
32   return Engine::get_instance()->link_by_name(name);
33 }
34
35 Link* Link::by_name_or_null(const std::string& name)
36 {
37   return Engine::get_instance()->link_by_name_or_null(name);
38 }
39
40 const std::string& Link::get_name() const
41 {
42   return this->pimpl_->get_name();
43 }
44 const char* Link::get_cname() const
45 {
46   return this->pimpl_->get_cname();
47 }
48 bool Link::is_used() const
49 {
50   return this->pimpl_->is_used();
51 }
52
53 double Link::get_latency() const
54 {
55   return this->pimpl_->get_latency();
56 }
57
58 void Link::set_latency(double value)
59 {
60   kernel::actor::simcall([this, value] { pimpl_->set_latency(value); });
61 }
62
63 double Link::get_bandwidth() const
64 {
65   return this->pimpl_->get_bandwidth();
66 }
67
68 void Link::set_bandwidth(double value)
69 {
70   kernel::actor::simcall([this, value] { pimpl_->set_bandwidth(value); });
71 }
72
73 Link::SharingPolicy Link::get_sharing_policy() const
74 {
75   return this->pimpl_->get_sharing_policy();
76 }
77
78 double Link::get_usage() const
79 {
80   return this->pimpl_->get_constraint()->get_usage();
81 }
82
83 void Link::turn_on()
84 {
85   simgrid::kernel::actor::simcall([this]() { this->pimpl_->turn_on(); });
86 }
87 void Link::turn_off()
88 {
89   simgrid::kernel::actor::simcall([this]() { this->pimpl_->turn_off(); });
90 }
91
92 bool Link::is_on() const
93 {
94   return this->pimpl_->is_on();
95 }
96
97 void Link::set_state_profile(kernel::profile::Profile* profile)
98 {
99   simgrid::kernel::actor::simcall([this, profile]() { this->pimpl_->set_state_profile(profile); });
100 }
101 void Link::set_bandwidth_profile(kernel::profile::Profile* profile)
102 {
103   simgrid::kernel::actor::simcall([this, profile]() { this->pimpl_->set_bandwidth_profile(profile); });
104 }
105 void Link::set_latency_profile(kernel::profile::Profile* trace)
106 {
107   simgrid::kernel::actor::simcall([this, trace]() { this->pimpl_->set_latency_profile(trace); });
108 }
109
110 const char* Link::get_property(const std::string& key) const
111 {
112   return this->pimpl_->get_property(key);
113 }
114 void Link::set_property(const std::string& key, const std::string& value)
115 {
116   simgrid::kernel::actor::simcall([this, &key, &value] { this->pimpl_->set_property(key, value); });
117 }
118 } // namespace s4u
119 } // namespace simgrid
120
121 /* **************************** Public C interface *************************** */
122
123 const char* sg_link_name(const_sg_link_t link)
124 {
125   return link->get_cname();
126 }
127 sg_link_t sg_link_by_name(const char* name)
128 {
129   return simgrid::s4u::Link::by_name(name);
130 }
131
132 int sg_link_is_shared(const_sg_link_t link)
133 {
134   return (int)link->get_sharing_policy();
135 }
136 double sg_link_bandwidth(const_sg_link_t link)
137 {
138   return link->get_bandwidth();
139 }
140
141 void sg_link_bandwidth_set(sg_link_t link, double value)
142 {
143   return link->set_bandwidth(value);
144 }
145
146 double sg_link_latency(const_sg_link_t link)
147 {
148   return link->get_latency();
149 }
150 void sg_link_latency_set(sg_link_t link, double value)
151 {
152   return link->set_latency(value);
153 }
154 void* sg_link_data(const_sg_link_t link)
155 {
156   return link->get_data();
157 }
158 void sg_link_data_set(sg_link_t link, void* data)
159 {
160   link->set_data(data);
161 }
162 int sg_link_count()
163 {
164   return simgrid::s4u::Engine::get_instance()->get_link_count();
165 }
166
167 sg_link_t* sg_link_list()
168 {
169   std::vector<simgrid::s4u::Link*> links = simgrid::s4u::Engine::get_instance()->get_all_links();
170
171   sg_link_t* res = xbt_new(sg_link_t, links.size());
172   memcpy(res, links.data(), sizeof(sg_link_t) * links.size());
173
174   return res;
175 }