Logo AND Algorithmique Numérique Distribuée

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