Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups
[simgrid.git] / src / kernel / activity / ExecImpl.hpp
1 /* Copyright (c) 2007-2017. 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 XBT_PUBLIC_CLASS ExecImpl : public ActivityImpl
17 {
18   ~ExecImpl() override;
19
20 public:
21   explicit ExecImpl(const char* name, sg_host_t host);
22   void suspend() override;
23   void resume() override;
24   void post() override;
25   double remains();
26   double remainingRatio();
27
28   /* The host where the execution takes place. If nullptr, then this is a parallel exec (and only surf
29                   knows the hosts) */
30   sg_host_t host_               = nullptr;
31   surf_action_t surfAction_     = nullptr; /* The Surf execution action encapsulated */
32   surf::Action* timeoutDetector = nullptr;
33   static simgrid::xbt::signal<void(kernel::activity::ExecImplPtr)> onCreation;
34   static simgrid::xbt::signal<void(kernel::activity::ExecImplPtr)> onDestruction;
35 };
36 }
37 }
38 } // namespace simgrid::kernel::activity
39 #endif