Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: make more fields private
[simgrid.git] / include / simgrid / s4u / Exec.hpp
1 /* Copyright (c) 2017-2019. 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_S4U_EXEC_HPP
7 #define SIMGRID_S4U_EXEC_HPP
8
9 #include <simgrid/forward.h>
10 #include <simgrid/s4u/Activity.hpp>
11 #include <xbt/ex.h>
12
13 #include <atomic>
14
15 namespace simgrid {
16 namespace s4u {
17
18 /** Computation Activity, representing the asynchronous executions.
19  *
20  * They are generated from this_actor::exec_init() or Host::execute(), and can be used to model pools of threads or
21  * similar mechanisms.
22  */
23 class XBT_PUBLIC Exec : public Activity {
24   std::string name_             = "";
25   double priority_              = 1.0;
26   double bound_                 = 0.0;
27   double timeout_               = 0.0;
28   std::string tracing_category_ = "";
29   std::atomic_int_fast32_t refcount_{0};
30   Host* host_ = nullptr;
31
32 protected:
33   Exec();
34   virtual ~Exec() = default;
35
36 public:
37 #ifndef DOXYGEN
38   Exec(Exec const&) = delete;
39   Exec& operator=(Exec const&) = delete;
40 #endif
41
42   friend ExecSeq;
43   friend ExecPar;
44   friend XBT_PUBLIC void intrusive_ptr_release(Exec* e);
45   friend XBT_PUBLIC void intrusive_ptr_add_ref(Exec* e);
46   static xbt::signal<void(Actor const&)> on_start;
47   static xbt::signal<void(Actor const&)> on_completion;
48
49   virtual Exec* start() override          = 0;
50   virtual double get_remaining_ratio()    = 0;
51   virtual ExecPtr set_host(Host* host)    = 0;
52
53   Exec* wait() override;
54   Exec* wait_for(double timeout) override;
55   bool test() override;
56
57   ExecPtr set_bound(double bound);
58   ExecPtr set_name(const std::string& name);
59   ExecPtr set_priority(double priority);
60   ExecPtr set_tracing_category(const std::string& category);
61   ExecPtr set_timeout(double timeout);
62   Exec* cancel() override;
63
64   XBT_ATTRIB_DEPRECATED_v324("Please use Exec::wait_for()") void wait(double t) override { wait_for(t); }
65 };
66
67 class XBT_PUBLIC ExecSeq : public Exec {
68   double flops_amount_ = 0.0;
69
70   explicit ExecSeq(sg_host_t host, double flops_amount);
71
72 public:
73   friend XBT_PUBLIC ExecPtr this_actor::exec_init(double flops_amount);
74
75   ~ExecSeq() = default;
76
77   Exec* start() override;
78
79   ExecPtr set_host(Host* host) override;
80   Host* get_host();
81
82   double get_remaining() override;
83   double get_remaining_ratio() override;
84 };
85
86 class XBT_PUBLIC ExecPar : public Exec {
87   std::vector<s4u::Host*> hosts_;
88   std::vector<double> flops_amounts_;
89   std::vector<double> bytes_amounts_;
90   explicit ExecPar(const std::vector<s4u::Host*>& hosts, const std::vector<double>& flops_amounts,
91                    const std::vector<double>& bytes_amounts);
92   ExecPtr set_host(Host* host) override { return this; }
93
94 public:
95   ~ExecPar() = default;
96   friend XBT_PUBLIC ExecPtr this_actor::exec_init(const std::vector<s4u::Host*>& hosts,
97                                                   const std::vector<double>& flops_amounts,
98                                                   const std::vector<double>& bytes_amounts);
99   double get_remaining() override;
100   double get_remaining_ratio() override;
101   Exec* start() override;
102 };
103
104 } // namespace s4u
105 } // namespace simgrid
106
107 #endif /* SIMGRID_S4U_EXEC_HPP */