Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
18f00283e90d330f4326dfd89b78ccc1c46472ef
[simgrid.git] / include / simgrid / s4u / Exec.hpp
1 /* Copyright (c) 2017-2018. 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
12 #include <atomic>
13
14 namespace simgrid {
15 namespace s4u {
16
17 /** Computation #Activity, representing the asynchronous disk access.
18  *
19  * They are generated from simgrid::s4u::this_actor::exec_init() or simgrid::s4u::Host::execute().
20  */
21
22 class XBT_PUBLIC Exec : public Activity {
23   Exec() : Activity() {}
24 public:
25   friend XBT_PUBLIC void intrusive_ptr_release(simgrid::s4u::Exec * e);
26   friend XBT_PUBLIC void intrusive_ptr_add_ref(simgrid::s4u::Exec * e);
27   friend XBT_PUBLIC ExecPtr this_actor::exec_init(double flops_amount);
28
29   ~Exec() = default;
30
31   static simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> on_start;
32   static simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> on_completion;
33
34   Activity* start() override;
35   Activity* wait() override;
36   Activity* wait_for(double timeout) override;
37   Activity* cancel() override;
38   bool test() override;
39
40   ExecPtr set_priority(double priority);
41   ExecPtr set_bound(double bound);
42   ExecPtr set_host(Host* host);
43   ExecPtr set_name(std::string name);
44   ExecPtr set_tracing_category(std::string category);
45   Host* get_host();
46
47   double get_remaining() override;
48   double get_remaining_ratio();
49
50 #ifndef DOXYGEN
51   //////////////// Deprecated functions
52   XBT_ATTRIB_DEPRECATED_v324("Please use Exec::wait_for()") void wait(double t) override { wait_for(t); }
53   XBT_ATTRIB_DEPRECATED_v323("Please use Exec::set_priority()") ExecPtr setPriority(double priority)
54   {
55     return set_priority(priority);
56   }
57   XBT_ATTRIB_DEPRECATED_v323("Please use Exec::set_bound()") ExecPtr setBound(double bound) { return set_bound(bound); }
58   XBT_ATTRIB_DEPRECATED_v323("Please use Exec::set_host()") ExecPtr setHost(Host* host) { return set_host(host); }
59   XBT_ATTRIB_DEPRECATED_v323("Please use Exec::get_host()") Host* getHost() { return get_host(); }
60   XBT_ATTRIB_DEPRECATED_v323("Please use Exec::get_remaining_ratio()") double getRemainingRatio()
61   {
62     return get_remaining_ratio();
63   }
64 #endif
65
66 private:
67   Host* host_                   = nullptr;
68   double flops_amount_          = 0.0;
69   double priority_              = 1.0;
70   double bound_                 = 0.0;
71   std::string name_             = "";
72   std::string tracing_category_ = "";
73   std::atomic_int_fast32_t refcount_{0};
74 }; // class
75 }
76 }; // Namespace simgrid::s4u
77
78 #endif /* SIMGRID_S4U_EXEC_HPP */