Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9fe8d89d9d147d6aa4033c485429bed2600ba232
[simgrid.git] / src / simix / ActorImpl.hpp
1 /* Copyright (c) 2007-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 SIMIX_ACTORIMPL_H
7 #define SIMIX_ACTORIMPL_H
8
9 #include "simgrid/s4u/Actor.hpp"
10 #include "src/simix/popping_private.hpp"
11 #include "src/surf/PropertyHolder.hpp"
12 #include <boost/intrusive/list.hpp>
13 #include <list>
14 #include <map>
15
16 struct s_smx_process_exit_fun_t {
17   int_f_pvoid_pvoid_t fun;
18   void *arg;
19 };
20
21 namespace simgrid {
22 namespace kernel {
23 namespace actor {
24
25 class ProcessArg {
26 public:
27   std::string name;
28   std::function<void()> code;
29   void* data            = nullptr;
30   s4u::Host* host       = nullptr;
31   double kill_time      = 0.0;
32   std::shared_ptr<std::map<std::string, std::string>> properties;
33   bool auto_restart     = false;
34   ProcessArg()          = default;
35   explicit ProcessArg(std::string name, std::function<void()> code, void* data, s4u::Host* host, double kill_time,
36                       std::shared_ptr<std::map<std::string, std::string>> properties, bool auto_restart)
37       : name(name)
38       , code(std::move(code))
39       , data(data)
40       , host(host)
41       , kill_time(kill_time)
42       , properties(properties)
43       , auto_restart(auto_restart)
44   {
45   }
46 };
47
48 class ActorImpl : public simgrid::surf::PropertyHolder {
49 public:
50   ActorImpl() : piface_(this) {}
51   ~ActorImpl();
52
53   boost::intrusive::list_member_hook<> host_process_list_hook; /* simgrid::simix::Host::process_list */
54   boost::intrusive::list_member_hook<> smx_destroy_list_hook;  /* simix_global->process_to_destroy */
55   boost::intrusive::list_member_hook<> smx_synchro_hook;       /* {mutex,cond,sem}->sleeping */
56
57   aid_t pid  = 0;
58   aid_t ppid = -1;
59   simgrid::xbt::string name;
60   const simgrid::xbt::string& get_name() const { return name; }
61   const char* get_cname() const { return name.c_str(); }
62   s4u::Host* host       = nullptr; /* the host on which the process is running */
63   smx_context_t context = nullptr; /* the context (uctx/raw/thread) that executes the user function */
64
65   // TODO, pack them
66   std::exception_ptr exception;
67   bool finished     = false;
68   bool blocked      = false;
69   bool suspended    = false;
70   bool auto_restart = false;
71
72   smx_activity_t waiting_synchro = nullptr; /* the current blocking synchro if any */
73   std::list<smx_activity_t> comms;          /* the current non-blocking communication synchros */
74   s_smx_simcall_t simcall;
75   void* userdata = nullptr;                      /* kept for compatibility, it should be replaced with moddata */
76   std::vector<s_smx_process_exit_fun_t> on_exit; /* list of functions executed when the process dies */
77
78   std::function<void()> code;
79   smx_timer_t kill_timer = nullptr;
80
81   /* Refcounting */
82 private:
83   std::atomic_int_fast32_t refcount_{0};
84
85 public:
86   friend void intrusive_ptr_add_ref(ActorImpl* process)
87   {
88     // std::memory_order_relaxed ought to be enough here instead of std::memory_order_seq_cst
89     // But then, we have a threading issue when an actor commits a suicide:
90     //  it seems that in this case, the worker thread kills the last occurrence of the actor
91     //  while usually, the maestro does so. FIXME: we should change how actors suicide
92     process->refcount_.fetch_add(1, std::memory_order_seq_cst);
93   }
94   friend void intrusive_ptr_release(ActorImpl* process)
95   {
96     // inspired from http://www.boost.org/doc/libs/1_55_0/doc/html/atomic/usage_examples.html
97     if (process->refcount_.fetch_sub(1, std::memory_order_release) == 1) {
98       // Make sure that any changes done on other threads before their acquire are committed before our delete
99       // http://stackoverflow.com/questions/27751025/why-is-an-acquire-barrier-needed-before-deleting-the-data-in-an-atomically-refer
100       std::atomic_thread_fence(std::memory_order_acquire);
101       delete process;
102     }
103   }
104
105   /* S4U/implem interfaces */
106 private:
107   simgrid::s4u::Actor piface_; // Our interface is part of ourselves
108 public:
109   simgrid::s4u::ActorPtr iface() { return s4u::ActorPtr(&piface_); }
110   simgrid::s4u::Actor* ciface() { return &piface_; }
111
112   /* Daemon actors are automatically killed when the last non-daemon leaves */
113 private:
114   bool daemon = false;
115 public:
116   void daemonize();
117   bool isDaemon() { return daemon; } /** Whether this actor has been daemonized */
118   bool isSuspended() { return suspended; }
119   simgrid::s4u::Actor* restart();
120   smx_activity_t suspend(ActorImpl* issuer);
121   void resume();
122   smx_activity_t sleep(double duration);
123   void setUserData(void* data) { userdata = data; }
124   void* getUserData() { return userdata; }
125 };
126
127 /* Used to keep the list of actors blocked on a synchro  */
128 typedef boost::intrusive::list<ActorImpl, boost::intrusive::member_hook<ActorImpl, boost::intrusive::list_member_hook<>,
129                                                                         &ActorImpl::smx_synchro_hook>>
130     SynchroList;
131
132 XBT_PUBLIC void create_maestro(std::function<void()> code);
133 }
134 } // namespace kernel
135 } // namespace simgrid
136
137 typedef simgrid::kernel::actor::ActorImpl* smx_actor_t;
138
139 extern "C" {
140
141 XBT_PRIVATE smx_actor_t SIMIX_process_create(const char* name, std::function<void()> code, void* data, sg_host_t host,
142                                              std::map<std::string, std::string>* properties,
143                                              smx_actor_t parent_process);
144
145 XBT_PRIVATE void SIMIX_process_runall();
146 XBT_PRIVATE void SIMIX_process_kill(smx_actor_t process, smx_actor_t issuer);
147 XBT_PRIVATE void SIMIX_process_killall(smx_actor_t issuer);
148 XBT_PRIVATE void SIMIX_process_cleanup(smx_actor_t arg);
149 XBT_PRIVATE void SIMIX_process_empty_trash();
150 XBT_PRIVATE void SIMIX_process_yield(smx_actor_t self);
151 XBT_PRIVATE void SIMIX_process_change_host(smx_actor_t process, sg_host_t dest);
152
153 XBT_PRIVATE void SIMIX_process_auto_restart_set(smx_actor_t process, int auto_restart);
154
155 extern void (*SMPI_switch_data_segment)(simgrid::s4u::ActorPtr actor);
156 }
157
158 XBT_PRIVATE void SIMIX_process_sleep_destroy(smx_activity_t synchro);
159 XBT_PRIVATE smx_activity_t SIMIX_process_join(smx_actor_t issuer, smx_actor_t process, double timeout);
160
161 #endif