Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / kernel / activity / ExecImpl.hpp
1 /* Copyright (c) 2007-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 SIMIX_SYNCHRO_EXEC_HPP
7 #define SIMIX_SYNCHRO_EXEC_HPP
8
9 #include "src/kernel/activity/ActivityImpl.hpp"
10 #include "surf/surf.hpp"
11
12 namespace simgrid {
13 namespace kernel {
14 namespace activity {
15
16 class XBT_PUBLIC ExecImpl : public ActivityImpl {
17   ~ExecImpl() override;
18
19 public:
20   explicit ExecImpl(std::string name, std::string tracing_category, resource::Action* timeout_detector,
21                     s4u::Host* host);
22   void start(double flops_amount, double priority, double bound);
23   void suspend() override;
24   void resume() override;
25   void cancel();
26   void post() override;
27   double get_remaining();
28   double get_remaining_ratio();
29   void set_bound(double bound);
30   void set_priority(double priority);
31   virtual ActivityImpl* migrate(s4u::Host* to);
32
33   /* The host where the execution takes place. nullptr means this is a parallel exec (and only surf knows the hosts) */
34   s4u::Host* host_ = nullptr;
35
36 private:
37   resource::Action* timeout_detector_ = nullptr;
38
39 public:
40   static simgrid::xbt::signal<void(kernel::activity::ExecImplPtr)> on_creation;
41   static simgrid::xbt::signal<void(kernel::activity::ExecImplPtr)> on_completion;
42   static simgrid::xbt::signal<void(kernel::activity::ExecImplPtr)> on_suspended;
43   static simgrid::xbt::signal<void(kernel::activity::ExecImplPtr)> on_resumed;
44   static simgrid::xbt::signal<void(simgrid::kernel::activity::ExecImplPtr, simgrid::s4u::Host*)> on_migration;
45 };
46 }
47 }
48 } // namespace simgrid::kernel::activity
49 #endif