Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / msg / msg_process.c
1 /* Copyright (c) 2004-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "msg_private.h"
8 #include "xbt/sysdep.h"
9 #include "xbt/log.h"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_process, msg,
12                                 "Logging specific to MSG (process)");
13
14 /** @addtogroup m_process_management
15  * \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Processes" --> \endhtmlonly
16  *
17  *  We need to simulate many independent scheduling decisions, so
18  *  the concept of <em>process</em> is at the heart of the
19  *  simulator. A process may be defined as a <em>code</em>, with
20  *  some <em>private data</em>, executing in a <em>location</em>.
21  *  \see msg_process_t
22  */
23
24 /******************************** Process ************************************/
25
26 /**
27  * \brief Cleans the MSG data of a process.
28  * \param smx_proc a SIMIX process
29  */
30 void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc)
31 {
32   simdata_process_t msg_proc;
33
34   // get the MSG process from the SIMIX process
35   if (smx_proc == SIMIX_process_self()) {
36     /* avoid a SIMIX request if this function is called by the process itself */
37     msg_proc = SIMIX_process_self_get_data(smx_proc);
38     SIMIX_process_self_set_data(smx_proc, NULL);
39   }
40   else {
41     msg_proc = simcall_process_get_data(smx_proc);
42     simcall_process_set_data(smx_proc, NULL);
43   }
44
45 #ifdef HAVE_TRACING
46   TRACE_msg_process_end(smx_proc);
47 #endif
48   // free the data if a function was provided
49   if (msg_proc && msg_proc->data && msg_global->process_data_cleanup) {
50     msg_global->process_data_cleanup(msg_proc->data);
51   }
52
53   // free the MSG process
54   xbt_free(msg_proc);
55 }
56
57 /* This function creates a MSG process. It has the prototype enforced by SIMIX_function_register_process_create */
58 void MSG_process_create_from_SIMIX(smx_process_t* process, const char *name,
59                                    xbt_main_func_t code, void *data,
60                                    const char *hostname, double kill_time,
61                                    int argc, char **argv,
62                                    xbt_dict_t properties, int auto_restart,
63                                    smx_process_t parent_process)
64 {
65   msg_host_t host = MSG_get_host_by_name(hostname);
66   msg_process_t p = MSG_process_create_with_environment(name, code, data,
67                                                       host, argc, argv,
68                                                       properties);
69   if (p) {
70     MSG_process_set_kill_time(p,kill_time);
71     MSG_process_auto_restart_set(p,auto_restart);
72   }
73   *((msg_process_t*) process) = p;
74 }
75
76 /** \ingroup m_process_management
77  * \brief Creates and runs a new #msg_process_t.
78  *
79  * Does exactly the same as #MSG_process_create_with_arguments but without
80    providing standard arguments (\a argc, \a argv, \a start_time, \a kill_time).
81  * \sa MSG_process_create_with_arguments
82  */
83 msg_process_t MSG_process_create(const char *name,
84                                xbt_main_func_t code, void *data,
85                                msg_host_t host)
86 {
87   return MSG_process_create_with_environment(name, code, data, host, -1,
88                                              NULL, NULL);
89 }
90
91 /** \ingroup m_process_management
92  * \brief Creates and runs a new #msg_process_t.
93
94  * A constructor for #msg_process_t taking four arguments and returning the
95  * corresponding object. The structure (and the corresponding thread) is
96  * created, and put in the list of ready process.
97  * \param name a name for the object. It is for user-level information
98    and can be NULL.
99  * \param code is a function describing the behavior of the process. It
100    should then only use functions described in \ref
101    m_process_management (to create a new #msg_process_t for example),
102    in \ref m_host_management (only the read-only functions i.e. whose
103    name contains the word get), in \ref m_task_management (to create
104    or destroy some #msg_task_t for example) and in \ref
105    msg_task_usage (to handle file transfers and task processing).
106  * \param data a pointer to any data one may want to attach to the new
107    object.  It is for user-level information and can be NULL. It can
108    be retrieved with the function \ref MSG_process_get_data.
109  * \param host the location where the new process is executed.
110  * \param argc first argument passed to \a code
111  * \param argv second argument passed to \a code
112  * \see msg_process_t
113  * \return The new corresponding object.
114  */
115
116 msg_process_t MSG_process_create_with_arguments(const char *name,
117                                               xbt_main_func_t code,
118                                               void *data, msg_host_t host,
119                                               int argc, char **argv)
120 {
121   return MSG_process_create_with_environment(name, code, data, host,
122                                              argc, argv, NULL);
123 }
124
125 /** \ingroup m_process_management
126  * \brief Creates and runs a new #msg_process_t.
127
128  * A constructor for #msg_process_t taking four arguments and returning the
129  * corresponding object. The structure (and the corresponding thread) is
130  * created, and put in the list of ready process.
131  * \param name a name for the object. It is for user-level information
132    and can be NULL.
133  * \param code is a function describing the behavior of the process. It
134    should then only use functions described in \ref
135    m_process_management (to create a new #msg_process_t for example),
136    in \ref m_host_management (only the read-only functions i.e. whose
137    name contains the word get), in \ref m_task_management (to create
138    or destroy some #msg_task_t for example) and in \ref
139    msg_task_usage (to handle file transfers and task processing).
140  * \param data a pointer to any data one may want to attach to the new
141    object.  It is for user-level information and can be NULL. It can
142    be retrieved with the function \ref MSG_process_get_data.
143  * \param host the location where the new process is executed.
144  * \param argc first argument passed to \a code
145  * \param argv second argument passed to \a code. WARNING, these strings are freed by the SimGrid kernel when the process exits, so they cannot be static nor shared between several processes.
146  * \param properties list a properties defined for this process
147  * \see msg_process_t
148  * \return The new corresponding object.
149  */
150 msg_process_t MSG_process_create_with_environment(const char *name,
151                                                 xbt_main_func_t code,
152                                                 void *data, msg_host_t host,
153                                                 int argc, char **argv,
154                                                 xbt_dict_t properties)
155 {
156   xbt_assert(code != NULL && host != NULL, "Invalid parameters");
157   simdata_process_t simdata = xbt_new0(s_simdata_process_t, 1);
158   msg_process_t process;
159
160   /* Simulator data for MSG */
161   simdata->waiting_action = NULL;
162   simdata->waiting_task = NULL;
163   simdata->m_host = host;
164   simdata->argc = argc;
165   simdata->argv = argv;
166   simdata->data = data;
167   simdata->last_errno = MSG_OK;
168
169   /* Let's create the process: SIMIX may decide to start it right now,
170    * even before returning the flow control to us */
171  simcall_process_create(&process, name, code, simdata, sg_host_name(host), -1,
172                            argc, argv, properties,0);
173
174 #ifdef HAVE_TRACING
175   TRACE_msg_process_create(name, simcall_process_get_PID(process), host);
176 #endif
177
178   if (!process) {
179     /* Undo everything we have just changed */
180     xbt_free(simdata);
181     return NULL;
182   }
183   else {
184     #ifdef HAVE_TRACING
185     simcall_process_on_exit(process,(int_f_pvoid_t)TRACE_msg_process_kill,MSG_process_self());
186     #endif
187   }
188   return process;
189 }
190
191 /** \ingroup m_process_management
192  * \param process poor victim
193  *
194  * This function simply kills a \a process... scary isn't it ? :)
195  */
196 void MSG_process_kill(msg_process_t process)
197 {
198 //  /* FIXME: why do we only cancel communication actions? is this useful? */
199 //  simdata_process_t p_simdata = simcall_process_get_data(process);
200 //  if (p_simdata->waiting_task && p_simdata->waiting_task->simdata->comm) {
201 //    simcall_comm_cancel(p_simdata->waiting_task->simdata->comm);
202 //  }
203  
204   simcall_process_kill(process);
205
206   return;
207 }
208
209 /** \ingroup m_process_management
210  * \brief Migrates a process to another location.
211  *
212  * This function checks whether \a process and \a host are valid pointers
213    and change the value of the #msg_host_t on which \a process is running.
214  */
215 msg_error_t MSG_process_migrate(msg_process_t process, msg_host_t host)
216 {
217   simdata_process_t simdata = simcall_process_get_data(process);
218   simdata->m_host = host;
219 #ifdef HAVE_TRACING
220   msg_host_t now = simdata->m_host;
221   TRACE_msg_process_change_host(process, now, host);
222 #endif
223   simcall_process_change_host(process, host);
224   return MSG_OK;
225 }
226
227 /** \ingroup m_process_management
228  * \brief Returns the user data of a process.
229  *
230  * This function checks whether \a process is a valid pointer or not
231    and returns the user data associated to this process.
232  */
233 void* MSG_process_get_data(msg_process_t process)
234 {
235   xbt_assert(process != NULL, "Invalid parameter");
236
237   /* get from SIMIX the MSG process data, and then the user data */
238   simdata_process_t simdata = simcall_process_get_data(process);
239   return simdata->data;
240 }
241
242 /** \ingroup m_process_management
243  * \brief Sets the user data of a process.
244  *
245  * This function checks whether \a process is a valid pointer or not
246    and sets the user data associated to this process.
247  */
248 msg_error_t MSG_process_set_data(msg_process_t process, void *data)
249 {
250   xbt_assert(process != NULL, "Invalid parameter");
251
252   simdata_process_t simdata = simcall_process_get_data(process);
253   simdata->data = data;
254
255   return MSG_OK;
256 }
257
258 /** \ingroup m_process_management
259  * \brief Sets a cleanup function to be called to free the userdata of a
260  * process when a process is destroyed.
261  * \param data_cleanup a cleanup function for the userdata of a process,
262  * or NULL to call no function
263  */
264 XBT_PUBLIC(void) MSG_process_set_data_cleanup(void_f_pvoid_t data_cleanup) {
265
266   msg_global->process_data_cleanup = data_cleanup;
267 }
268
269 /** \ingroup m_process_management
270  * \brief Return the location on which a process is running.
271  * \param process a process (NULL means the current one)
272  * \return the msg_host_t corresponding to the location on which \a
273  * process is running.
274  */
275 msg_host_t MSG_process_get_host(msg_process_t process)
276 {
277   simdata_process_t simdata;
278   if (process == NULL) {
279     simdata = SIMIX_process_self_get_data(SIMIX_process_self());
280   }
281   else {
282     simdata = simcall_process_get_data(process);
283   }
284   return simdata->m_host;
285 }
286
287 /** \ingroup m_process_management
288  *
289  * \brief Return a #msg_process_t given its PID.
290  *
291  * This function search in the list of all the created msg_process_t for a msg_process_t
292    whose PID is equal to \a PID. If no host is found, \c NULL is returned.
293    Note that the PID are uniq in the whole simulation, not only on a given host.
294  */
295 msg_process_t MSG_process_from_PID(int PID)
296 {
297   return SIMIX_process_from_PID(PID);
298 }
299
300 /** @brief returns a list of all currently existing processes */
301 xbt_dynar_t MSG_processes_as_dynar(void) {
302   return SIMIX_processes_as_dynar();
303 }
304 /** @brief Return the current number MSG processes.
305  */
306 int MSG_process_get_number(void)
307 {
308   return SIMIX_process_count();
309 }
310
311 /** \ingroup m_process_management
312  * \brief Set the kill time of a process.
313  *
314  * \param process a process
315  * \param kill_time the time when the process is killed.
316  */
317 msg_error_t MSG_process_set_kill_time(msg_process_t process, double kill_time)
318 {
319   simcall_process_set_kill_time(process,kill_time);
320   return MSG_OK;
321 }
322
323 /** \ingroup m_process_management
324  * \brief Returns the process ID of \a process.
325  *
326  * This function checks whether \a process is a valid pointer or not
327    and return its PID (or 0 in case of problem).
328  */
329 int MSG_process_get_PID(msg_process_t process)
330 {
331   /* Do not raise an exception here: this function is called by the logs
332    * and the exceptions, so it would be called back again and again */
333   if (process == NULL) {
334     return 0;
335   }
336   return simcall_process_get_PID(process);
337 }
338
339 /** \ingroup m_process_management
340  * \brief Returns the process ID of the parent of \a process.
341  *
342  * This function checks whether \a process is a valid pointer or not
343    and return its PID. Returns -1 if the process has not been created by
344    any other process.
345  */
346 int MSG_process_get_PPID(msg_process_t process)
347 {
348   xbt_assert(process != NULL, "Invalid parameter");
349
350   return simcall_process_get_PPID(process);
351 }
352
353 /** \ingroup m_process_management
354  * \brief Return the name of a process.
355  *
356  * This function checks whether \a process is a valid pointer or not
357    and return its name.
358  */
359 const char *MSG_process_get_name(msg_process_t process)
360 {
361   xbt_assert(process, "Invalid parameter");
362
363   return simcall_process_get_name(process);
364 }
365
366 /** \ingroup m_process_management
367  * \brief Returns the value of a given process property
368  *
369  * \param process a process
370  * \param name a property name
371  * \return value of a property (or NULL if the property is not set)
372  */
373 const char *MSG_process_get_property_value(msg_process_t process,
374                                            const char *name)
375 {
376   return xbt_dict_get_or_null(MSG_process_get_properties(process), name);
377 }
378
379 /** \ingroup m_process_management
380  * \brief Return the list of properties
381  *
382  * This function returns all the parameters associated with a process
383  */
384 xbt_dict_t MSG_process_get_properties(msg_process_t process)
385 {
386   xbt_assert(process != NULL, "Invalid parameter");
387
388   return simcall_process_get_properties(process);
389
390 }
391
392 /** \ingroup m_process_management
393  * \brief Return the PID of the current process.
394  *
395  * This function returns the PID of the currently running #msg_process_t.
396  */
397 int MSG_process_self_PID(void)
398 {
399   return MSG_process_get_PID(MSG_process_self());
400 }
401
402 /** \ingroup m_process_management
403  * \brief Return the PPID of the current process.
404  *
405  * This function returns the PID of the parent of the currently
406  * running #msg_process_t.
407  */
408 int MSG_process_self_PPID(void)
409 {
410   return MSG_process_get_PPID(MSG_process_self());
411 }
412
413 /** \ingroup m_process_management
414  * \brief Return the current process.
415  *
416  * This function returns the currently running #msg_process_t.
417  */
418 msg_process_t MSG_process_self(void)
419 {
420   return SIMIX_process_self();
421 }
422
423 /** \ingroup m_process_management
424  * \brief Suspend the process.
425  *
426  * This function suspends the process by suspending the task on which
427  * it was waiting for the completion.
428  */
429 msg_error_t MSG_process_suspend(msg_process_t process)
430 {
431   xbt_assert(process != NULL, "Invalid parameter");
432
433 #ifdef HAVE_TRACING
434   TRACE_msg_process_suspend(process);
435 #endif
436
437   simcall_process_suspend(process);
438   MSG_RETURN(MSG_OK);
439 }
440
441 /** \ingroup m_process_management
442  * \brief Resume a suspended process.
443  *
444  * This function resumes a suspended process by resuming the task on
445  * which it was waiting for the completion.
446  */
447 msg_error_t MSG_process_resume(msg_process_t process)
448 {
449   xbt_assert(process != NULL, "Invalid parameter");
450
451 #ifdef HAVE_TRACING
452   TRACE_msg_process_resume(process);
453 #endif
454
455   simcall_process_resume(process);
456   MSG_RETURN(MSG_OK);
457 }
458
459 /** \ingroup m_process_management
460  * \brief Returns true if the process is suspended .
461  *
462  * This checks whether a process is suspended or not by inspecting the
463  * task on which it was waiting for the completion.
464  */
465 int MSG_process_is_suspended(msg_process_t process)
466 {
467   xbt_assert(process != NULL, "Invalid parameter");
468   return simcall_process_is_suspended(process);
469 }
470
471 smx_context_t MSG_process_get_smx_ctx(msg_process_t process) {
472   return SIMIX_process_get_context(process);
473 }
474 /**
475  * \ingroup m_process_management
476  * \brief Add a function to the list of "on_exit" functions for the current process.
477  * The on_exit functions are the functions executed when your process is killed.
478  * You should use them to free the data used by your process.
479  */
480 void MSG_process_on_exit(int_f_pvoid_t fun, void *data) {
481   simcall_process_on_exit(MSG_process_self(),fun,data);
482 }
483 /**
484  * \ingroup m_process_management
485  * \brief Sets the "auto-restart" flag of the process.
486  * If the flag is set to 1, the process will be automatically restarted when
487  * its host comes back up.
488  */
489 XBT_PUBLIC(void) MSG_process_auto_restart_set(msg_process_t process, int auto_restart) {
490   simcall_process_auto_restart_set(process,auto_restart);
491 }
492 /*
493  * \ingroup m_process_management
494  * \brief Restarts a process from the beginning.
495  */
496 XBT_PUBLIC(msg_process_t) MSG_process_restart(msg_process_t process) {
497   return simcall_process_restart(process);
498 }