Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
setters can be used in the STARTING state too
[simgrid.git] / src / s4u / s4u_Exec.cpp
1 /* Copyright (c) 2006-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 "simgrid/Exception.hpp"
7 #include "simgrid/exec.h"
8 #include "simgrid/s4u/Actor.hpp"
9 #include "simgrid/s4u/Exec.hpp"
10 #include "src/kernel/activity/ExecImpl.hpp"
11 #include "xbt/log.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_exec, s4u_activity, "S4U asynchronous executions");
14
15 namespace simgrid {
16 namespace s4u {
17 xbt::signal<void(Exec const&)> Exec::on_start;
18 xbt::signal<void(Exec const&)> Exec::on_completion;
19
20 Exec::Exec(kernel::activity::ExecImplPtr pimpl)
21 {
22   pimpl_ = pimpl;
23 }
24
25 ExecPtr Exec::init()
26 {
27   auto pimpl = kernel::activity::ExecImplPtr(new kernel::activity::ExecImpl());
28   return ExecPtr(pimpl->get_iface());
29 }
30
31 Exec* Exec::wait()
32 {
33   return this->wait_for(-1);
34 }
35
36 Exec* Exec::wait_for(double timeout)
37 {
38   if (state_ == State::INITED)
39     vetoable_start();
40
41   kernel::actor::ActorImpl* issuer = Actor::self()->get_impl();
42   kernel::actor::simcall_blocking<void>([this, issuer, timeout] { this->get_impl()->wait_for(issuer, timeout); });
43   state_ = State::FINISHED;
44   on_completion(*this);
45   this->release_dependencies();
46   return this;
47 }
48
49 int Exec::wait_any_for(std::vector<ExecPtr>* execs, double timeout)
50 {
51   std::vector<kernel::activity::ExecImpl*> rexecs(execs->size());
52   std::transform(begin(*execs), end(*execs), begin(rexecs),
53                  [](const ExecPtr& exec) { return static_cast<kernel::activity::ExecImpl*>(exec->pimpl_.get()); });
54
55   int changed_pos = simcall_execution_waitany_for(rexecs.data(), rexecs.size(), timeout);
56   if (changed_pos != -1) {
57     on_completion(*(execs->at(changed_pos)));
58     execs->at(changed_pos)->release_dependencies();
59   }
60   return changed_pos;
61 }
62
63 Exec* Exec::cancel()
64 {
65   kernel::actor::simcall([this] { boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->cancel(); });
66   state_ = State::CANCELED;
67   return this;
68 }
69
70 /** @brief change the execution bound
71  * This means changing the maximal amount of flops per second that it may consume, regardless of what the host may
72  * deliver. Currently, this cannot be changed once the exec started.
73  */
74 ExecPtr Exec::set_bound(double bound)
75 {
76   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
77       "Cannot change the bound of an exec after its start");
78   bound_ = bound;
79   return this;
80 }
81 ExecPtr Exec::set_timeout(double timeout) // XBT_ATTRIB_DEPRECATED_v329
82 {
83   xbt_assert(state_ == State::INITED|| state_ == State::STARTING,
84       "Cannot change the bound of an exec after its start");
85   timeout_ = timeout;
86   return this;
87 }
88
89 ExecPtr Exec::set_flops_amount(double flops_amount)
90 {
91   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
92       "Cannot change the flop_amount of an exec after its start");
93   flops_amounts_.assign(1, flops_amount);
94   Activity::set_remaining(flops_amounts_.front());
95   return this;
96 }
97
98 ExecPtr Exec::set_flops_amounts(const std::vector<double>& flops_amounts)
99 {
100   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
101       "Cannot change the flops_amounts of an exec after its start");
102   flops_amounts_ = flops_amounts;
103   parallel_      = true;
104   return this;
105 }
106
107 ExecPtr Exec::set_bytes_amounts(const std::vector<double>& bytes_amounts)
108 {
109   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
110       "Cannot change the bytes_amounts of an exec after its start");
111   bytes_amounts_ = bytes_amounts;
112   parallel_      = true;
113   return this;
114 }
115
116 /** @brief Retrieve the host on which this activity takes place.
117  *  If it runs on more than one host, only the first host is returned.
118  */
119 Host* Exec::get_host() const
120 {
121   return static_cast<kernel::activity::ExecImpl*>(pimpl_.get())->get_host();
122 }
123 unsigned int Exec::get_host_number() const
124 {
125   return static_cast<kernel::activity::ExecImpl*>(pimpl_.get())->get_host_number();
126 }
127 double Exec::get_cost() const
128 {
129   return (pimpl_->surf_action_ == nullptr) ? -1 : pimpl_->surf_action_->get_cost();
130 }
131
132 /** @brief  Change the execution priority, don't you think?
133  *
134  * An execution with twice the priority will get twice the amount of flops when the resource is shared.
135  * The default priority is 1.
136  *
137  * Currently, this cannot be changed once the exec started. */
138 ExecPtr Exec::set_priority(double priority)
139 {
140   xbt_assert(state_ == State::INITED, "Cannot change the priority of an exec after its start");
141   priority_ = priority;
142   return this;
143 }
144
145 /** @brief Change the host on which this activity takes place.
146  *
147  * The activity cannot be terminated already (but it may be started). */
148 ExecPtr Exec::set_host(Host* host)
149 {
150   xbt_assert(state_ == State::INITED || state_ == State::STARTING || state_ == State::STARTED,
151              "Cannot change the host of an exec once it's done (state: %d)", (int)state_);
152   hosts_.assign(1, host);
153
154   if (state_ == State::STARTED)
155     boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->migrate(host);
156
157   boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->set_host(host);
158
159   if (state_ == State::STARTING)
160   // Setting the host may allow to start the activity, let's try
161     vetoable_start();
162
163   return this;
164 }
165
166 ExecPtr Exec::set_hosts(const std::vector<Host*>& hosts)
167 {
168   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
169       "Cannot change the hosts of an exec once it's done (state: %d)", (int)state_);
170
171   hosts_    = hosts;
172   parallel_ = true;
173
174   // Setting the host may allow to start the activity, let's try
175   if (state_ == State::STARTING)
176      vetoable_start();
177
178   return this;
179 }
180
181 ///////////// SEQUENTIAL EXECUTIONS ////////
182 Exec* Exec::start()
183 {
184   if (is_parallel())
185     kernel::actor::simcall([this] {
186       (*boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_))
187           .set_hosts(hosts_)
188           .set_timeout(timeout_)
189           .set_flops_amounts(flops_amounts_)
190           .set_bytes_amounts(bytes_amounts_)
191           .start();
192     });
193   else
194     kernel::actor::simcall([this] {
195       (*boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_))
196           .set_name(get_name())
197           .set_tracing_category(get_tracing_category())
198           .set_sharing_penalty(1. / priority_)
199           .set_bound(bound_)
200           .set_flops_amount(flops_amounts_.front())
201           .start();
202     });
203
204   if (suspended_)
205     pimpl_->suspend();
206
207   state_ = State::STARTED;
208   start_time_ = pimpl_->surf_action_->get_start_time();
209   on_start(*this);
210   return this;
211 }
212
213 double Exec::get_remaining() const
214 {
215   if (is_parallel()) {
216     XBT_WARN("Calling get_remaining() on a parallel execution is not allowed. Call get_remaining_ratio() instead.");
217     return get_remaining_ratio();
218   } else
219     return kernel::actor::simcall(
220         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_remaining(); });
221 }
222
223 /** @brief Returns the ratio of elements that are still to do
224  *
225  * The returned value is between 0 (completely done) and 1 (nothing done yet).
226  */
227 double Exec::get_remaining_ratio() const
228 {
229   if (is_parallel())
230     return kernel::actor::simcall(
231         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_par_remaining_ratio(); });
232   else
233     return kernel::actor::simcall(
234         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_seq_remaining_ratio(); });
235 }
236
237 } // namespace s4u
238 } // namespace simgrid
239 /* **************************** Public C interface *************************** */
240 void sg_exec_set_bound(sg_exec_t exec, double bound)
241 {
242   exec->set_bound(bound);
243 }
244
245 const char* sg_exec_get_name(const_sg_exec_t exec)
246 {
247   return exec->get_cname();
248 }
249
250 void sg_exec_set_name(sg_exec_t exec, const char* name)
251 {
252   exec->set_name(name);
253 }
254
255 void sg_exec_set_host(sg_exec_t exec, sg_host_t new_host)
256 {
257   exec->set_host(new_host);
258 }
259
260 double sg_exec_get_remaining(const_sg_exec_t exec)
261 {
262   return exec->get_remaining();
263 }
264
265 double sg_exec_get_remaining_ratio(const_sg_exec_t exec)
266 {
267   return exec->get_remaining_ratio();
268 }
269
270 void sg_exec_start(sg_exec_t exec)
271 {
272   exec->start();
273 }
274
275 void sg_exec_cancel(sg_exec_t exec)
276 {
277   exec->cancel();
278   exec->unref();
279 }
280
281 int sg_exec_test(sg_exec_t exec)
282 {
283   bool finished = exec->test();
284   if (finished)
285     exec->unref();
286   return finished;
287 }
288
289 sg_error_t sg_exec_wait(sg_exec_t exec)
290 {
291   sg_error_t status = SG_OK;
292
293   simgrid::s4u::ExecPtr s4u_exec(exec, false);
294   try {
295     s4u_exec->wait_for(-1);
296   } catch (const simgrid::TimeoutException&) {
297     status = SG_ERROR_TIMEOUT;
298   } catch (const simgrid::CancelException&) {
299     status = SG_ERROR_CANCELED;
300   } catch (const simgrid::HostFailureException&) {
301     status = SG_ERROR_HOST;
302   }
303   return status;
304 }
305
306 sg_error_t sg_exec_wait_for(sg_exec_t exec, double timeout)
307 {
308   sg_error_t status = SG_OK;
309
310   simgrid::s4u::ExecPtr s4u_exec(exec, false);
311   try {
312     s4u_exec->wait_for(timeout);
313   } catch (const simgrid::TimeoutException&) {
314     status = SG_ERROR_TIMEOUT;
315   } catch (const simgrid::CancelException&) {
316     status = SG_ERROR_CANCELED;
317   } catch (const simgrid::HostFailureException&) {
318     status = SG_ERROR_HOST;
319   }
320   return status;
321 }
322
323 int sg_exec_wait_any(sg_exec_t* execs, size_t count)
324 {
325   return sg_exec_wait_any_for(execs, count, -1);
326 }
327
328 int sg_exec_wait_any_for(sg_exec_t* execs, size_t count, double timeout)
329 {
330   std::vector<simgrid::s4u::ExecPtr> s4u_execs;
331   for (unsigned int i = 0; i < count; i++)
332     s4u_execs.emplace_back(execs[i], false);
333
334   int pos = simgrid::s4u::Exec::wait_any_for(&s4u_execs, timeout);
335   for (unsigned i = 0; i < count; i++) {
336     if (pos != -1 && static_cast<unsigned>(pos) != i)
337       s4u_execs[i]->add_ref();
338   }
339   return pos;
340 }