Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move fields from Exec to ExecImpl.
[simgrid.git] / src / kernel / activity / ExecImpl.hpp
1 /* Copyright (c) 2007-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 #ifndef SIMGRID_KERNEL_ACTIVITY_EXEC_HPP
7 #define SIMGRID_KERNEL_ACTIVITY_EXEC_HPP
8
9 #include "simgrid/s4u/Exec.hpp"
10 #include "src/kernel/activity/ActivityImpl.hpp"
11 #include "src/kernel/context/Context.hpp"
12 #include "surf/surf.hpp"
13
14 namespace simgrid {
15 namespace kernel {
16 namespace activity {
17
18 class XBT_PUBLIC ExecImpl : public ActivityImpl_T<ExecImpl> {
19   std::unique_ptr<resource::Action, std::function<void(resource::Action*)>> timeout_detector_{
20       nullptr, [](resource::Action* a) { a->unref(); }};
21   actor::ActorImpl* actor_            = nullptr;
22   double sharing_penalty_             = 1.0;
23   double bound_                       = 0.0;
24   double start_time_                  = -1.0;
25   double finish_time_                 = -1.0;
26   std::vector<s4u::Host*> hosts_;
27   std::vector<double> flops_amounts_;
28   std::vector<double> bytes_amounts_;
29   s4u::Exec* piface_;
30
31 public:
32   ExecImpl();
33   s4u::Exec* get_iface() { return piface_; }
34
35   ExecImpl& set_timeout(double timeout) override;
36   ExecImpl& set_bound(double bound);
37   ExecImpl& set_sharing_penalty(double sharing_penalty);
38
39   double get_start_time() const { return start_time_; }
40   double get_finish_time() const { return finish_time_; }
41
42   ExecImpl& set_flops_amount(double flop_amount);
43   ExecImpl& set_host(s4u::Host* host);
44   s4u::Host* get_host() const { return hosts_.front(); }
45   const std::vector<s4u::Host*>& get_hosts() const { return hosts_; }
46
47   ExecImpl& set_flops_amounts(const std::vector<double>& flops_amounts);
48   ExecImpl& set_bytes_amounts(const std::vector<double>& bytes_amounts);
49   ExecImpl& set_hosts(const std::vector<s4u::Host*>& hosts);
50
51   unsigned int get_host_number() const { return hosts_.size(); }
52   double get_seq_remaining_ratio();
53   double get_par_remaining_ratio();
54   virtual ActivityImpl* migrate(s4u::Host* to);
55
56   ExecImpl* start();
57   void post() override;
58   void finish() override;
59
60   static void wait_any_for(actor::ActorImpl* issuer, const std::vector<ExecImpl*>& execs, double timeout);
61
62   static xbt::signal<void(ExecImpl const&, s4u::Host*)> on_migration;
63 };
64 } // namespace activity
65 } // namespace kernel
66 } // namespace simgrid
67 #endif