Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4623eb68a19098165b74c2c5f96962644587e169
[simgrid.git] / src / msg / msg_gos.c
1 /* Copyright (c) 2004-2011. 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.h"
7 #include "msg_mailbox.h"
8 #include "mc/mc.h"
9 #include "xbt/log.h"
10 #include "xbt/sysdep.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_gos, msg,
13                                 "Logging specific to MSG (gos)");
14
15 /** \ingroup msg_task_usage
16  * \brief Executes a task and waits for its termination.
17  *
18  * This function is used for describing the behavior of a process. It
19  * takes only one parameter.
20  * \param task a #m_task_t to execute on the location on which the process is running.
21  * \return #MSG_OK if the task was successfully completed, #MSG_TASK_CANCELED
22  * or #MSG_HOST_FAILURE otherwise
23  */
24 MSG_error_t MSG_task_execute(m_task_t task)
25 {
26   simdata_task_t simdata = NULL;
27   simdata_process_t p_simdata;
28   e_smx_state_t comp_state;
29
30   simdata = task->simdata;
31
32   xbt_assert(simdata->host_nb == 0,
33               "This is a parallel task. Go to hell.");
34
35 #ifdef HAVE_TRACING
36   TRACE_msg_task_execute_start(task);
37 #endif
38
39   xbt_assert((!simdata->compute) && (task->simdata->isused == 0),
40               "This task is executed somewhere else. Go fix your code! %d",
41               task->simdata->isused);
42
43   XBT_DEBUG("Computing on %s", MSG_process_get_name(MSG_process_self()));
44
45   if (simdata->computation_amount == 0) {
46 #ifdef HAVE_TRACING
47     TRACE_msg_task_execute_end(task);
48 #endif
49     return MSG_OK;
50   }
51
52   m_process_t self = SIMIX_process_self();
53   p_simdata = SIMIX_process_self_get_data(self);
54   simdata->isused=1;
55   simdata->compute =
56       simcall_host_execute(task->name, p_simdata->m_host->simdata->smx_host,
57                            simdata->computation_amount,
58                            simdata->priority);
59 #ifdef HAVE_TRACING
60   simcall_set_category(simdata->compute, task->category);
61 #endif
62
63   p_simdata->waiting_action = simdata->compute;
64   comp_state = simcall_host_execution_wait(simdata->compute);
65   p_simdata->waiting_action = NULL;
66
67   simdata->isused=0;
68
69   XBT_DEBUG("Execution task '%s' finished in state %d", task->name, (int)comp_state);
70   if (comp_state == SIMIX_DONE) {
71     /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */
72     simdata->computation_amount = 0.0;
73     simdata->comm = NULL;
74     simdata->compute = NULL;
75 #ifdef HAVE_TRACING
76     TRACE_msg_task_execute_end(task);
77 #endif
78     MSG_RETURN(MSG_OK);
79   } else if (simcall_host_get_state(SIMIX_host_self()) == 0) {
80     /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */
81     simdata->comm = NULL;
82     simdata->compute = NULL;
83 #ifdef HAVE_TRACING
84     TRACE_msg_task_execute_end(task);
85 #endif
86     MSG_RETURN(MSG_HOST_FAILURE);
87   } else {
88     /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */
89     simdata->comm = NULL;
90     simdata->compute = NULL;
91 #ifdef HAVE_TRACING
92     TRACE_msg_task_execute_end(task);
93 #endif
94     MSG_RETURN(MSG_TASK_CANCELED);
95   }
96 }
97
98 /** \ingroup m_task_management
99  * \brief Creates a new #m_task_t (a parallel one....).
100  *
101  * A constructor for #m_task_t taking six arguments and returning the
102  corresponding object.
103  * \param name a name for the object. It is for user-level information
104  and can be NULL.
105  * \param host_nb the number of hosts implied in the parallel task.
106  * \param host_list an array of \p host_nb m_host_t.
107  * \param computation_amount an array of \p host_nb
108  doubles. computation_amount[i] is the total number of operations
109  that have to be performed on host_list[i].
110  * \param communication_amount an array of \p host_nb* \p host_nb doubles.
111  * \param data a pointer to any data may want to attach to the new
112  object.  It is for user-level information and can be NULL. It can
113  be retrieved with the function \ref MSG_task_get_data.
114  * \see m_task_t
115  * \return The new corresponding object.
116  */
117 m_task_t
118 MSG_parallel_task_create(const char *name, int host_nb,
119                          const m_host_t * host_list,
120                          double *computation_amount,
121                          double *communication_amount, void *data)
122 {
123   int i;
124   simdata_task_t simdata = xbt_new0(s_simdata_task_t, 1);
125   m_task_t task = xbt_new0(s_m_task_t, 1);
126   task->simdata = simdata;
127
128   /* Task structure */
129   task->name = xbt_strdup(name);
130   task->data = data;
131
132   /* Simulator Data */
133   simdata->computation_amount = 0;
134   simdata->message_size = 0;
135   simdata->compute = NULL;
136   simdata->comm = NULL;
137   simdata->rate = -1.0;
138   simdata->isused = 0;
139   simdata->sender = NULL;
140   simdata->receiver = NULL;
141   simdata->source = NULL;
142
143   simdata->host_nb = host_nb;
144   simdata->host_list = xbt_new0(smx_host_t, host_nb);
145   simdata->comp_amount = computation_amount;
146   simdata->comm_amount = communication_amount;
147
148   for (i = 0; i < host_nb; i++)
149     simdata->host_list[i] = host_list[i]->simdata->smx_host;
150
151   return task;
152 }
153
154 /** \ingroup msg_task_usage
155  * \brief Executes a parallel task and waits for its termination.
156  *
157  * \param task a #m_task_t to execute on the location on which the process is running.
158  *
159  * \return #MSG_OK if the task was successfully completed, #MSG_TASK_CANCELED
160  * or #MSG_HOST_FAILURE otherwise
161  */
162 MSG_error_t MSG_parallel_task_execute(m_task_t task)
163 {
164   simdata_task_t simdata = NULL;
165   e_smx_state_t comp_state;
166   simdata_process_t p_simdata;
167
168   simdata = task->simdata;
169   p_simdata = SIMIX_process_self_get_data(SIMIX_process_self());
170
171   xbt_assert((!simdata->compute)
172               && (task->simdata->isused == 0),
173               "This task is executed somewhere else. Go fix your code!");
174
175   xbt_assert(simdata->host_nb,
176               "This is not a parallel task. Go to hell.");
177
178   XBT_DEBUG("Parallel computing on %s", p_simdata->m_host->name);
179
180   simdata->isused=1;
181
182   simdata->compute =
183       simcall_host_parallel_execute(task->name, simdata->host_nb,
184                                   simdata->host_list,
185                                   simdata->comp_amount,
186                                   simdata->comm_amount, 1.0, -1.0);
187   XBT_DEBUG("Parallel execution action created: %p", simdata->compute);
188
189   p_simdata->waiting_action = simdata->compute;
190   comp_state = simcall_host_execution_wait(simdata->compute);
191   p_simdata->waiting_action = NULL;
192
193   XBT_DEBUG("Finished waiting for execution of action %p, state = %d", simdata->compute, (int)comp_state);
194
195   simdata->isused=0;
196
197   if (comp_state == SIMIX_DONE) {
198     /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */
199     simdata->computation_amount = 0.0;
200     simdata->comm = NULL;
201     simdata->compute = NULL;
202     MSG_RETURN(MSG_OK);
203   } else if (simcall_host_get_state(SIMIX_host_self()) == 0) {
204     /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */
205     simdata->comm = NULL;
206     simdata->compute = NULL;
207     MSG_RETURN(MSG_HOST_FAILURE);
208   } else {
209     /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */
210     simdata->comm = NULL;
211     simdata->compute = NULL;
212     MSG_RETURN(MSG_TASK_CANCELED);
213   }
214 }
215
216
217 /** \ingroup msg_task_usage
218  * \brief Sleep for the specified number of seconds
219  *
220  * Makes the current process sleep until \a time seconds have elapsed.
221  *
222  * \param nb_sec a number of second
223  */
224 MSG_error_t MSG_process_sleep(double nb_sec)
225 {
226   e_smx_state_t state;
227   /*m_process_t proc = MSG_process_self();*/
228
229 #ifdef HAVE_TRACING
230   TRACE_msg_process_sleep_in(MSG_process_self());
231 #endif
232
233   /* create action to sleep */
234   state = simcall_process_sleep(nb_sec);
235
236   /*proc->simdata->waiting_action = act_sleep;
237
238   FIXME: check if not setting the waiting_action breaks something on msg
239   
240   proc->simdata->waiting_action = NULL;*/
241   
242   if (state == SIMIX_DONE) {
243 #ifdef HAVE_TRACING
244   TRACE_msg_process_sleep_out(MSG_process_self());
245 #endif
246     MSG_RETURN(MSG_OK);
247   } else {
248 #ifdef HAVE_TRACING
249     TRACE_msg_process_sleep_out(MSG_process_self());
250 #endif
251     MSG_RETURN(MSG_HOST_FAILURE);
252   }
253 }
254
255 /** \ingroup msg_task_usage
256  * \brief Receives a task from a mailbox from a specific host.
257  *
258  * This is a blocking function, the execution flow will be blocked
259  * until the task is received. See #MSG_task_irecv
260  * for receiving tasks asynchronously.
261  *
262  * \param task a memory location for storing a #m_task_t.
263  * \param alias name of the mailbox to receive the task from
264  * \param host a #m_host_t host from where the task was sent
265  *
266  * \return Returns
267  * #MSG_OK if the task was successfully received,
268  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
269  */
270 MSG_error_t
271 MSG_task_receive_from_host(m_task_t * task, const char *alias,
272                            m_host_t host)
273 {
274   return MSG_task_receive_ext(task, alias, -1, host);
275 }
276
277 /** \ingroup msg_task_usage
278  * \brief Receives a task from a mailbox.
279  *
280  * This is a blocking function, the execution flow will be blocked
281  * until the task is received. See #MSG_task_irecv
282  * for receiving tasks asynchronously.
283  *
284  * \param task a memory location for storing a #m_task_t.
285  * \param alias name of the mailbox to receive the task from
286  *
287  * \return Returns
288  * #MSG_OK if the task was successfully received,
289  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
290  */
291 MSG_error_t MSG_task_receive(m_task_t * task, const char *alias)
292 {
293   return MSG_task_receive_with_timeout(task, alias, -1);
294 }
295
296 /** \ingroup msg_task_usage
297  * \brief Receives a task from a mailbox with a given timeout.
298  *
299  * This is a blocking function with a timeout, the execution flow will be blocked
300  * until the task is received or the timeout is achieved. See #MSG_task_irecv
301  * for receiving tasks asynchronously.  You can provide a -1 timeout
302  * to obtain an infinite timeout.
303  *
304  * \param task a memory location for storing a #m_task_t.
305  * \param alias name of the mailbox to receive the task from
306  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_receive)
307  *
308  * \return Returns
309  * #MSG_OK if the task was successfully received,
310  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
311  */
312 MSG_error_t
313 MSG_task_receive_with_timeout(m_task_t * task, const char *alias,
314                               double timeout)
315 {
316   return MSG_task_receive_ext(task, alias, timeout, NULL);
317 }
318
319 /** \ingroup msg_task_usage
320  * \brief Receives a task from a mailbox from a specific host with a given timeout.
321  *
322  * This is a blocking function with a timeout, the execution flow will be blocked
323  * until the task is received or the timeout is achieved. See #MSG_task_irecv
324  * for receiving tasks asynchronously. You can provide a -1 timeout
325  * to obtain an infinite timeout.
326  *
327  * \param task a memory location for storing a #m_task_t.
328  * \param alias name of the mailbox to receive the task from
329  * \param timeout is the maximum wait time for completion (provide -1 for no timeout)
330  * \param host a #m_host_t host from where the task was sent
331  *
332  * \return Returns
333  * #MSG_OK if the task was successfully received,
334 * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
335  */
336 MSG_error_t
337 MSG_task_receive_ext(m_task_t * task, const char *alias, double timeout,
338                      m_host_t host)
339 {
340   XBT_DEBUG
341       ("MSG_task_receive_ext: Trying to receive a message on mailbox '%s'",
342        alias);
343   return MSG_mailbox_get_task_ext(MSG_mailbox_get_by_alias(alias), task,
344                                   host, timeout);
345 }
346
347 /** \ingroup msg_task_usage
348  * \brief Sends a task on a mailbox.
349  *
350  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test()
351  * to end the communication.
352  *
353  * \param task a #m_task_t to send on another location.
354  * \param alias name of the mailbox to sent the task to
355  * \return the msg_comm_t communication created
356  */
357 msg_comm_t MSG_task_isend(m_task_t task, const char *alias)
358 {
359   return MSG_task_isend_with_matching(task,alias,NULL,NULL);
360 }
361
362 /** \ingroup msg_task_usage
363  * \brief Sends a task on a mailbox, with support for matching requests
364  *
365  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test()
366  * to end the communication.
367  *
368  * \param task a #m_task_t to send on another location.
369  * \param alias name of the mailbox to sent the task to
370  * \param match_fun boolean function taking the match_data provided by sender (here), and the one of the receiver (if any) and returning whether they match
371  * \param match_data user provided data passed to match_fun
372  * \return the msg_comm_t communication created
373  */
374 XBT_INLINE msg_comm_t MSG_task_isend_with_matching(m_task_t task, const char *alias,
375     int (*match_fun)(void*,void*),
376     void *match_data)
377 {
378   simdata_task_t t_simdata = NULL;
379   m_process_t process = MSG_process_self();
380   msg_mailbox_t mailbox = MSG_mailbox_get_by_alias(alias);
381
382   /* FIXME: these functions are not traceable */
383
384   /* Prepare the task to send */
385   t_simdata = task->simdata;
386   t_simdata->sender = process;
387   t_simdata->source = ((simdata_process_t) SIMIX_process_self_get_data(process))->m_host;
388
389   xbt_assert(t_simdata->isused == 0,
390               "This task is still being used somewhere else. You cannot send it now. Go fix your code!");
391
392   t_simdata->isused = 1;
393   t_simdata->comm = NULL;
394   msg_global->sent_msg++;
395
396   /* Send it by calling SIMIX network layer */
397   msg_comm_t comm = xbt_new0(s_msg_comm_t, 1);
398   comm->task_sent = task;
399   comm->task_received = NULL;
400   comm->status = MSG_OK;
401   comm->s_comm =
402     simcall_comm_isend(mailbox, t_simdata->message_size,
403                          t_simdata->rate, task, sizeof(void *), match_fun, NULL, match_data, 0);
404   t_simdata->comm = comm->s_comm; /* FIXME: is the field t_simdata->comm still useful? */
405
406   return comm;
407 }
408
409 /** \ingroup msg_task_usage
410  * \brief Sends a task on a mailbox.
411  *
412  * This is a non blocking detached send function.
413  * Think of it as a best effort send. Keep in mind that the third parameter
414  * is only called if the communication fails. If the communication does work,
415  * it is responsibility of the receiver code to free anything related to
416  * the task, as usual. More details on this can be obtained on
417  * <a href="http://lists.gforge.inria.fr/pipermail/simgrid-user/2011-November/002649.html">this thread</a>
418  * in the SimGrid-user mailing list archive.
419  *
420  * \param task a #m_task_t to send on another location.
421  * \param alias name of the mailbox to sent the task to
422  * \param cleanup a function to destroy the task if the
423  * communication fails, e.g. MSG_task_destroy
424  * (if NULL, no function will be called)
425  */
426 void MSG_task_dsend(m_task_t task, const char *alias, void_f_pvoid_t cleanup)
427 {
428   simdata_task_t t_simdata = NULL;
429   m_process_t process = MSG_process_self();
430   msg_mailbox_t mailbox = MSG_mailbox_get_by_alias(alias);
431
432   /* FIXME: these functions are not traceable */
433
434   /* Prepare the task to send */
435   t_simdata = task->simdata;
436   t_simdata->sender = process;
437   t_simdata->source = ((simdata_process_t) SIMIX_process_self_get_data(process))->m_host;
438
439   xbt_assert(t_simdata->isused == 0,
440               "This task is still being used somewhere else. You cannot send it now. Go fix your code!");
441
442   t_simdata->isused = 1;
443   t_simdata->comm = NULL;
444   msg_global->sent_msg++;
445
446   /* Send it by calling SIMIX network layer */
447   smx_action_t comm = simcall_comm_isend(mailbox, t_simdata->message_size,
448                        t_simdata->rate, task, sizeof(void *), NULL, cleanup, NULL, 1);
449   t_simdata->comm = comm;
450 }
451
452 /** \ingroup msg_task_usage
453  * \brief Starts listening for receiving a task from an asynchronous communication.
454  *
455  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test()
456  * to end the communication.
457  *
458  * \param task a memory location for storing a #m_task_t.
459  * \param name of the mailbox to receive the task on
460  * \return the msg_comm_t communication created
461  */
462 msg_comm_t MSG_task_irecv(m_task_t *task, const char *name)
463 {
464   smx_rdv_t rdv = MSG_mailbox_get_by_alias(name);
465
466   /* FIXME: these functions are not traceable */
467
468   /* Sanity check */
469   xbt_assert(task, "Null pointer for the task storage");
470
471   if (*task)
472     XBT_CRITICAL
473         ("MSG_task_irecv() was asked to write in a non empty task struct.");
474
475   /* Try to receive it by calling SIMIX network layer */
476   msg_comm_t comm = xbt_new0(s_msg_comm_t, 1);
477   comm->task_sent = NULL;
478   comm->task_received = task;
479   comm->status = MSG_OK;
480   comm->s_comm = simcall_comm_irecv(rdv, task, NULL, NULL, NULL);
481
482   return comm;
483 }
484
485 /** \ingroup msg_task_usage
486  * \brief Checks whether a communication is done, and if yes, finalizes it.
487  * \param comm the communication to test
488  * \return TRUE if the communication is finished
489  * (but it may have failed, use MSG_comm_get_status() to know its status)
490  * or FALSE if the communication is not finished yet
491  * If the status is FALSE, don't forget to use MSG_process_sleep() after the test.
492  */
493 int MSG_comm_test(msg_comm_t comm)
494 {
495   xbt_ex_t e;
496   int finished = 0;
497   TRY {
498     finished = simcall_comm_test(comm->s_comm);
499
500     if (finished && comm->task_received != NULL) {
501       /* I am the receiver */
502       (*comm->task_received)->simdata->isused = 0;
503     }
504   }
505   CATCH(e) {
506     switch (e.category) {
507
508       case host_error:
509         comm->status = MSG_HOST_FAILURE;
510         finished = 1;
511         break;
512
513       case network_error:
514         comm->status = MSG_TRANSFER_FAILURE;
515         finished = 1;
516         break;
517
518       case timeout_error:
519         comm->status = MSG_TIMEOUT;
520         finished = 1;
521         break;
522
523       default:
524         RETHROW;
525     }
526     xbt_ex_free(e);
527   }
528
529   return finished;
530 }
531
532 /** \ingroup msg_task_usage
533  * \brief This function checks if a communication is finished.
534  * \param comms a vector of communications
535  * \return the position of the finished communication if any
536  * (but it may have failed, use MSG_comm_get_status() to know its status),
537  * or -1 if none is finished
538  */
539 int MSG_comm_testany(xbt_dynar_t comms)
540 {
541   xbt_ex_t e;
542   int finished_index = -1;
543
544   /* create the equivalent dynar with SIMIX objects */
545   xbt_dynar_t s_comms = xbt_dynar_new(sizeof(smx_action_t), NULL);
546   msg_comm_t comm;
547   unsigned int cursor;
548   xbt_dynar_foreach(comms, cursor, comm) {
549     xbt_dynar_push(s_comms, &comm->s_comm);
550   }
551
552   MSG_error_t status = MSG_OK;
553   TRY {
554     finished_index = simcall_comm_testany(s_comms);
555   }
556   CATCH(e) {
557     switch (e.category) {
558
559       case host_error:
560         finished_index = e.value;
561         status = MSG_HOST_FAILURE;
562         break;
563
564       case network_error:
565         finished_index = e.value;
566         status = MSG_TRANSFER_FAILURE;
567         break;
568
569       case timeout_error:
570         finished_index = e.value;
571         status = MSG_TIMEOUT;
572         break;
573
574       default:
575         RETHROW;
576     }
577     xbt_ex_free(e);
578   }
579   xbt_dynar_free(&s_comms);
580
581   if (finished_index != -1) {
582     comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
583     /* the communication is finished */
584     comm->status = status;
585
586     if (status == MSG_OK && comm->task_received != NULL) {
587       /* I am the receiver */
588       (*comm->task_received)->simdata->isused = 0;
589     }
590   }
591
592   return finished_index;
593 }
594
595 /** \ingroup msg_task_usage
596  * \brief Destroys a communication.
597  * \param comm the communication to destroy.
598  */
599 void MSG_comm_destroy(msg_comm_t comm)
600 {
601   xbt_free(comm);
602 }
603
604 /** \ingroup msg_task_usage
605  * \brief Wait for the completion of a communication.
606  *
607  * It takes two parameters.
608  * \param comm the communication to wait.
609  * \param timeout Wait until the communication terminates or the timeout occurs
610  * \return MSG_error_t
611  */
612 MSG_error_t MSG_comm_wait(msg_comm_t comm, double timeout)
613 {
614   xbt_ex_t e;
615   TRY {
616     simcall_comm_wait(comm->s_comm, timeout);
617
618     if (comm->task_received != NULL) {
619       /* I am the receiver */
620       (*comm->task_received)->simdata->isused = 0;
621     }
622
623     /* FIXME: these functions are not traceable */
624   }
625   CATCH(e) {
626     switch (e.category) {
627     case host_error:
628       comm->status = MSG_HOST_FAILURE;
629       break;
630     case network_error:
631       comm->status = MSG_TRANSFER_FAILURE;
632       break;
633     case timeout_error:
634       comm->status = MSG_TIMEOUT;
635       break;
636     default:
637       RETHROW;
638     }
639     xbt_ex_free(e);
640   }
641
642   return comm->status;
643 }
644
645 /** \ingroup msg_task_usage
646 * \brief This function is called by a sender and permit to wait for each communication
647 *
648 * \param comm a vector of communication
649 * \param nb_elem is the size of the comm vector
650 * \param timeout for each call of MSG_comm_wait
651 */
652 void MSG_comm_waitall(msg_comm_t * comm, int nb_elem, double timeout)
653 {
654   int i = 0;
655   for (i = 0; i < nb_elem; i++) {
656     MSG_comm_wait(comm[i], timeout);
657   }
658 }
659
660 /** \ingroup msg_task_usage
661  * \brief This function waits for the first communication finished in a list.
662  * \param comms a vector of communications
663  * \return the position of the first finished communication
664  * (but it may have failed, use MSG_comm_get_status() to know its status)
665  */
666 int MSG_comm_waitany(xbt_dynar_t comms)
667 {
668   xbt_ex_t e;
669   int finished_index = -1;
670
671   /* create the equivalent dynar with SIMIX objects */
672   xbt_dynar_t s_comms = xbt_dynar_new(sizeof(smx_action_t), NULL);
673   msg_comm_t comm;
674   unsigned int cursor;
675   xbt_dynar_foreach(comms, cursor, comm) {
676     xbt_dynar_push(s_comms, &comm->s_comm);
677   }
678
679   MSG_error_t status = MSG_OK;
680   TRY {
681     finished_index = simcall_comm_waitany(s_comms);
682   }
683   CATCH(e) {
684     switch (e.category) {
685
686       case host_error:
687         finished_index = e.value;
688         status = MSG_HOST_FAILURE;
689         break;
690
691       case network_error:
692         finished_index = e.value;
693         status = MSG_TRANSFER_FAILURE;
694         break;
695
696       case timeout_error:
697         finished_index = e.value;
698         status = MSG_TIMEOUT;
699         break;
700
701       default:
702         RETHROW;
703     }
704     xbt_ex_free(e);
705   }
706
707   xbt_assert(finished_index != -1, "WaitAny returned -1");
708   xbt_dynar_free(&s_comms);
709
710   comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
711   /* the communication is finished */
712   comm->status = status;
713
714   if (comm->task_received != NULL) {
715     /* I am the receiver */
716     (*comm->task_received)->simdata->isused = 0;
717   }
718
719   return finished_index;
720 }
721
722 /**
723  * \ingroup msg_task_usage
724  * \brief Returns the error (if any) that occured during a finished communication.
725  * \param comm a finished communication
726  * \return the status of the communication, or #MSG_OK if no error occured
727  * during the communication
728  */
729 MSG_error_t MSG_comm_get_status(msg_comm_t comm) {
730
731   return comm->status;
732 }
733
734 /** \ingroup msg_task_usage
735  * \brief Get a task (#m_task_t) from a communication
736  *
737  * \param comm the communication where to get the task
738  * \return the task from the communication
739  */
740 m_task_t MSG_comm_get_task(msg_comm_t comm)
741 {
742   xbt_assert(comm, "Invalid parameter");
743
744   return comm->task_received ? *comm->task_received : comm->task_sent;
745 }
746
747 /**
748  * \brief This function is called by SIMIX to copy the data of a comm.
749  * \param comm the comm
750  * \param buff the data copied
751  * \param buff_size size of the buffer
752  */
753 void MSG_comm_copy_data_from_SIMIX(smx_action_t comm, void* buff, size_t buff_size) {
754
755   // copy the task
756   SIMIX_comm_copy_pointer_callback(comm, buff, buff_size);
757
758   // notify the user callback if any
759   if (msg_global->task_copy_callback) {
760     m_task_t task = buff;
761     msg_global->task_copy_callback(task,
762         simcall_comm_get_src_proc(comm), simcall_comm_get_dst_proc(comm));
763   }
764 }
765
766 /** \ingroup msg_task_usage
767  * \brief Sends a task to a mailbox
768  *
769  * This is a blocking function, the execution flow will be blocked
770  * until the task is sent (and received in the other side if #MSG_task_receive is used).
771  * See #MSG_task_isend for sending tasks asynchronously.
772  *
773  * \param task the task to be sent
774  * \param alias the mailbox name to where the task is sent
775  *
776  * \return Returns #MSG_OK if the task was successfully sent,
777  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
778  */
779 MSG_error_t MSG_task_send(m_task_t task, const char *alias)
780 {
781   XBT_DEBUG("MSG_task_send: Trying to send a message on mailbox '%s'", alias);
782   return MSG_task_send_with_timeout(task, alias, -1);
783 }
784
785 /** \ingroup msg_task_usage
786  * \brief Sends a task to a mailbox with a maximum rate
787  *
788  * This is a blocking function, the execution flow will be blocked
789  * until the task is sent. The maxrate parameter allows the application
790  * to limit the bandwidth utilization of network links when sending the task.
791  *
792  * \param task the task to be sent
793  * \param alias the mailbox name to where the task is sent
794  * \param maxrate the maximum communication rate for sending this task
795  *
796  * \return Returns #MSG_OK if the task was successfully sent,
797  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
798  */
799 MSG_error_t
800 MSG_task_send_bounded(m_task_t task, const char *alias, double maxrate)
801 {
802   task->simdata->rate = maxrate;
803   return MSG_task_send(task, alias);
804 }
805
806 /** \ingroup msg_task_usage
807  * \brief Sends a task to a mailbox with a timeout
808  *
809  * This is a blocking function, the execution flow will be blocked
810  * until the task is sent or the timeout is achieved.
811  *
812  * \param task the task to be sent
813  * \param alias the mailbox name to where the task is sent
814  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
815  *
816  * \return Returns #MSG_OK if the task was successfully sent,
817  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
818  */
819 MSG_error_t
820 MSG_task_send_with_timeout(m_task_t task, const char *alias,
821                            double timeout)
822 {
823   return MSG_mailbox_put_with_timeout(MSG_mailbox_get_by_alias(alias),
824                                       task, timeout);
825 }
826
827 /** \ingroup msg_task_usage
828  * \brief Check if there is a communication going on in a mailbox.
829  *
830  * \param alias the name of the mailbox to be considered
831  *
832  * \return Returns 1 if there is a communication, 0 otherwise
833  */
834 int MSG_task_listen(const char *alias)
835 {
836   return !MSG_mailbox_is_empty(MSG_mailbox_get_by_alias(alias));
837 }
838
839 /** \ingroup msg_task_usage
840  * \brief Check the number of communication actions of a given host pending in a mailbox.
841  *
842  * \param alias the name of the mailbox to be considered
843  * \param host the host to check for communication
844  *
845  * \return Returns the number of pending communication actions of the host in the
846  * given mailbox, 0 if there is no pending communication actions.
847  *
848  */
849 int MSG_task_listen_from_host(const char *alias, m_host_t host)
850 {
851   return
852       MSG_mailbox_get_count_host_waiting_tasks(MSG_mailbox_get_by_alias
853                                                (alias), host);
854 }
855
856 /** \ingroup msg_task_usage
857  * \brief Look if there is a communication on a mailbox and return the
858  * PID of the sender process.
859  *
860  * \param alias the name of the mailbox to be considered
861  *
862  * \return Returns the PID of sender process,
863  * -1 if there is no communication in the mailbox.
864  */
865 int MSG_task_listen_from(const char *alias)
866 {
867   m_task_t task;
868
869   if (NULL ==
870       (task = MSG_mailbox_get_head(MSG_mailbox_get_by_alias(alias))))
871     return -1;
872
873   return MSG_process_get_PID(task->simdata->sender);
874 }
875
876 /** \ingroup msg_task_usage
877  * \brief Sets the tracing category of a task.
878  *
879  * This function should be called after the creation of
880  * a MSG task, to define the category of that task. The
881  * first parameter task must contain a task that was
882  * created with the function #MSG_task_create. The second
883  * parameter category must contain a category that was
884  * previously declared with the function #TRACE_category
885  * (or with #TRACE_category_with_color).
886  *
887  * See \ref tracing_tracing for details on how to trace
888  * the (categorized) resource utilization.
889  *
890  * \param task the task that is going to be categorized
891  * \param category the name of the category to be associated to the task
892  *
893  * \see MSG_task_get_category, TRACE_category, TRACE_category_with_color
894  */
895 void MSG_task_set_category (m_task_t task, const char *category)
896 {
897 #ifdef HAVE_TRACING
898   TRACE_msg_set_task_category (task, category);
899 #endif
900 }
901
902 /** \ingroup msg_task_usage
903  *
904  * \brief Gets the current tracing category of a task.
905  *
906  * \param task the task to be considered
907  *
908  * \see MSG_task_set_category
909  *
910  * \return Returns the name of the tracing category of the given task, NULL otherwise
911  */
912 const char *MSG_task_get_category (m_task_t task)
913 {
914 #ifdef HAVE_TRACING
915   return task->category;
916 #else
917   return NULL;
918 #endif
919 }
920
921 #ifdef MSG_USE_DEPRECATED
922 /** \ingroup msg_deprecated_functions
923  *
924  * \brief Return the last value returned by a MSG function (except
925  * MSG_get_errno...).
926  */
927 MSG_error_t MSG_get_errno(void)
928 {
929   return PROCESS_GET_ERRNO();
930 }
931
932 /** \ingroup msg_deprecated_functions
933  * \brief Put a task on a channel of an host and waits for the end of the
934  * transmission.
935  *
936  * This function is used for describing the behavior of a process. It
937  * takes three parameter.
938  * \param task a #m_task_t to send on another location. This task
939  will not be usable anymore when the function will return. There is
940  no automatic task duplication and you have to save your parameters
941  before calling this function. Tasks are unique and once it has been
942  sent to another location, you should not access it anymore. You do
943  not need to call MSG_task_destroy() but to avoid using, as an
944  effect of inattention, this task anymore, you definitely should
945  renitialize it with #MSG_TASK_UNINITIALIZED. Note that this task
946  can be transfered iff it has been correctly created with
947  MSG_task_create().
948  * \param dest the destination of the message
949  * \param channel the channel on which the process should put this
950  task. This value has to be >=0 and < than the maximal number of
951  channels fixed with MSG_set_channel_number().
952  * \return #MSG_HOST_FAILURE if the host on which
953  * this function was called was shut down,
954  * #MSG_TRANSFER_FAILURE if the transfer could not be properly done
955  * (network failure, dest failure) or #MSG_OK if it succeeded.
956  */
957 MSG_error_t MSG_task_put(m_task_t task, m_host_t dest, m_channel_t channel)
958 {
959   XBT_WARN("DEPRECATED! Now use MSG_task_send");
960   return MSG_task_put_with_timeout(task, dest, channel, -1.0);
961 }
962
963 /** \ingroup msg_deprecated_functions
964  * \brief Does exactly the same as MSG_task_put but with a bounded transmition
965  * rate.
966  *
967  * \sa MSG_task_put
968  */
969 MSG_error_t
970 MSG_task_put_bounded(m_task_t task, m_host_t dest, m_channel_t channel,
971                      double maxrate)
972 {
973   XBT_WARN("DEPRECATED! Now use MSG_task_send_bounded");
974   task->simdata->rate = maxrate;
975   return MSG_task_put(task, dest, channel);
976 }
977
978 /** \ingroup msg_deprecated_functions
979  *
980  * \brief Put a task on a channel of an
981  * host (with a timeout on the waiting of the destination host) and
982  * waits for the end of the transmission.
983  *
984  * This function is used for describing the behavior of a process. It
985  * takes four parameter.
986  * \param task a #m_task_t to send on another location. This task
987  will not be usable anymore when the function will return. There is
988  no automatic task duplication and you have to save your parameters
989  before calling this function. Tasks are unique and once it has been
990  sent to another location, you should not access it anymore. You do
991  not need to call MSG_task_destroy() but to avoid using, as an
992  effect of inattention, this task anymore, you definitely should
993  renitialize it with #MSG_TASK_UNINITIALIZED. Note that this task
994  can be transfered iff it has been correctly created with
995  MSG_task_create().
996  * \param dest the destination of the message
997  * \param channel the channel on which the process should put this
998  task. This value has to be >=0 and < than the maximal number of
999  channels fixed with MSG_set_channel_number().
1000  * \param timeout the maximum time to wait for a task before giving
1001  up. In such a case, #MSG_TRANSFER_FAILURE will be returned, \a task
1002  will not be modified
1003  * \return #MSG_HOST_FAILURE if the host on which
1004 this function was called was shut down,
1005 #MSG_TRANSFER_FAILURE if the transfer could not be properly done
1006 (network failure, dest failure, timeout...) or #MSG_OK if the communication succeeded.
1007  */
1008 MSG_error_t
1009 MSG_task_put_with_timeout(m_task_t task, m_host_t dest,
1010                           m_channel_t channel, double timeout)
1011 {
1012   XBT_WARN("DEPRECATED! Now use MSG_task_send_with_timeout");
1013   xbt_assert((channel >= 0)
1014               && (channel < msg_global->max_channel), "Invalid channel %d",
1015               channel);
1016
1017   XBT_DEBUG("MSG_task_put_with_timout: Trying to send a task to '%s'", dest->name);
1018   return
1019       MSG_mailbox_put_with_timeout(MSG_mailbox_get_by_channel
1020                                    (dest, channel), task, timeout);
1021 }
1022
1023 /** \ingroup msg_deprecated_functions
1024  * \brief Test whether there is a pending communication on a channel, and who sent it.
1025  *
1026  * It takes one parameter.
1027  * \param channel the channel on which the process should be
1028  listening. This value has to be >=0 and < than the maximal
1029  number of channels fixed with MSG_set_channel_number().
1030  * \return -1 if there is no pending communication and the PID of the process who sent it otherwise
1031  */
1032 int MSG_task_probe_from(m_channel_t channel)
1033 {
1034   XBT_WARN("DEPRECATED! Now use MSG_task_listen_from");
1035   m_task_t task;
1036
1037   xbt_assert((channel >= 0)
1038               && (channel < msg_global->max_channel), "Invalid channel %d",
1039               channel);
1040
1041   if (NULL ==
1042       (task =
1043        MSG_mailbox_get_head(MSG_mailbox_get_by_channel
1044                             (MSG_host_self(), channel))))
1045     return -1;
1046
1047   return MSG_process_get_PID(task->simdata->sender);
1048 }
1049
1050 /** \ingroup msg_deprecated_functions
1051  * \brief Test whether there is a pending communication on a channel.
1052  *
1053  * It takes one parameter.
1054  * \param channel the channel on which the process should be
1055  listening. This value has to be >=0 and < than the maximal
1056  number of channels fixed with MSG_set_channel_number().
1057  * \return 1 if there is a pending communication and 0 otherwise
1058  */
1059 int MSG_task_Iprobe(m_channel_t channel)
1060 {
1061   XBT_WARN("DEPRECATED!");
1062   xbt_assert((channel >= 0)
1063               && (channel < msg_global->max_channel), "Invalid channel %d",
1064               channel);
1065
1066   return
1067       !MSG_mailbox_is_empty(MSG_mailbox_get_by_channel
1068                             (MSG_host_self(), channel));
1069 }
1070
1071 /** \ingroup msg_deprecated_functions
1072
1073  * \brief Return the number of tasks waiting to be received on a \a
1074  channel and sent by \a host.
1075  *
1076  * It takes two parameters.
1077  * \param channel the channel on which the process should be
1078  listening. This value has to be >=0 and < than the maximal
1079  number of channels fixed with MSG_set_channel_number().
1080  * \param host the host that is to be watched.
1081  * \return the number of tasks waiting to be received on \a channel
1082  and sent by \a host.
1083  */
1084 int MSG_task_probe_from_host(int channel, m_host_t host)
1085 {
1086   XBT_WARN("DEPRECATED! Now use MSG_task_listen_from_host");
1087   xbt_assert((channel >= 0)
1088               && (channel < msg_global->max_channel), "Invalid channel %d",
1089               channel);
1090
1091   return
1092       MSG_mailbox_get_count_host_waiting_tasks(MSG_mailbox_get_by_channel
1093                                                (MSG_host_self(), channel),
1094                                                host);
1095
1096 }
1097
1098 /** \ingroup msg_deprecated_functions
1099  * \brief Listen on \a channel and waits for receiving a task from \a host.
1100  *
1101  * It takes three parameters.
1102  * \param task a memory location for storing a #m_task_t. It will
1103  hold a task when this function will return. Thus \a task should not
1104  be equal to \c NULL and \a *task should be equal to \c NULL. If one of
1105  those two condition does not hold, there will be a warning message.
1106  * \param channel the channel on which the process should be
1107  listening. This value has to be >=0 and < than the maximal
1108  number of channels fixed with MSG_set_channel_number().
1109  * \param host the host that is to be watched.
1110  * \return a #MSG_error_t indicating whether the operation was successful (#MSG_OK), or why it failed otherwise.
1111  */
1112 MSG_error_t
1113 MSG_task_get_from_host(m_task_t * task, m_channel_t channel, m_host_t host)
1114 {
1115   XBT_WARN("DEPRECATED! Now use MSG_task_receive_from_host");
1116   return MSG_task_get_ext(task, channel, -1, host);
1117 }
1118
1119 /** \ingroup msg_deprecated_functions
1120  * \brief Listen on a channel and wait for receiving a task.
1121  *
1122  * It takes two parameters.
1123  * \param task a memory location for storing a #m_task_t. It will
1124  hold a task when this function will return. Thus \a task should not
1125  be equal to \c NULL and \a *task should be equal to \c NULL. If one of
1126  those two condition does not hold, there will be a warning message.
1127  * \param channel the channel on which the process should be
1128  listening. This value has to be >=0 and < than the maximal
1129  number of channels fixed with MSG_set_channel_number().
1130  * \return a #MSG_error_t indicating whether the operation was successful (#MSG_OK), or why it failed otherwise.
1131  */
1132 MSG_error_t MSG_task_get(m_task_t * task, m_channel_t channel)
1133 {
1134   XBT_WARN("DEPRECATED! Now use MSG_task_receive");
1135   return MSG_task_get_with_timeout(task, channel, -1);
1136 }
1137
1138 /** \ingroup msg_deprecated_functions
1139  * \brief Listen on a channel and wait for receiving a task with a timeout.
1140  *
1141  * It takes three parameters.
1142  * \param task a memory location for storing a #m_task_t. It will
1143  hold a task when this function will return. Thus \a task should not
1144  be equal to \c NULL and \a *task should be equal to \c NULL. If one of
1145  those two condition does not hold, there will be a warning message.
1146  * \param channel the channel on which the process should be
1147  listening. This value has to be >=0 and < than the maximal
1148  number of channels fixed with MSG_set_channel_number().
1149  * \param max_duration the maximum time to wait for a task before giving
1150  up. In such a case, #MSG_TRANSFER_FAILURE will be returned, \a task
1151  will not be modified and will still be
1152  equal to \c NULL when returning.
1153  * \return a #MSG_error_t indicating whether the operation was successful (#MSG_OK), or why it failed otherwise.
1154  */
1155 MSG_error_t
1156 MSG_task_get_with_timeout(m_task_t * task, m_channel_t channel,
1157                           double max_duration)
1158 {
1159   XBT_WARN("DEPRECATED! Now use MSG_task_receive_with_timeout");
1160   return MSG_task_get_ext(task, channel, max_duration, NULL);
1161 }
1162
1163 MSG_error_t
1164 MSG_task_get_ext(m_task_t * task, m_channel_t channel, double timeout,
1165                  m_host_t host)
1166 {
1167   XBT_WARN("DEPRECATED! Now use MSG_task_receive_ext");
1168   xbt_assert((channel >= 0)
1169               && (channel < msg_global->max_channel), "Invalid channel %d",
1170               channel);
1171
1172   return
1173       MSG_mailbox_get_task_ext(MSG_mailbox_get_by_channel
1174                                (MSG_host_self(), channel), task, host,
1175                                timeout);
1176 }
1177
1178 #endif