Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
forgot that one
[simgrid.git] / src / msg / msg_process.cpp
1 /* Copyright (c) 2004-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 #include "msg_private.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/instr/instr_private.hpp"
9 #include "src/simix/ActorImpl.hpp"
10 #include "src/simix/smx_private.hpp"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_process, msg, "Logging specific to MSG (process)");
13
14 std::string instr_pid(msg_process_t proc)
15 {
16   return std::string(proc->get_name()) + "-" + std::to_string(proc->get_pid());
17 }
18
19 /******************************** Process ************************************/
20
21 /** @brief Creates and runs a new #msg_process_t.
22  *
23  * Does exactly the same as #MSG_process_create_with_arguments but without providing standard arguments
24  * (@a argc, @a argv, @a start_time, @a kill_time).
25  */
26 msg_process_t MSG_process_create(const char *name, xbt_main_func_t code, void *data, msg_host_t host)
27 {
28   return MSG_process_create_with_environment(name == nullptr ? "" : name, code, data, host, 0, nullptr, nullptr);
29 }
30
31 /** @brief Creates and runs a new process.
32
33  * A constructor for #msg_process_t taking four arguments and returning the corresponding object. The structure (and
34  * the corresponding thread) is created, and put in the list of ready process.
35  * @param name a name for the object. It is for user-level information and can be nullptr.
36  * @param code is a function describing the behavior of the process.
37  * @param data a pointer to any data one may want to attach to the new object.  It is for user-level information and
38  *        can be nullptr. It can be retrieved with the function @ref MSG_process_get_data.
39  * @param host the location where the new process is executed.
40  * @param argc first argument passed to @a code
41  * @param argv second argument passed to @a code
42  */
43
44 msg_process_t MSG_process_create_with_arguments(const char *name, xbt_main_func_t code, void *data, msg_host_t host,
45                                               int argc, char **argv)
46 {
47   return MSG_process_create_with_environment(name, code, data, host, argc, argv, nullptr);
48 }
49
50 /**
51  * @brief Creates and runs a new #msg_process_t.
52
53  * A constructor for #msg_process_t taking four arguments and returning the corresponding object. The structure (and
54  * the corresponding thread) is created, and put in the list of ready process.
55  * @param name a name for the object. It is for user-level information and can be nullptr.
56  * @param code is a function describing the behavior of the process.
57  * @param data a pointer to any data one may want to attach to the new object.  It is for user-level information and
58  *        can be nullptr. It can be retrieved with the function @ref MSG_process_get_data.
59  * @param host the location where the new process is executed.
60  * @param argc first argument passed to @a code
61  * @param argv second argument passed to @a code. WARNING, these strings are freed by the SimGrid kernel when the
62  *             process exits, so they cannot be static nor shared between several processes.
63  * @param properties list a properties defined for this process
64  * @see msg_process_t
65  * @return The new corresponding object.
66  */
67 msg_process_t MSG_process_create_with_environment(const char *name, xbt_main_func_t code, void *data, msg_host_t host,
68                                                   int argc, char **argv, xbt_dict_t properties)
69 {
70   xbt_assert(host != nullptr, "Invalid parameters: host param must not be nullptr");
71
72   simgrid::simix::ActorCode function;
73   if (code)
74     function = simgrid::xbt::wrap_main(code, argc, static_cast<const char* const*>(argv));
75
76   std::unordered_map<std::string, std::string> props;
77   xbt_dict_cursor_t cursor = nullptr;
78   char* key;
79   char* value;
80   xbt_dict_foreach (properties, cursor, key, value)
81     props[key] = value;
82   xbt_dict_free(&properties);
83
84   smx_actor_t self    = SIMIX_process_self();
85   smx_actor_t process = simgrid::simix::simcall([name, function, data, host, &props, self] {
86     return simgrid::kernel::actor::ActorImpl::create(std::move(name), std::move(function), data, host, &props, self)
87         .get();
88   });
89
90   for (int i = 0; i != argc; ++i)
91     xbt_free(argv[i]);
92   xbt_free(argv);
93
94   if (process == nullptr)
95     return nullptr;
96
97   MSG_process_yield();
98   return process->ciface();
99 }
100
101 /* Become a process in the simulation
102  *
103  * Currently this can only be called by the main thread (once) and only work with some thread factories
104  * (currently ThreadContextFactory).
105  *
106  * In the future, it might be extended in order to attach other threads created by a third party library.
107  */
108 msg_process_t MSG_process_attach(const char *name, void *data, msg_host_t host, xbt_dict_t properties)
109 {
110   xbt_assert(host != nullptr, "Invalid parameters: host and code params must not be nullptr");
111   std::unordered_map<std::string, std::string> props;
112   xbt_dict_cursor_t cursor = nullptr;
113   char* key;
114   char* value;
115   xbt_dict_foreach (properties, cursor, key, value)
116     props[key] = value;
117   xbt_dict_free(&properties);
118
119   /* Let's create the process: SIMIX may decide to start it right now, even before returning the flow control to us */
120   smx_actor_t process = SIMIX_process_attach(name, data, host->get_cname(), &props, nullptr);
121   if (not process)
122     xbt_die("Could not attach");
123   MSG_process_yield();
124   return process->ciface();
125 }
126
127 /** @brief Detach a process attached with `MSG_process_attach()`
128  *
129  *  This is called when the current process has finished its job.
130  *  Used in the main thread, it waits for the simulation to finish before  returning. When it returns, the other
131  *  simulated processes and the maestro are destroyed.
132  */
133 void MSG_process_detach()
134 {
135   SIMIX_process_detach();
136 }
137
138 /** @brief Returns the user data of a process.
139  *
140  * This function checks whether @a process is a valid pointer and returns the user data associated to this process.
141  */
142 void* MSG_process_get_data(msg_process_t process)
143 {
144   xbt_assert(process != nullptr, "Invalid parameter: first parameter must not be nullptr!");
145
146   /* get from SIMIX the MSG process data, and then the user data */
147   return process->get_impl()->get_user_data();
148 }
149
150 /** @brief Sets the user data of a process.
151  *
152  * This function checks whether @a process is a valid pointer and sets the user data associated to this process.
153  */
154 msg_error_t MSG_process_set_data(msg_process_t process, void *data)
155 {
156   xbt_assert(process != nullptr, "Invalid parameter: first parameter must not be nullptr!");
157
158   process->get_impl()->set_user_data(data);
159
160   return MSG_OK;
161 }
162
163 /** @brief Sets a cleanup function to be called to free the userdata of a process when a process is destroyed.
164  * @param data_cleanup a cleanup function for the userdata of a process, or nullptr to call no function
165  */
166 XBT_PUBLIC void MSG_process_set_data_cleanup(void_f_pvoid_t data_cleanup)
167 {
168   msg_global->process_data_cleanup = data_cleanup;
169 }
170
171 /** @brief returns a list of all currently existing processes */
172 xbt_dynar_t MSG_processes_as_dynar() {
173   xbt_dynar_t res = xbt_dynar_new(sizeof(smx_actor_t), nullptr);
174   for (auto const& kv : simix_global->process_list) {
175     smx_actor_t actor = kv.second;
176     xbt_dynar_push(res, &actor);
177   }
178   return res;
179 }
180
181 /** @brief Return the current number MSG processes. */
182 int MSG_process_get_number()
183 {
184   return SIMIX_process_count();
185 }
186
187 /** @brief Return the PID of the current process.
188  *
189  * This function returns the PID of the currently running #msg_process_t.
190  */
191 int MSG_process_self_PID()
192 {
193   smx_actor_t self = SIMIX_process_self();
194   return self == nullptr ? 0 : self->get_pid();
195 }
196
197 /** @brief Return the PPID of the current process.
198  *
199  * This function returns the PID of the parent of the currently running #msg_process_t.
200  */
201 int MSG_process_self_PPID()
202 {
203   return MSG_process_get_PPID(MSG_process_self());
204 }
205
206 /** @brief Return the name of the current process. */
207 const char* MSG_process_self_name()
208 {
209   return SIMIX_process_self_get_name();
210 }
211
212 /** @brief Return the current process.
213  *
214  * This function returns the currently running #msg_process_t.
215  */
216 msg_process_t MSG_process_self()
217 {
218   return SIMIX_process_self()->ciface();
219 }
220
221 smx_context_t MSG_process_get_smx_ctx(msg_process_t process) { // deprecated -- smx_context_t should die afterward
222   return process->get_impl()->context_;
223 }
224 /** @brief Add a function to the list of "on_exit" functions for the current process.
225  *  The on_exit functions are the functions executed when your process is killed.
226  *  You should use them to free the data used by your process.
227  */
228 void MSG_process_on_exit(int_f_pvoid_pvoid_t fun, void *data) {
229   simgrid::s4u::this_actor::on_exit([fun](int a, void* b) { fun((void*)(intptr_t)a, b); }, data);
230 }
231
232 /** @brief Take an extra reference on that process to prevent it to be garbage-collected */
233 XBT_PUBLIC void MSG_process_ref(msg_process_t process)
234 {
235   intrusive_ptr_add_ref(process);
236 }
237 /** @brief Release a reference on that process so that it can get be garbage-collected */
238 XBT_PUBLIC void MSG_process_unref(msg_process_t process)
239 {
240   intrusive_ptr_release(process);
241 }