Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8c08594ae681cba6322bf72f7a1628059c8686ec
[simgrid.git] / include / simgrid / s4u / Activity.hpp
1 /* Copyright (c) 2006-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_ACTIVITY_HPP
7 #define SIMGRID_S4U_ACTIVITY_HPP
8
9 #include <simgrid/forward.h>
10 #include <xbt/signal.hpp>
11
12 namespace simgrid {
13 namespace s4u {
14
15 /** @brief Activities
16  *
17  * This class is the ancestor of every activities that an actor can undertake.
18  * That is, activities are all the things that do take time to the actor in the simulated world.
19  *
20  * They are somewhat linked but not identical to simgrid::kernel::resource::Action,
21  * that are stuff occurring on a resource:
22  *
23  * - A sequential execution activity encompasses 2 actions: one for the exec itself,
24  *   and a time-limited sleep used as timeout detector.
25  * - A point-to-point communication activity encompasses 3 actions: one for the comm itself
26  *   (which spans on all links of the path), and one infinite sleep used as failure detector
27  *   on both sender and receiver hosts.
28  * - Synchronization activities may possibly be connected to no action.
29  */
30 class XBT_PUBLIC Activity {
31   friend simgrid::s4u::Comm;
32   friend XBT_PUBLIC void intrusive_ptr_release(Comm * c);
33   friend XBT_PUBLIC void intrusive_ptr_add_ref(Comm * c);
34   friend simgrid::s4u::Exec;
35   friend XBT_PUBLIC void intrusive_ptr_release(Exec * e);
36   friend XBT_PUBLIC void intrusive_ptr_add_ref(Exec * e);
37   friend simgrid::s4u::Io;
38   friend XBT_PUBLIC void intrusive_ptr_release(Io* i);
39   friend XBT_PUBLIC void intrusive_ptr_add_ref(Io* i);
40
41 protected:
42   Activity()  = default;
43   virtual ~Activity() = default;
44
45 public:
46   Activity(Activity const&) = delete;
47   Activity& operator=(Activity const&) = delete;
48
49   enum class State { INITED = 0, STARTED, CANCELED, ERRORED, FINISHED };
50
51   /** Starts a previously created activity.
52    *
53    * This function is optional: you can call wait() even if you didn't call start()
54    */
55   virtual Activity* start() = 0;
56   /** Tests whether the given activity is terminated yet. This is a pure function. */
57   //virtual bool test()=0;
58   /** Blocks until the activity is terminated */
59   virtual Activity* wait() = 0;
60   /** Blocks until the activity is terminated, or until the timeout is elapsed
61    *  Raises: timeout exception.*/
62   virtual Activity* wait(double timeout) = 0;
63   /** Cancel that activity */
64   virtual Activity* cancel() = 0;
65   /** Retrieve the current state of the activity */
66   Activity::State get_state() { return state_; }
67
68   /** Get the remaining amount of work that this Activity entails. When it's 0, it's done. */
69   virtual double get_remaining();
70
71   /** Set the [remaining] amount of work that this Activity will entail
72    *
73    * It is forbidden to change the amount of work once the Activity is started */
74   Activity* set_remaining(double remains);
75
76   /** Put some user data onto the Activity */
77   Activity* set_user_data(void* data)
78   {
79     user_data_ = data;
80     return this;
81   }
82   /** Retrieve the user data of the Activity */
83   void* get_user_data() { return user_data_; }
84
85   /** @deprecated See Activity::get_state()*/
86   XBT_ATTRIB_DEPRECATED_v323("Please use Activity::get_state()") Activity::State getState() { return state_; }
87   /** @deprecated See Activity::get_remaining() */
88   XBT_ATTRIB_DEPRECATED_v323("Please use Activity::get_remaining()") double getRemains() { return get_remaining(); }
89   /** @deprecated See Activity::set_remaining() */
90   XBT_ATTRIB_DEPRECATED_v323("Please use Activity::set_remaining()") Activity* setRemains(double remains)
91   {
92     return set_remaining(remains);
93   }
94   /** @deprecated See Activity::set_user_data() */
95   XBT_ATTRIB_DEPRECATED_v323("Please use Activity::set_user_data()") Activity* setUserData(void* data)
96   {
97     return set_user_data(data);
98   }
99   /** @deprecated See Activity::get_user_data() */
100   XBT_ATTRIB_DEPRECATED_v323("Please use Activity::get_user_data()") void* getUserData() { return user_data_; }
101
102 private:
103   simgrid::kernel::activity::ActivityImplPtr pimpl_ = nullptr;
104   Activity::State state_                            = Activity::State::INITED;
105   double remains_                                   = 0;
106   void* user_data_                                  = nullptr;
107 }; // class
108
109 }}; // Namespace simgrid::s4u
110
111 #endif /* SIMGRID_S4U_ACTIVITY_HPP */