Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Concatenate nested namespaces (sonar).
[simgrid.git] / src / kernel / resource / StandardLinkImpl.cpp
1 /* Copyright (c) 2013-2022. 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/s4u/Engine.hpp>
7
8 #include "src/kernel/EngineImpl.hpp"
9 #include "src/kernel/resource/StandardLinkImpl.hpp"
10 #include <numeric>
11
12 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_network);
13
14 /*********
15  * Model *
16  *********/
17
18 namespace simgrid::kernel::resource {
19
20 StandardLinkImpl::StandardLinkImpl(const std::string& name) : LinkImpl(name), piface_(this)
21 {
22   if (name != "__loopback__")
23     xbt_assert(not s4u::Link::by_name_or_null(name), "Link '%s' declared several times in the platform.", name.c_str());
24
25   XBT_DEBUG("Create link '%s'", name.c_str());
26 }
27
28 void StandardLinkImpl::Deleter::operator()(resource::StandardLinkImpl* link) const
29 {
30   link->destroy();
31 }
32
33 /** @brief Fire the required callbacks and destroy the object
34  *
35  * Don't delete directly a Link, call l->destroy() instead.
36  */
37 void StandardLinkImpl::destroy()
38 {
39   s4u::Link::on_destruction(piface_);
40   delete this;
41 }
42
43 constexpr kernel::lmm::Constraint::SharingPolicy to_maxmin_policy(s4u::Link::SharingPolicy policy)
44 {
45   switch (policy) {
46     case s4u::Link::SharingPolicy::NONLINEAR:
47       return kernel::lmm::Constraint::SharingPolicy::NONLINEAR;
48     case s4u::Link::SharingPolicy::FATPIPE:
49       return kernel::lmm::Constraint::SharingPolicy::FATPIPE;
50     default:
51       return kernel::lmm::Constraint::SharingPolicy::SHARED;
52   }
53 }
54
55 void StandardLinkImpl::set_sharing_policy(s4u::Link::SharingPolicy policy, const s4u::NonLinearResourceCb& cb)
56 {
57   get_constraint()->set_sharing_policy(to_maxmin_policy(policy), cb);
58   sharing_policy_ = policy;
59 }
60
61 void StandardLinkImpl::latency_check(double latency) const
62 {
63   static double last_warned_latency = sg_surf_precision;
64   if (latency != 0.0 && latency < last_warned_latency) {
65     XBT_WARN("Latency for link %s is smaller than surf/precision (%g < %g)."
66              " For more accuracy, consider setting \"--cfg=surf/precision:%g\".",
67              get_cname(), latency, sg_surf_precision, latency);
68     last_warned_latency = latency;
69   }
70 }
71
72 StandardLinkImpl* StandardLinkImpl::set_englobing_zone(routing::NetZoneImpl* englobing_zone)
73 {
74   englobing_zone_ = englobing_zone;
75   return this;
76 }
77
78 void StandardLinkImpl::turn_on()
79 {
80   if (not is_on()) {
81     Resource::turn_on();
82     s4u::Link::on_state_change(piface_);
83   }
84 }
85
86 void StandardLinkImpl::turn_off()
87 {
88   if (is_on()) {
89     Resource::turn_off();
90     s4u::Link::on_state_change(piface_);
91
92     const kernel::lmm::Element* elem = nullptr;
93     double now                       = EngineImpl::get_clock();
94     while (const auto* var = get_constraint()->get_variable(&elem)) {
95       Action* action = var->get_id();
96       if (action->get_state() == Action::State::INITED || action->get_state() == Action::State::STARTED) {
97         action->set_finish_time(now);
98         action->set_state(Action::State::FAILED);
99       }
100     }
101   }
102 }
103
104 void StandardLinkImpl::seal()
105 {
106   if (is_sealed())
107     return;
108
109   xbt_assert(this->get_model(), "Cannot seal Link(%s) without setting the Network model first", this->get_cname());
110   Resource::seal();
111 }
112
113 void StandardLinkImpl::on_bandwidth_change() const
114 {
115   s4u::Link::on_bandwidth_change(piface_);
116 }
117
118 void StandardLinkImpl::set_bandwidth_profile(profile::Profile* profile)
119 {
120   if (profile) {
121     xbt_assert(bandwidth_.event == nullptr, "Cannot set a second bandwidth profile to Link %s", get_cname());
122     bandwidth_.event = profile->schedule(&profile::future_evt_set, this);
123   }
124 }
125
126 void StandardLinkImpl::set_latency_profile(profile::Profile* profile)
127 {
128   if (profile) {
129     xbt_assert(latency_.event == nullptr, "Cannot set a second latency profile to Link %s", get_cname());
130     latency_.event = profile->schedule(&profile::future_evt_set, this);
131   }
132 }
133
134 void StandardLinkImpl::set_concurrency_limit(int limit) const
135 {
136   if (limit != -1) {
137     get_constraint()->reset_concurrency_maximum();
138   }
139   get_constraint()->set_concurrency_limit(limit);
140 }
141
142 } // namespace simgrid::kernel::resource