Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent.
[simgrid.git] / src / msg / msg_process.cpp
1 /* Copyright (c) 2004-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 #include "msg_private.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/simix/ActorImpl.hpp"
9 #include "src/simix/smx_private.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_process, msg, "Logging specific to MSG (process)");
12
13 extern "C" {
14
15 /** @addtogroup m_process_management
16  *
17  *  Processes (#msg_process_t) are independent agents that can do stuff on their own. They are in charge of executing
18  *  your code interacting with the simulated world.
19  *  A process may be defined as a <em>code</em> with some <em>private data</em>.
20  *  Processes must be located on <em>hosts</em> (#msg_host_t), and they exchange data by sending tasks (#msg_task_t)
21  *  that are similar to envelops containing data.
22  */
23
24 /******************************** Process ************************************/
25 /**
26  * \brief Cleans the MSG data of an actor
27  * \param smx_actor a SIMIX actor
28  */
29 void MSG_process_cleanup_from_SIMIX(smx_actor_t smx_actor)
30 {
31   simgrid::msg::ActorExt* msg_actor;
32
33   // get the MSG process from the SIMIX process
34   if (smx_actor == SIMIX_process_self()) {
35     /* avoid a SIMIX request if this function is called by the process itself */
36     msg_actor = (simgrid::msg::ActorExt*)SIMIX_process_self_get_data();
37     SIMIX_process_self_set_data(nullptr);
38   } else {
39     msg_actor = (simgrid::msg::ActorExt*)smx_actor->userdata;
40     simcall_process_set_data(smx_actor, nullptr);
41   }
42
43   TRACE_msg_process_destroy(smx_actor->name.c_str(), smx_actor->pid);
44   // free the data if a function was provided
45   if (msg_actor && msg_actor->data && msg_global->process_data_cleanup) {
46     msg_global->process_data_cleanup(msg_actor->data);
47   }
48
49   delete msg_actor;
50   SIMIX_process_cleanup(smx_actor);
51 }
52
53 /* This function creates a MSG process. It has the prototype enforced by SIMIX_function_register_process_create */
54 smx_actor_t MSG_process_create_from_SIMIX(const char* name, std::function<void()> code, void* data, sg_host_t host,
55                                           std::map<std::string, std::string>* properties, smx_actor_t parent_process)
56 {
57   msg_process_t p = MSG_process_create_from_stdfunc(name, std::move(code), data, host, properties);
58   return p == nullptr ? nullptr : p->getImpl();
59 }
60
61 /** \ingroup m_process_management
62  * \brief Creates and runs a new #msg_process_t.
63  *
64  * Does exactly the same as #MSG_process_create_with_arguments but without providing standard arguments
65  * (\a argc, \a argv, \a start_time, \a kill_time).
66  * \sa MSG_process_create_with_arguments
67  */
68 msg_process_t MSG_process_create(const char *name, xbt_main_func_t code, void *data, msg_host_t host)
69 {
70   return MSG_process_create_with_environment(name, code, data, host, 0, nullptr, nullptr);
71 }
72
73 /** \ingroup m_process_management
74  * \brief Creates and runs a new #msg_process_t.
75
76  * A constructor for #msg_process_t taking four arguments and returning the corresponding object. The structure (and
77  * the corresponding thread) is created, and put in the list of ready process.
78  * \param name a name for the object. It is for user-level information and can be nullptr.
79  * \param code is a function describing the behavior of the process. It should then only use functions described
80  * in \ref m_process_management (to create a new #msg_process_t for example),
81    in \ref m_host_management (only the read-only functions i.e. whose name contains the word get),
82    in \ref m_task_management (to create or destroy some #msg_task_t for example) and
83    in \ref msg_task_usage (to handle file transfers and task processing).
84  * \param data a pointer to any data one may want to attach to the new object.  It is for user-level information and
85  *        can be nullptr. It can be retrieved with the function \ref MSG_process_get_data.
86  * \param host the location where the new process is executed.
87  * \param argc first argument passed to \a code
88  * \param argv second argument passed to \a code
89  * \see msg_process_t
90  * \return The new corresponding object.
91  */
92
93 msg_process_t MSG_process_create_with_arguments(const char *name, xbt_main_func_t code, void *data, msg_host_t host,
94                                               int argc, char **argv)
95 {
96   return MSG_process_create_with_environment(name, code, data, host, argc, argv, nullptr);
97 }
98
99 /** \ingroup m_process_management
100  * \brief Creates and runs a new #msg_process_t.
101
102  * A constructor for #msg_process_t taking four arguments and returning the corresponding object. The structure (and
103  * the corresponding thread) is created, and put in the list of ready process.
104  * \param name a name for the object. It is for user-level information and can be nullptr.
105  * \param code is a function describing the behavior of the process. It should then only use functions described
106  * in \ref m_process_management (to create a new #msg_process_t for example),
107    in \ref m_host_management (only the read-only functions i.e. whose name contains the word get),
108    in \ref m_task_management (to create or destroy some #msg_task_t for example) and
109    in \ref msg_task_usage (to handle file transfers and task processing).
110  * \param data a pointer to any data one may want to attach to the new object.  It is for user-level information and
111  *        can be nullptr. It can be retrieved with the function \ref MSG_process_get_data.
112  * \param host the location where the new process is executed.
113  * \param argc first argument passed to \a code
114  * \param argv second argument passed to \a code. WARNING, these strings are freed by the SimGrid kernel when the
115  *             process exits, so they cannot be static nor shared between several processes.
116  * \param properties list a properties defined for this process
117  * \see msg_process_t
118  * \return The new corresponding object.
119  */
120 msg_process_t MSG_process_create_with_environment(const char *name, xbt_main_func_t code, void *data, msg_host_t host,
121                                                   int argc, char **argv, xbt_dict_t properties)
122 {
123   std::function<void()> function;
124   if (code)
125     function = simgrid::xbt::wrapMain(code, argc, static_cast<const char* const*>(argv));
126
127   std::map<std::string, std::string> props;
128   xbt_dict_cursor_t cursor = nullptr;
129   char* key;
130   char* value;
131   xbt_dict_foreach (properties, cursor, key, value)
132     props[key] = value;
133   xbt_dict_free(&properties);
134
135   msg_process_t res = MSG_process_create_from_stdfunc(name, std::move(function), data, host, &props);
136   for (int i = 0; i != argc; ++i)
137     xbt_free(argv[i]);
138   xbt_free(argv);
139   return res;
140 }
141 }
142
143 msg_process_t MSG_process_create_from_stdfunc(const char* name, std::function<void()> code, void* data, msg_host_t host,
144                                               std::map<std::string, std::string>* properties)
145 {
146   xbt_assert(code != nullptr && host != nullptr, "Invalid parameters: host and code params must not be nullptr");
147   simgrid::msg::ActorExt* msgExt = new simgrid::msg::ActorExt(data);
148
149   smx_actor_t process = simcall_process_create(name, std::move(code), msgExt, host, properties);
150
151   if (not process) { /* Undo everything */
152     delete msgExt;
153     return nullptr;
154   }
155
156   simcall_process_on_exit(process, (int_f_pvoid_pvoid_t)TRACE_msg_process_kill, process);
157   return process->ciface();
158 }
159
160 extern "C" {
161
162 /* Become a process in the simulation
163  *
164  * Currently this can only be called by the main thread (once) and only work with some thread factories
165  * (currently ThreadContextFactory).
166  *
167  * In the future, it might be extended in order to attach other threads created by a third party library.
168  */
169 msg_process_t MSG_process_attach(const char *name, void *data, msg_host_t host, xbt_dict_t properties)
170 {
171   xbt_assert(host != nullptr, "Invalid parameters: host and code params must not be nullptr");
172   std::map<std::string, std::string> props;
173   xbt_dict_cursor_t cursor = nullptr;
174   char* key;
175   char* value;
176   xbt_dict_foreach (properties, cursor, key, value)
177     props[key] = value;
178   xbt_dict_free(&properties);
179
180   /* Let's create the process: SIMIX may decide to start it right now, even before returning the flow control to us */
181   smx_actor_t process = SIMIX_process_attach(name, new simgrid::msg::ActorExt(data), host->getCname(), &props, nullptr);
182   if (not process)
183     xbt_die("Could not attach");
184   simcall_process_on_exit(process,(int_f_pvoid_pvoid_t)TRACE_msg_process_kill,process);
185   return process->ciface();
186 }
187
188 /** Detach a process attached with `MSG_process_attach()`
189  *
190  *  This is called when the current process has finished its job.
191  *  Used in the main thread, it waits for the simulation to finish before  returning. When it returns, the other
192  *  simulated processes and the maestro are destroyed.
193  */
194 void MSG_process_detach()
195 {
196   SIMIX_process_detach();
197 }
198
199 /** \ingroup m_process_management
200  * \param process poor victim
201  *
202  * This function simply kills a \a process... scary isn't it ? :)
203  */
204 void MSG_process_kill(msg_process_t process)
205 {
206   process->kill();
207 }
208
209 /**
210 * \brief Wait for the completion of a #msg_process_t.
211 *
212 * \param process the process to wait for
213 * \param timeout wait until the process is over, or the timeout occurs
214 */
215 msg_error_t MSG_process_join(msg_process_t process, double timeout){
216   simcall_process_join(process->getImpl(), timeout);
217   return MSG_OK;
218 }
219
220 /** \ingroup m_process_management
221  * \brief Migrates a process to another location.
222  *
223  * This function checks whether \a process and \a host are valid pointers and change the value of the #msg_host_t on
224  * which \a process is running.
225  */
226 msg_error_t MSG_process_migrate(msg_process_t process, msg_host_t host)
227 {
228   TRACE_msg_process_change_host(process, host);
229   process->migrate(host);
230   return MSG_OK;
231 }
232
233 /** Yield the current actor; let the other actors execute first */
234 void MSG_process_yield()
235 {
236   simgrid::simix::kernelImmediate([] { /* do nothing*/ });
237 }
238
239 /** \ingroup m_process_management
240  * \brief Returns the user data of a process.
241  *
242  * This function checks whether \a process is a valid pointer and returns the user data associated to this process.
243  */
244 void* MSG_process_get_data(msg_process_t process)
245 {
246   xbt_assert(process != nullptr, "Invalid parameter: first parameter must not be nullptr!");
247
248   /* get from SIMIX the MSG process data, and then the user data */
249   simgrid::msg::ActorExt* msgExt = (simgrid::msg::ActorExt*)process->getImpl()->userdata;
250   if (msgExt)
251     return msgExt->data;
252   else
253     return nullptr;
254 }
255
256 /** \ingroup m_process_management
257  * \brief Sets the user data of a process.
258  *
259  * This function checks whether \a process is a valid pointer and sets the user data associated to this process.
260  */
261 msg_error_t MSG_process_set_data(msg_process_t process, void *data)
262 {
263   xbt_assert(process != nullptr, "Invalid parameter: first parameter must not be nullptr!");
264
265   static_cast<simgrid::msg::ActorExt*>(process->getImpl()->userdata)->data = data;
266
267   return MSG_OK;
268 }
269
270 /** \ingroup m_process_management
271  * \brief Sets a cleanup function to be called to free the userdata of a process when a process is destroyed.
272  * \param data_cleanup a cleanup function for the userdata of a process, or nullptr to call no function
273  */
274 XBT_PUBLIC(void) MSG_process_set_data_cleanup(void_f_pvoid_t data_cleanup) {
275   msg_global->process_data_cleanup = data_cleanup;
276 }
277
278 /** \ingroup m_process_management
279  * \brief Return the location on which a process is running.
280  * \param process a process (nullptr means the current one)
281  * \return the msg_host_t corresponding to the location on which \a process is running.
282  */
283 msg_host_t MSG_process_get_host(msg_process_t process)
284 {
285   if (process == nullptr) {
286     return SIMIX_process_self()->host;
287   } else {
288     return process->getImpl()->host;
289   }
290 }
291
292 /** \ingroup m_process_management
293  *
294  * \brief Return a #msg_process_t given its PID.
295  *
296  * This function search in the list of all the created msg_process_t for a msg_process_t  whose PID is equal to \a PID.
297  * If no host is found, \c nullptr is returned.
298    Note that the PID are uniq in the whole simulation, not only on a given host.
299  */
300 msg_process_t MSG_process_from_PID(int PID)
301 {
302   return SIMIX_process_from_PID(PID)->ciface();
303 }
304
305 /** @brief returns a list of all currently existing processes */
306 xbt_dynar_t MSG_processes_as_dynar() {
307   xbt_dynar_t res = xbt_dynar_new(sizeof(smx_actor_t), nullptr);
308   for (auto const& kv : simix_global->process_list) {
309     smx_actor_t actor = kv.second;
310     xbt_dynar_push(res, &actor);
311   }
312   return res;
313 }
314
315 /** @brief Return the current number MSG processes. */
316 int MSG_process_get_number()
317 {
318   return SIMIX_process_count();
319 }
320
321 /** \ingroup m_process_management
322  * \brief Set the kill time of a process.
323  *
324  * \param process a process
325  * \param kill_time the time when the process is killed.
326  */
327 msg_error_t MSG_process_set_kill_time(msg_process_t process, double kill_time)
328 {
329   simcall_process_set_kill_time(process->getImpl(), kill_time);
330   return MSG_OK;
331 }
332
333 /** \ingroup m_process_management
334  * \brief Returns the process ID of \a process.
335  *
336  * This function checks whether \a process is a valid pointer and return its PID (or 0 in case of problem).
337  */
338 int MSG_process_get_PID(msg_process_t process)
339 {
340   /* Do not raise an exception here: this function is called by the logs
341    * and the exceptions, so it would be called back again and again */
342   if (process == nullptr || process->getImpl() == nullptr)
343     return 0;
344   return process->getImpl()->pid;
345 }
346
347 /** \ingroup m_process_management
348  * \brief Returns the process ID of the parent of \a process.
349  *
350  * This function checks whether \a process is a valid pointer and return its PID.
351  * Returns -1 if the process has not been created by any other process.
352  */
353 int MSG_process_get_PPID(msg_process_t process)
354 {
355   return process->getImpl()->ppid;
356 }
357
358 /** \ingroup m_process_management
359  * \brief Return the name of a process.
360  *
361  * This function checks whether \a process is a valid pointer and return its name.
362  */
363 const char *MSG_process_get_name(msg_process_t process)
364 {
365   return process->getCname();
366 }
367
368 /** \ingroup m_process_management
369  * \brief Returns the value of a given process property
370  *
371  * \param process a process
372  * \param name a property name
373  * \return value of a property (or nullptr if the property is not set)
374  */
375 const char *MSG_process_get_property_value(msg_process_t process, const char *name)
376 {
377   return process->getProperty(name);
378 }
379
380 /** \ingroup m_process_management
381  * \brief Return the list of properties
382  *
383  * This function returns all the parameters associated with a process
384  */
385 xbt_dict_t MSG_process_get_properties(msg_process_t process)
386 {
387   xbt_assert(process != nullptr, "Invalid parameter: First argument must not be nullptr");
388   xbt_dict_t as_dict = xbt_dict_new_homogeneous(xbt_free_f);
389   std::map<std::string, std::string>* props =
390       simgrid::simix::kernelImmediate([process] { return process->getImpl()->getProperties(); });
391   if (props == nullptr)
392     return nullptr;
393   for (auto const& elm : *props) {
394     xbt_dict_set(as_dict, elm.first.c_str(), xbt_strdup(elm.second.c_str()), nullptr);
395   }
396   return as_dict;
397 }
398
399 /** \ingroup m_process_management
400  * \brief Return the PID of the current process.
401  *
402  * This function returns the PID of the currently running #msg_process_t.
403  */
404 int MSG_process_self_PID()
405 {
406   smx_actor_t self = SIMIX_process_self();
407   return self == nullptr ? 0 : self->pid;
408 }
409
410 /** \ingroup m_process_management
411  * \brief Return the PPID of the current process.
412  *
413  * This function returns the PID of the parent of the currently running #msg_process_t.
414  */
415 int MSG_process_self_PPID()
416 {
417   return MSG_process_get_PPID(MSG_process_self());
418 }
419
420 /** \ingroup m_process_management
421  * \brief Return the name of the current process.
422  */
423 const char* MSG_process_self_name()
424 {
425   return SIMIX_process_self_get_name();
426 }
427
428 /** \ingroup m_process_management
429  * \brief Return the current process.
430  *
431  * This function returns the currently running #msg_process_t.
432  */
433 msg_process_t MSG_process_self()
434 {
435   return SIMIX_process_self()->ciface();
436 }
437
438 /** \ingroup m_process_management
439  * \brief Suspend the process.
440  *
441  * This function suspends the process by suspending the task on which it was waiting for the completion.
442  */
443 msg_error_t MSG_process_suspend(msg_process_t process)
444 {
445   xbt_assert(process != nullptr, "Invalid parameter: First argument must not be nullptr");
446
447   TRACE_msg_process_suspend(process);
448   simcall_process_suspend(process->getImpl());
449   return MSG_OK;
450 }
451
452 /** \ingroup m_process_management
453  * \brief Resume a suspended process.
454  *
455  * This function resumes a suspended process by resuming the task on which it was waiting for the completion.
456  */
457 msg_error_t MSG_process_resume(msg_process_t process)
458 {
459   xbt_assert(process != nullptr, "Invalid parameter: First argument must not be nullptr");
460
461   TRACE_msg_process_resume(process);
462   process->resume();
463   return MSG_OK;
464 }
465
466 /** \ingroup m_process_management
467  * \brief Returns true if the process is suspended .
468  *
469  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
470  */
471 int MSG_process_is_suspended(msg_process_t process)
472 {
473   return process->isSuspended();
474 }
475
476 smx_context_t MSG_process_get_smx_ctx(msg_process_t process) {
477   return process->getImpl()->context;
478 }
479 /**
480  * \ingroup m_process_management
481  * \brief Add a function to the list of "on_exit" functions for the current process.
482  * The on_exit functions are the functions executed when your process is killed.
483  * You should use them to free the data used by your process.
484  */
485 void MSG_process_on_exit(int_f_pvoid_pvoid_t fun, void *data) {
486   simcall_process_on_exit(SIMIX_process_self(), fun, data);
487 }
488 /**
489  * \ingroup m_process_management
490  * \brief Sets the "auto-restart" flag of the process.
491  * If the flag is set to 1, the process will be automatically restarted when its host comes back up.
492  */
493 XBT_PUBLIC(void) MSG_process_auto_restart_set(msg_process_t process, int auto_restart) {
494   process->setAutoRestart(auto_restart);
495 }
496 /**
497  * \ingroup m_process_management
498  * \brief Restarts a process from the beginning.
499  */
500 XBT_PUBLIC(msg_process_t) MSG_process_restart(msg_process_t process) {
501   return process->restart();
502 }
503
504 /** @ingroup m_process_management
505  * @brief This process will be terminated automatically when the last non-daemon process finishes
506  */
507 XBT_PUBLIC(void) MSG_process_daemonize(msg_process_t process)
508 {
509   simgrid::simix::kernelImmediate([process]() { process->getImpl()->daemonize(); });
510 }
511
512 /** @ingroup m_process_management
513  * @brief Take an extra reference on that process to prevent it to be garbage-collected
514  */
515 XBT_PUBLIC(void) MSG_process_ref(msg_process_t process)
516 {
517   intrusive_ptr_add_ref(process);
518 }
519 /** @ingroup m_process_management
520  * @brief Release a reference on that process so that it can get be garbage-collected
521  */
522 XBT_PUBLIC(void) MSG_process_unref(msg_process_t process)
523 {
524   intrusive_ptr_release(process);
525 }
526 }