Logo AND Algorithmique Numérique Distribuée

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