Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement a second veto on start. Activity must be assigned to a resource
[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()
21 {
22   pimpl_ = kernel::activity::ExecImplPtr(new kernel::activity::ExecImpl());
23 }
24
25 ExecPtr Exec::init()
26 {
27   return ExecPtr(new Exec());
28 }
29
30 Exec* Exec::wait()
31 {
32   return this->wait_for(-1);
33 }
34
35 Exec* Exec::wait_for(double timeout)
36 {
37   if (state_ == State::INITED)
38     vetoable_start();
39
40   kernel::actor::ActorImpl* issuer = Actor::self()->get_impl();
41   kernel::actor::simcall_blocking<void>([this, issuer, timeout] { this->get_impl()->wait_for(issuer, timeout); });
42   state_ = State::FINISHED;
43   on_completion(*this);
44   this->release_dependencies();
45   return this;
46 }
47
48 int Exec::wait_any_for(std::vector<ExecPtr>* execs, double timeout)
49 {
50   std::vector<kernel::activity::ExecImpl*> rexecs(execs->size());
51   std::transform(begin(*execs), end(*execs), begin(rexecs),
52                  [](const ExecPtr& exec) { return static_cast<kernel::activity::ExecImpl*>(exec->pimpl_.get()); });
53
54   int changed_pos = simcall_execution_waitany_for(rexecs.data(), rexecs.size(), timeout);
55   if (changed_pos != -1)
56     execs->at(changed_pos)->release_dependencies();
57   return changed_pos;
58 }
59
60 Exec* Exec::cancel()
61 {
62   kernel::actor::simcall([this] { boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->cancel(); });
63   state_ = State::CANCELED;
64   return this;
65 }
66
67 /** @brief change the execution bound
68  * This means changing the maximal amount of flops per second that it may consume, regardless of what the host may
69  * deliver. Currently, this cannot be changed once the exec started.
70  */
71 ExecPtr Exec::set_bound(double bound)
72 {
73   xbt_assert(state_ == State::INITED, "Cannot change the bound of an exec after its start");
74   bound_ = bound;
75   return this;
76 }
77 ExecPtr Exec::set_timeout(double timeout) // XBT_ATTRIB_DEPRECATED_v329
78 {
79   xbt_assert(state_ == State::INITED, "Cannot change the bound of an exec after its start");
80   timeout_ = timeout;
81   return this;
82 }
83
84 ExecPtr Exec::set_flops_amount(double flops_amount)
85 {
86   xbt_assert(state_ == State::INITED, "Cannot change the flop_amount of an exec after its start");
87   flops_amounts_.assign(1, flops_amount);
88   Activity::set_remaining(flops_amounts_.front());
89   return this;
90 }
91
92 ExecPtr Exec::set_flops_amounts(const std::vector<double>& flops_amounts)
93 {
94   xbt_assert(state_ == State::INITED, "Cannot change the flops_amounts of an exec after its start");
95   flops_amounts_ = flops_amounts;
96   parallel_      = true;
97   return this;
98 }
99
100 ExecPtr Exec::set_bytes_amounts(const std::vector<double>& bytes_amounts)
101 {
102   xbt_assert(state_ == State::INITED, "Cannot change the bytes_amounts of an exec after its start");
103   bytes_amounts_ = bytes_amounts;
104   parallel_      = true;
105   return this;
106 }
107
108 /** @brief Retrieve the host on which this activity takes place.
109  *  If it runs on more than one host, only the first host is returned.
110  */
111 Host* Exec::get_host() const
112 {
113   return static_cast<kernel::activity::ExecImpl*>(pimpl_.get())->get_host();
114 }
115 unsigned int Exec::get_host_number() const
116 {
117   return static_cast<kernel::activity::ExecImpl*>(pimpl_.get())->get_host_number();
118 }
119 double Exec::get_start_time() const
120 {
121   return (pimpl_->surf_action_ == nullptr) ? -1 : pimpl_->surf_action_->get_start_time();
122 }
123 double Exec::get_finish_time() const
124 {
125   return (pimpl_->surf_action_ == nullptr) ? -1 : pimpl_->surf_action_->get_finish_time();
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   on_start(*this);
209   return this;
210 }
211
212 double Exec::get_remaining() const
213 {
214   if (is_parallel()) {
215     XBT_WARN("Calling get_remaining() on a parallel execution is not allowed. Call get_remaining_ratio() instead.");
216     return get_remaining_ratio();
217   } else
218     return kernel::actor::simcall(
219         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_remaining(); });
220 }
221
222 /** @brief Returns the ratio of elements that are still to do
223  *
224  * The returned value is between 0 (completely done) and 1 (nothing done yet).
225  */
226 double Exec::get_remaining_ratio() const
227 {
228   if (is_parallel())
229     return kernel::actor::simcall(
230         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_par_remaining_ratio(); });
231   else
232     return kernel::actor::simcall(
233         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_seq_remaining_ratio(); });
234 }
235
236 } // namespace s4u
237 } // namespace simgrid
238 /* **************************** Public C interface *************************** */
239 void sg_exec_set_bound(sg_exec_t exec, double bound)
240 {
241   exec->set_bound(bound);
242 }
243
244 const char* sg_exec_get_name(const_sg_exec_t exec)
245 {
246   return exec->get_cname();
247 }
248
249 void sg_exec_set_name(sg_exec_t exec, const char* name)
250 {
251   exec->set_name(name);
252 }
253
254 void sg_exec_set_host(sg_exec_t exec, sg_host_t new_host)
255 {
256   exec->set_host(new_host);
257 }
258
259 double sg_exec_get_remaining(const_sg_exec_t exec)
260 {
261   return exec->get_remaining();
262 }
263
264 double sg_exec_get_remaining_ratio(const_sg_exec_t exec)
265 {
266   return exec->get_remaining_ratio();
267 }
268
269 void sg_exec_start(sg_exec_t exec)
270 {
271   exec->start();
272 }
273
274 void sg_exec_cancel(sg_exec_t exec)
275 {
276   exec->cancel();
277   exec->unref();
278 }
279
280 int sg_exec_test(sg_exec_t exec)
281 {
282   bool finished = exec->test();
283   if (finished)
284     exec->unref();
285   return finished;
286 }
287
288 sg_error_t sg_exec_wait(sg_exec_t exec)
289 {
290   sg_error_t status = SG_OK;
291
292   simgrid::s4u::ExecPtr s4u_exec(exec, false);
293   try {
294     s4u_exec->wait_for(-1);
295   } catch (const simgrid::TimeoutException&) {
296     status = SG_ERROR_TIMEOUT;
297   } catch (const simgrid::CancelException&) {
298     status = SG_ERROR_CANCELED;
299   } catch (const simgrid::HostFailureException&) {
300     status = SG_ERROR_HOST;
301   }
302   return status;
303 }
304
305 sg_error_t sg_exec_wait_for(sg_exec_t exec, double timeout)
306 {
307   sg_error_t status = SG_OK;
308
309   simgrid::s4u::ExecPtr s4u_exec(exec, false);
310   try {
311     s4u_exec->wait_for(timeout);
312   } catch (const simgrid::TimeoutException&) {
313     status = SG_ERROR_TIMEOUT;
314   } catch (const simgrid::CancelException&) {
315     status = SG_ERROR_CANCELED;
316   } catch (const simgrid::HostFailureException&) {
317     status = SG_ERROR_HOST;
318   }
319   return status;
320 }
321
322 int sg_exec_wait_any(sg_exec_t* execs, size_t count)
323 {
324   return sg_exec_wait_any_for(execs, count, -1);
325 }
326
327 int sg_exec_wait_any_for(sg_exec_t* execs, size_t count, double timeout)
328 {
329   std::vector<simgrid::s4u::ExecPtr> s4u_execs;
330   for (unsigned int i = 0; i < count; i++)
331     s4u_execs.emplace_back(execs[i], false);
332
333   int pos = simgrid::s4u::Exec::wait_any_for(&s4u_execs, timeout);
334   for (unsigned i = 0; i < count; i++) {
335     if (pos != -1 && static_cast<unsigned>(pos) != i)
336       s4u_execs[i]->add_ref();
337   }
338   return pos;
339 }