Logo AND Algorithmique Numérique Distribuée

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