Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add random_mgr.c to the Visual C++ project of the SimGrid library
[simgrid.git] / src / simix / smx_process.c
1 //*     $Id$     */
2
3 /* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved.        */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "private.h"
9 #include "xbt/sysdep.h"
10 #include "xbt/log.h"
11 #include "xbt/dict.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_process, simix,
14                                 "Logging specific to SIMIX (process)");
15
16 /******************************** Process ************************************/
17 /**
18  * \brief Creates and runs a new #smx_process_t.
19  *
20  * Does exactly the same as #SIMIX_process_create_with_arguments but without 
21    providing standard arguments (\a argc, \a argv).
22  * \see SIMIX_process_create_with_arguments
23  */
24
25
26 void SIMIX_process_cleanup(void *arg)
27 {
28   xbt_swag_remove(arg, simix_global->process_list);
29   xbt_swag_remove(arg, simix_global->process_to_run);
30   xbt_swag_remove(arg,
31                   ((smx_process_t) arg)->simdata->smx_host->simdata->
32                   process_list);
33   free(((smx_process_t) arg)->name);
34   ((smx_process_t) arg)->name = NULL;
35
36   free(((smx_process_t) arg)->simdata);
37   ((smx_process_t) arg)->simdata = NULL;
38   free(arg);
39 }
40
41 /** 
42  * \brief Creates and runs a new #smx_process_t.
43  *
44  * A constructor for #m_process_t taking four arguments and returning the corresponding object. The structure (and the corresponding thread) is created, and put in the list of ready process.
45  *
46  * \param name a name for the object. It is for user-level information and can be NULL.
47 * \param data a pointer to any data one may want to attach to the new object.  It is for user-level information and can be NULL. It can be retrieved with the function \ref MSG_process_get_data.
48  * \param host the location where the new agent is executed.
49  * \param argc first argument passed to \a code
50  * \param argv second argument passed to \a code
51  * \param clean_process_function The cleanup function of user process. It will be called when the process finish. This function have to call the SIMIX_process_cleanup. 
52  * \see smx_process_t
53  * \return The new corresponding object.
54  */
55 smx_process_t SIMIX_process_create(const char *name,
56                                    xbt_main_func_t code, void *data,
57                                    const char *hostname, int argc,
58                                    char **argv, xbt_dict_t properties)
59 {
60   smx_simdata_process_t simdata = xbt_new0(s_smx_simdata_process_t, 1);
61   smx_process_t process = xbt_new0(s_smx_process_t, 1);
62   smx_process_t self = NULL;
63   smx_host_t host = SIMIX_host_get_by_name(hostname);
64
65   xbt_assert0(((code != NULL) && (host != NULL)), "Invalid parameters");
66   /* Simulator Data */
67
68   simdata->smx_host = host;
69   simdata->mutex = NULL;
70   simdata->cond = NULL;
71   simdata->argc = argc;
72   simdata->argv = argv;
73   simdata->context = xbt_context_new(name,code, NULL, NULL,
74                                      simix_global->
75                                      cleanup_process_function, process,
76                                      simdata->argc, simdata->argv);
77
78   /* Process structure */
79   process->name = xbt_strdup(name);
80   process->simdata = simdata;
81   process->data = data;
82
83   /* Add properties*/
84   simdata->properties = properties;
85
86   xbt_swag_insert(process, host->simdata->process_list);
87
88   /* fix current_process, about which xbt_context_start mocks around */
89   self = simix_global->current_process;
90   xbt_context_start(process->simdata->context);
91   simix_global->current_process = self;
92
93   xbt_swag_insert(process, simix_global->process_list);
94   DEBUG2("Inserting %s(%s) in the to_run list", process->name, host->name);
95   xbt_swag_insert(process, simix_global->process_to_run);
96
97   return process;
98 }
99 /** 
100  * \brief Creates and runs a new #smx_process_t hosting a JAVA thread
101  *
102  * Warning: this should only be used in libsimgrid4java, since it create
103  * a context with no code, which leads to segfaults in plain libsimgrid 
104  */
105 void SIMIX_jprocess_create(const char *name, smx_host_t host,
106                            void *data,
107                            void *jprocess, void *jenv, smx_process_t * res)
108 {
109   smx_simdata_process_t simdata = xbt_new0(s_smx_simdata_process_t, 1);
110   smx_process_t process = xbt_new0(s_smx_process_t, 1);
111   smx_process_t self = NULL;
112
113   /* HACK: We need this trick because when we xbt_context_new() do
114      syncronization stuff, the s_process field in the m_process needs 
115      to have a valid value, and we call xbt_context_new() before 
116      returning, of course, ie, before providing a right value to the 
117      caller (Java_simgrid_msg_Msg_processCreate) have time to store it  
118      in place. This way, we initialize the m_process->simdata->s_process 
119      field ourself ASAP.
120
121      All this would be much simpler if the synchronization stuff would be done
122      in the JAVA world, I think.
123    */
124   *res = process;
125
126
127
128   DEBUG5("jprocess_create(name=%s,host=%p,data=%p,jproc=%p,jenv=%p)",
129          name, host, data, jprocess, jenv);
130   xbt_assert0(host, "Invalid parameters");
131   /* Simulator Data */
132   simdata->smx_host = host;
133   simdata->mutex = NULL;
134   simdata->cond = NULL;
135   simdata->argc = 0;
136   simdata->argv = NULL;
137
138  
139   simdata->context = xbt_context_new(name,NULL, NULL, jprocess,
140                                      simix_global->
141                                      cleanup_process_function, process,
142                                      /* argc/argv */ 0, NULL);
143         
144   /* Process structure */
145   process->name = xbt_strdup(name);
146   process->simdata = simdata;
147   process->data = data;
148
149   xbt_swag_insert(process, host->simdata->process_list);
150
151   /* fix current_process, about which xbt_context_start mocks around */
152   self = simix_global->current_process;
153  
154   xbt_context_start(process->simdata->context);
155  
156   simix_global->current_process = self;
157
158   xbt_swag_insert(process, simix_global->process_list);
159   DEBUG2("Inserting %s(%s) in the to_run list", process->name, host->name);
160   xbt_swag_insert(process, simix_global->process_to_run);
161
162 }
163
164
165 /** \brief Kill a SIMIX process
166  *
167  * This function simply kills a \a process... scarry isn't it ? :).
168  * \param process poor victim
169  *
170  */
171 void SIMIX_process_kill(smx_process_t process)
172 {
173   smx_simdata_process_t p_simdata = process->simdata;
174
175   DEBUG2("Killing process %s on %s", process->name,
176          p_simdata->smx_host->name);
177
178   /* Cleanup if we were waiting for something */
179   if (p_simdata->mutex)
180     xbt_swag_remove(process, p_simdata->mutex->sleeping);
181
182   if (p_simdata->cond)
183     xbt_swag_remove(process, p_simdata->cond->sleeping);
184
185   xbt_swag_remove(process, simix_global->process_to_run);
186   xbt_swag_remove(process, simix_global->process_list);
187   DEBUG2("%p here! killing %p", simix_global->current_process, process);
188   xbt_context_kill(process->simdata->context);
189
190   if (process == SIMIX_process_self()) {
191     /* I just killed myself */
192     xbt_context_yield();
193   }
194 }
195
196 /**
197  * \brief Return the user data of a #smx_process_t.
198  *
199  * This functions checks whether \a process is a valid pointer or not and return the user data associated to \a process if it is possible.
200  * \param process SIMIX process
201  * \return A void pointer to the user data
202  */
203 void *SIMIX_process_get_data(smx_process_t process)
204 {
205   xbt_assert0((process != NULL), "Invalid parameters");
206
207   return (process->data);
208 }
209
210 /**
211  * \brief Set the user data of a #m_process_t.
212  *
213  * This functions checks whether \a process is a valid pointer or not and set the user data associated to \a process if it is possible.
214  * \param process SIMIX process
215  * \param data User data
216  */
217 void SIMIX_process_set_data(smx_process_t process, void *data)
218 {
219   xbt_assert0((process != NULL), "Invalid parameters");
220   //xbt_assert0((process->data == NULL), "Data already set");
221
222   process->data = data;
223
224   return;
225 }
226
227 /**
228  * \brief Return the location on which an agent is running.
229  *
230  * This functions checks whether \a process is a valid pointer or not and return the m_host_t corresponding to the location on which \a process is running.
231  * \param process SIMIX process
232  * \return SIMIX host
233  */
234 smx_host_t SIMIX_process_get_host(smx_process_t process)
235 {
236   xbt_assert0(((process != NULL)
237                && (process->simdata)), "Invalid parameters");
238
239   return (process->simdata->smx_host);
240 }
241
242 /**
243  * \brief Return the name of an agent.
244  *
245  * This functions checks whether \a process is a valid pointer or not and return its name.
246  * \param process SIMIX process
247  * \return The process name
248  */
249 const char *SIMIX_process_get_name(smx_process_t process)
250 {
251   xbt_assert0(((process != NULL)
252                && (process->simdata)), "Invalid parameters");
253
254   return (process->name);
255 }
256
257 /** \ingroup m_process_management
258  * \brief Return the properties
259  *
260  * This functions returns the properties associated with this process
261  */
262 xbt_dict_t SIMIX_process_get_properties(smx_process_t process)
263 {
264   return process->simdata->properties;
265 }
266
267 /**
268  * \brief Return the current agent.
269  *
270  * This functions returns the currently running #smx_process_t.
271  * \return The SIMIX process
272  */
273 smx_process_t SIMIX_process_self(void)
274 {
275   return simix_global ? simix_global->current_process : NULL;
276 }
277
278 /**
279  * \brief Suspend the process.
280  *
281  * This functions suspend the process by suspending the action on
282  * which it was waiting for the completion.
283  *
284  * \param process SIMIX process
285  */
286 void SIMIX_process_suspend(smx_process_t process)
287 {
288   smx_simdata_process_t simdata = NULL;
289
290   xbt_assert0(((process) && (process->simdata)), "Invalid parameters");
291
292   if (process != SIMIX_process_self()) {
293     simdata = process->simdata;
294
295     if (simdata->mutex) {
296       /* process blocked on a mutex, only set suspend=1 */
297       simdata->suspended = 1;
298     } else if (simdata->cond) {
299       /* process blocked cond, suspend all actions */
300
301       /* temporaries variables */
302       smx_cond_t c;
303       xbt_fifo_item_t i;
304       smx_action_t act;
305
306       simdata->suspended = 1;
307       c = simdata->cond;
308       xbt_fifo_foreach(c->actions, i, act, smx_action_t) {
309         surf_workstation_model->common_public->suspend(act->simdata->
310                                                           surf_action);
311       }
312     } else {
313       simdata->suspended = 1;
314     }
315   } else {
316     /* process executing, I can create an action and suspend it */
317     smx_action_t dummy;
318     smx_cond_t cond;
319     char name[] = "dummy";
320     process->simdata->suspended = 1;
321
322     cond = SIMIX_cond_init();
323     dummy = SIMIX_action_execute(SIMIX_process_get_host(process), name, 0);
324     surf_workstation_model->common_public->suspend(dummy->simdata->surf_action);
325     SIMIX_register_action_to_condition(dummy, cond);
326     __SIMIX_cond_wait(cond);
327     //SIMIX_action_destroy(dummy);
328     //SIMIX_cond_destroy(cond);
329   }
330   return;
331 }
332
333 /**
334  * \brief Resume a suspended process.
335  *
336  * This functions resume a suspended process by resuming the task on which it was waiting for the completion.
337  * \param process SIMIX process
338  */
339 void SIMIX_process_resume(smx_process_t process)
340 {
341   smx_simdata_process_t simdata = NULL;
342
343   xbt_assert0(((process != NULL)
344                && (process->simdata)), "Invalid parameters");
345   SIMIX_CHECK_HOST();
346
347   if (process == SIMIX_process_self()) {
348     return;
349   }
350
351   simdata = process->simdata;
352   if (simdata->mutex) {
353     DEBUG0("Resume process blocked on a mutex");
354     simdata->suspended = 0;     /* He'll wake up by itself */
355     return;
356   } else if (simdata->cond) {
357     /* temporaries variables */
358     smx_cond_t c;
359     xbt_fifo_item_t i;
360     smx_action_t act;
361         DEBUG0("Resume process blocked on a conditional");
362     simdata->suspended = 0;
363     c = simdata->cond;
364     xbt_fifo_foreach(c->actions, i, act, smx_action_t) {
365       surf_workstation_model->common_public->resume(act->simdata->surf_action);
366     }
367     SIMIX_cond_signal(c);
368     return;
369   } else {
370     simdata->suspended = 0;
371     xbt_swag_insert(process, simix_global->process_to_run);
372   }
373
374 }
375
376 /**
377  * \brief Returns true if the process is suspended .
378  *
379  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
380  * \param process SIMIX process
381  * \return 1, if the process is suspended, else 0.
382  */
383 int SIMIX_process_is_suspended(smx_process_t process)
384 {
385   xbt_assert0(((process != NULL)
386                && (process->simdata)), "Invalid parameters");
387
388   return (process->simdata->suspended);
389 }
390
391