Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into clean_events
[simgrid.git] / src / msg / msg_gos.cpp
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <xbt/ex.hpp>
7
8 #include "src/msg/msg_private.h"
9 #include "src/simix/smx_private.h" /* MSG_task_listen looks inside the rdv directly. Not clean. */
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_gos, msg, "Logging specific to MSG (gos)");
12
13 SG_BEGIN_DECL()
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 takes only one parameter.
19  * \param task a #msg_task_t to execute on the location on which the process is running.
20  * \return #MSG_OK if the task was successfully completed, #MSG_TASK_CANCELED or #MSG_HOST_FAILURE otherwise
21  */
22 msg_error_t MSG_task_execute(msg_task_t task)
23 {
24   /* TODO: add this to other locations */
25   msg_host_t host = MSG_process_get_host(MSG_process_self());
26   MSG_host_add_task(host, task);
27
28   msg_error_t ret = MSG_parallel_task_execute(task);
29
30   MSG_host_del_task(host, task);
31   return ret;
32 }
33
34 /** \ingroup msg_task_usage
35  * \brief Executes a parallel task and waits for its termination.
36  *
37  * \param task a #msg_task_t to execute on the location on which the process is running.
38  *
39  * \return #MSG_OK if the task was successfully completed, #MSG_TASK_CANCELED
40  * or #MSG_HOST_FAILURE otherwise
41  */
42 msg_error_t MSG_parallel_task_execute(msg_task_t task)
43 {
44   return MSG_parallel_task_execute_with_timeout(task, -1);
45 }
46
47 msg_error_t MSG_parallel_task_execute_with_timeout(msg_task_t task, double timeout)
48 {
49   simdata_task_t simdata = task->simdata;
50   e_smx_state_t comp_state;
51   msg_error_t status = MSG_OK;
52
53   TRACE_msg_task_execute_start(task);
54
55   xbt_assert((not simdata->compute) && not task->simdata->isused,
56              "This task is executed somewhere else. Go fix your code!");
57
58   XBT_DEBUG("Computing on %s", MSG_process_get_name(MSG_process_self()));
59
60   if (simdata->flops_amount <= 0.0 && not simdata->host_nb) {
61     TRACE_msg_task_execute_end(task);
62     return MSG_OK;
63   }
64
65   try {
66     simdata->setUsed();
67
68     if (simdata->host_nb > 0) {
69       simdata->compute = static_cast<simgrid::kernel::activity::ExecImpl*>(simcall_execution_parallel_start(
70           task->name, simdata->host_nb, simdata->host_list, simdata->flops_parallel_amount,
71           simdata->bytes_parallel_amount, 1.0, -1.0, timeout));
72       XBT_DEBUG("Parallel execution action created: %p", simdata->compute);
73     } else {
74       simdata->compute = static_cast<simgrid::kernel::activity::ExecImpl*>(
75           simcall_execution_start(task->name, simdata->flops_amount, simdata->priority, simdata->bound));
76     }
77     simcall_set_category(simdata->compute, task->category);
78     comp_state = simcall_execution_wait(simdata->compute);
79
80     simdata->setNotUsed();
81
82     XBT_DEBUG("Execution task '%s' finished in state %d", task->name, (int)comp_state);
83   }
84   catch (xbt_ex& e) {
85     switch (e.category) {
86     case cancel_error:
87       status = MSG_TASK_CANCELED;
88       break;
89     case host_error:
90       status = MSG_HOST_FAILURE;
91       break;
92     case timeout_error:
93       status = MSG_TIMEOUT;
94       break;
95     default:
96       throw;
97     }
98   }
99
100   /* action ended, set comm and compute = nullptr, the actions is already destroyed in the main function */
101   simdata->flops_amount = 0.0;
102   simdata->comm = nullptr;
103   simdata->compute = nullptr;
104   TRACE_msg_task_execute_end(task);
105
106   return status;
107 }
108
109 /** \ingroup msg_task_usage
110  * \brief Sleep for the specified number of seconds
111  *
112  * Makes the current process sleep until \a time seconds have elapsed.
113  *
114  * \param nb_sec a number of second
115  */
116 msg_error_t MSG_process_sleep(double nb_sec)
117 {
118   msg_error_t status = MSG_OK;
119
120   TRACE_msg_process_sleep_in(MSG_process_self());
121
122   try {
123     simcall_process_sleep(nb_sec);
124   }
125   catch(xbt_ex& e) {
126     if (e.category == cancel_error) {
127       XBT_DEBUG("According to the JAVA API, a sleep call should only deal with HostFailureException, I'm lost.");
128       // adsein: MSG_TASK_CANCELED is assigned when someone kills the process that made the sleep, this is not
129       // correct. For instance, when the node is turned off, the error should be MSG_HOST_FAILURE, which is by the way
130       // and according to the JAVA document, the only exception that can be triggered by MSG_Process_sleep call.
131       // To avoid possible impacts in the code, I just raised a host_failure exception for the moment in the JAVA code
132       // and did not change anythings at the C level.
133       // See comment in the jmsg_process.c file, function JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_sleep(JNIEnv *env, jclass cls, jlong jmillis, jint jnanos)
134       status = MSG_TASK_CANCELED;
135     } else
136       throw;
137   }
138
139   TRACE_msg_process_sleep_out(MSG_process_self());
140   return status;
141 }
142
143 /** \ingroup msg_task_usage
144  * \brief Receives a task from a mailbox.
145  *
146  * This is a blocking function, the execution flow will be blocked until the task is received. See #MSG_task_irecv
147  * for receiving tasks asynchronously.
148  *
149  * \param task a memory location for storing a #msg_task_t.
150  * \param alias name of the mailbox to receive the task from
151  *
152  * \return Returns
153  * #MSG_OK if the task was successfully received,
154  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
155  */
156 msg_error_t MSG_task_receive(msg_task_t * task, const char *alias)
157 {
158   return MSG_task_receive_with_timeout(task, alias, -1);
159 }
160
161 /** \ingroup msg_task_usage
162  * \brief Receives a task from a mailbox at a given rate.
163  *
164  * \param task a memory location for storing a #msg_task_t.
165  * \param alias name of the mailbox to receive the task from
166  * \param rate limit the reception to rate bandwidth
167  *
168  * \return Returns
169  * #MSG_OK if the task was successfully received,
170  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
171  */
172 msg_error_t MSG_task_receive_bounded(msg_task_t * task, const char *alias, double rate)
173 {
174   return MSG_task_receive_with_timeout_bounded(task, alias, -1, rate);
175 }
176
177 /** \ingroup msg_task_usage
178  * \brief Receives a task from a mailbox with a given timeout.
179  *
180  * This is a blocking function with a timeout, the execution flow will be blocked until the task is received or the
181  * timeout is achieved. See #MSG_task_irecv for receiving tasks asynchronously.  You can provide a -1 timeout
182  * to obtain an infinite timeout.
183  *
184  * \param task a memory location for storing a #msg_task_t.
185  * \param alias name of the mailbox to receive the task from
186  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_receive)
187  *
188  * \return Returns
189  * #MSG_OK if the task was successfully received,
190  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
191  */
192 msg_error_t MSG_task_receive_with_timeout(msg_task_t * task, const char *alias, double timeout)
193 {
194   return MSG_task_receive_ext(task, alias, timeout, nullptr);
195 }
196
197 /** \ingroup msg_task_usage
198  * \brief Receives a task from a mailbox with a given timeout and at a given rate.
199  *
200  * \param task a memory location for storing a #msg_task_t.
201  * \param alias name of the mailbox to receive the task from
202  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_receive)
203  *  \param rate limit the reception to rate bandwidth
204  *
205  * \return Returns
206  * #MSG_OK if the task was successfully received,
207  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
208  */
209 msg_error_t MSG_task_receive_with_timeout_bounded(msg_task_t * task, const char *alias, double timeout,double rate)
210 {
211   return MSG_task_receive_ext_bounded(task, alias, timeout, nullptr, rate);
212 }
213
214 /** \ingroup msg_task_usage
215  * \brief Receives a task from a mailbox from a specific host with a given timeout.
216  *
217  * This is a blocking function with a timeout, the execution flow will be blocked until the task is received or the
218  * timeout is achieved. See #MSG_task_irecv for receiving tasks asynchronously. You can provide a -1 timeout
219  * to obtain an infinite timeout.
220  *
221  * \param task a memory location for storing a #msg_task_t.
222  * \param alias name of the mailbox to receive the task from
223  * \param timeout is the maximum wait time for completion (provide -1 for no timeout)
224  * \param host a #msg_host_t host from where the task was sent
225  *
226  * \return Returns
227  * #MSG_OK if the task was successfully received,
228 * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
229  */
230 msg_error_t MSG_task_receive_ext(msg_task_t * task, const char *alias, double timeout, msg_host_t host)
231 {
232   XBT_DEBUG("MSG_task_receive_ext: Trying to receive a message on mailbox '%s'", alias);
233   return MSG_task_receive_ext_bounded(task, alias, timeout, host, -1.0);
234 }
235
236 /** \ingroup msg_task_usage
237  * \brief Receives a task from a mailbox from a specific host with a given timeout  and at a given rate.
238  *
239  * \param task a memory location for storing a #msg_task_t.
240  * \param alias name of the mailbox to receive the task from
241  * \param timeout is the maximum wait time for completion (provide -1 for no timeout)
242  * \param host a #msg_host_t host from where the task was sent
243  * \param rate limit the reception to rate bandwidth
244  *
245  * \return Returns
246  * #MSG_OK if the task was successfully received,
247  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
248  */
249 msg_error_t MSG_task_receive_ext_bounded(msg_task_t * task, const char *alias, double timeout, msg_host_t host,
250                                          double rate)
251 {
252   XBT_DEBUG("MSG_task_receive_ext: Trying to receive a message on mailbox '%s'", alias);
253   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(alias);
254   msg_error_t ret = MSG_OK;
255   /* We no longer support getting a task from a specific host */
256   if (host)
257     THROW_UNIMPLEMENTED;
258
259   TRACE_msg_task_get_start();
260   double start_time = MSG_get_clock();
261
262   /* Sanity check */
263   xbt_assert(task, "Null pointer for the task storage");
264
265   if (*task)
266     XBT_WARN("Asked to write the received task in a non empty struct -- proceeding.");
267
268   /* Try to receive it by calling SIMIX network layer */
269   try {
270     simcall_comm_recv(MSG_process_self()->getImpl(), mailbox->getImpl(), task, nullptr, nullptr, nullptr, nullptr, timeout, rate);
271     XBT_DEBUG("Got task %s from %s",(*task)->name,mailbox->name());
272     (*task)->simdata->setNotUsed();
273   }
274   catch (xbt_ex& e) {
275     switch (e.category) {
276     case host_error:
277     case cancel_error:
278       ret = MSG_HOST_FAILURE;
279       break;
280     case network_error:
281       ret = MSG_TRANSFER_FAILURE;
282       break;
283     case timeout_error:
284       ret = MSG_TIMEOUT;
285       break;
286     default:
287       throw;
288     }
289   }
290
291   if (ret != MSG_HOST_FAILURE && ret != MSG_TRANSFER_FAILURE && ret != MSG_TIMEOUT) {
292     TRACE_msg_task_get_end(start_time, *task);
293   }
294   return ret;
295 }
296
297 /* Internal function used to factorize code between MSG_task_isend_with_matching() and MSG_task_dsend(). */
298 static inline msg_comm_t MSG_task_isend_internal(msg_task_t task, const char *alias,
299                                                      int (*match_fun)(void*,void*, smx_activity_t),
300                                                      void *match_data, void_f_pvoid_t cleanup, int detached)
301 {
302   simdata_task_t t_simdata = nullptr;
303   msg_process_t myself = MSG_process_self();
304   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(alias);
305   int call_end = TRACE_msg_task_put_start(task);
306
307   /* Prepare the task to send */
308   t_simdata = task->simdata;
309   t_simdata->sender = myself;
310   t_simdata->source = MSG_host_self();
311   t_simdata->setUsed();
312   t_simdata->comm = nullptr;
313   msg_global->sent_msg++;
314
315   /* Send it by calling SIMIX network layer */
316   smx_activity_t act = simcall_comm_isend(myself->getImpl(), mailbox->getImpl(), t_simdata->bytes_amount, t_simdata->rate,
317                                          task, sizeof(void *), match_fun, cleanup, nullptr, match_data,detached);
318   t_simdata->comm = static_cast<simgrid::kernel::activity::CommImpl*>(act);
319
320   msg_comm_t comm = nullptr;
321   if (not detached) {
322     comm = xbt_new0(s_msg_comm_t, 1);
323     comm->task_sent = task;
324     comm->task_received = nullptr;
325     comm->status = MSG_OK;
326     comm->s_comm = act;
327   }
328
329   if (TRACE_is_enabled())
330     simcall_set_category(act, task->category);
331   if (call_end)
332     TRACE_msg_task_put_end();
333
334   return comm;
335 }
336
337 /** \ingroup msg_task_usage
338  * \brief Sends a task on a mailbox.
339  *
340  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test() to end the communication.
341  *
342  * \param task a #msg_task_t to send on another location.
343  * \param alias name of the mailbox to sent the task to
344  * \return the msg_comm_t communication created
345  */
346 msg_comm_t MSG_task_isend(msg_task_t task, const char *alias)
347 {
348   return MSG_task_isend_internal(task, alias, nullptr, nullptr, nullptr, 0);
349 }
350
351 /** \ingroup msg_task_usage
352  * \brief Sends a task on a mailbox with a maximum rate
353  *
354  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test() to end the communication. The maxrate
355  * parameter allows the application to limit the bandwidth utilization of network links when sending the task.
356  *
357  * \param task a #msg_task_t to send on another location.
358  * \param alias name of the mailbox to sent the task to
359  * \param maxrate the maximum communication rate for sending this task .
360  * \return the msg_comm_t communication created
361  */
362 msg_comm_t MSG_task_isend_bounded(msg_task_t task, const char *alias, double maxrate)
363 {
364   task->simdata->rate = maxrate;
365   return MSG_task_isend_internal(task, alias, nullptr, nullptr, nullptr, 0);
366 }
367
368 /** \ingroup msg_task_usage
369  * \brief Sends a task on a mailbox, with support for matching requests
370  *
371  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test() to end the communication.
372  *
373  * \param task a #msg_task_t to send on another location.
374  * \param alias name of the mailbox to sent the task to
375  * \param match_fun boolean function which parameters are:
376  *        - match_data_provided_here
377  *        - match_data_provided_by_other_side_if_any
378  *        - the_smx_synchro_describing_the_other_side
379  * \param match_data user provided data passed to match_fun
380  * \return the msg_comm_t communication created
381  */
382 msg_comm_t MSG_task_isend_with_matching(msg_task_t task, const char *alias,
383                                         int (*match_fun)(void*, void*, smx_activity_t), void *match_data)
384 {
385   return MSG_task_isend_internal(task, alias, match_fun, match_data, nullptr, 0);
386 }
387
388 /** \ingroup msg_task_usage
389  * \brief Sends a task on a mailbox.
390  *
391  * This is a non blocking detached send function.
392  * Think of it as a best effort send. Keep in mind that the third parameter is only called if the communication fails.
393  * If the communication does work, it is responsibility of the receiver code to free anything related to the task, as
394  * usual. More details on this can be obtained on
395  * <a href="http://lists.gforge.inria.fr/pipermail/simgrid-user/2011-November/002649.html">this thread</a>
396  * in the SimGrid-user mailing list archive.
397  *
398  * \param task a #msg_task_t to send on another location.
399  * \param alias name of the mailbox to sent the task to
400  * \param cleanup a function to destroy the task if the communication fails, e.g. MSG_task_destroy
401  * (if nullptr, no function will be called)
402  */
403 void MSG_task_dsend(msg_task_t task, const char *alias, void_f_pvoid_t cleanup)
404 {
405   MSG_task_isend_internal(task, alias, nullptr, nullptr, cleanup, 1);
406 }
407
408 /** \ingroup msg_task_usage
409  * \brief Sends a task on a mailbox with a maximal rate.
410  *
411  * This is a non blocking detached send function.
412  * Think of it as a best effort send. Keep in mind that the third parameter is only called if the communication fails.
413  * If the communication does work, it is responsibility of the receiver code to free anything related to the task, as
414  * usual. More details on this can be obtained on
415  * <a href="http://lists.gforge.inria.fr/pipermail/simgrid-user/2011-November/002649.html">this thread</a>
416  * in the SimGrid-user mailing list archive.
417  *
418  * \param task a #msg_task_t to send on another location.
419  * \param alias name of the mailbox to sent the task to
420  * \param cleanup a function to destroy the task if the
421  * communication fails, e.g. MSG_task_destroy
422  * (if nullptr, no function will be called)
423  * \param maxrate the maximum communication rate for sending this task
424  *
425  */
426 void MSG_task_dsend_bounded(msg_task_t task, const char *alias, void_f_pvoid_t cleanup, double maxrate)
427 {
428   task->simdata->rate = maxrate;
429   MSG_task_dsend(task, alias, cleanup);
430 }
431
432 /** \ingroup msg_task_usage
433  * \brief Starts listening for receiving a task from an asynchronous communication.
434  *
435  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test() to end the communication.
436  *
437  * \param task a memory location for storing a #msg_task_t. has to be valid until the end of the communication.
438  * \param name of the mailbox to receive the task on
439  * \return the msg_comm_t communication created
440  */
441 msg_comm_t MSG_task_irecv(msg_task_t *task, const char *name)
442 {
443   return MSG_task_irecv_bounded(task, name, -1.0);
444 }
445
446 /** \ingroup msg_task_usage
447  * \brief Starts listening for receiving a task from an asynchronous communication at a given rate.
448  *
449  * \param task a memory location for storing a #msg_task_t. has to be valid until the end of the communication.
450  * \param name of the mailbox to receive the task on
451  * \param rate limit the bandwidth to the given rate
452  * \return the msg_comm_t communication created
453  */
454 msg_comm_t MSG_task_irecv_bounded(msg_task_t *task, const char *name, double rate)
455 {
456   simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(name);
457
458   /* FIXME: these functions are not traceable */
459   /* Sanity check */
460   xbt_assert(task, "Null pointer for the task storage");
461
462   if (*task)
463     XBT_CRITICAL("MSG_task_irecv() was asked to write in a non empty task struct.");
464
465   /* Try to receive it by calling SIMIX network layer */
466   msg_comm_t comm = xbt_new0(s_msg_comm_t, 1);
467   comm->task_sent = nullptr;
468   comm->task_received = task;
469   comm->status = MSG_OK;
470   comm->s_comm = simcall_comm_irecv(SIMIX_process_self(), mbox->getImpl(), task, nullptr, nullptr, nullptr, nullptr, rate);
471
472   return comm;
473 }
474
475 /** \ingroup msg_task_usage
476  * \brief Checks whether a communication is done, and if yes, finalizes it.
477  * \param comm the communication to test
478  * \return TRUE if the communication is finished
479  * (but it may have failed, use MSG_comm_get_status() to know its status)
480  * or FALSE if the communication is not finished yet
481  * If the status is FALSE, don't forget to use MSG_process_sleep() after the test.
482  */
483 int MSG_comm_test(msg_comm_t comm)
484 {
485   int finished = 0;
486
487   try {
488     finished = simcall_comm_test(comm->s_comm);
489     if (finished && comm->task_received != nullptr) {
490       /* I am the receiver */
491       (*comm->task_received)->simdata->setNotUsed();
492       comm->s_comm->unref();
493     }
494   }
495   catch (xbt_ex& e) {
496     switch (e.category) {
497       case network_error:
498         comm->status = MSG_TRANSFER_FAILURE;
499         finished = 1;
500         break;
501       case timeout_error:
502         comm->status = MSG_TIMEOUT;
503         finished = 1;
504         break;
505       default:
506         throw;
507     }
508   }
509
510   return finished;
511 }
512
513 /** \ingroup msg_task_usage
514  * \brief This function checks if a communication is finished.
515  * \param comms a vector of communications
516  * \return the position of the finished communication if any
517  * (but it may have failed, use MSG_comm_get_status() to know its status),
518  * or -1 if none is finished
519  */
520 int MSG_comm_testany(xbt_dynar_t comms)
521 {
522   int finished_index = -1;
523
524   /* Create the equivalent array with SIMIX objects: */
525   std::vector<simgrid::kernel::activity::ActivityImpl*> s_comms;
526   s_comms.reserve(xbt_dynar_length(comms));
527   msg_comm_t comm;
528   unsigned int cursor;
529   xbt_dynar_foreach(comms, cursor, comm) {
530     s_comms.push_back(comm->s_comm);
531   }
532
533   msg_error_t status = MSG_OK;
534   try {
535     finished_index = simcall_comm_testany(s_comms.data(), s_comms.size());
536   }
537   catch (xbt_ex& e) {
538     switch (e.category) {
539       case network_error:
540         finished_index = e.value;
541         status = MSG_TRANSFER_FAILURE;
542         break;
543       case timeout_error:
544         finished_index = e.value;
545         status = MSG_TIMEOUT;
546         break;
547       default:
548         throw;
549     }
550   }
551
552   if (finished_index != -1) {
553     comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
554     /* the communication is finished */
555     comm->status = status;
556
557     if (status == MSG_OK && comm->task_received != nullptr) {
558       /* I am the receiver */
559       (*comm->task_received)->simdata->setNotUsed();
560       comm->s_comm->unref();
561     }
562   }
563
564   return finished_index;
565 }
566
567 /** \ingroup msg_task_usage
568  * \brief Destroys a communication.
569  * \param comm the communication to destroy.
570  */
571 void MSG_comm_destroy(msg_comm_t comm)
572 {
573   xbt_free(comm);
574 }
575
576 /** \ingroup msg_task_usage
577  * \brief Wait for the completion of a communication.
578  *
579  * It takes two parameters.
580  * \param comm the communication to wait.
581  * \param timeout Wait until the communication terminates or the timeout occurs.
582  *                You can provide a -1 timeout to obtain an infinite timeout.
583  * \return msg_error_t
584  */
585 msg_error_t MSG_comm_wait(msg_comm_t comm, double timeout)
586 {
587   try {
588     simcall_comm_wait(comm->s_comm, timeout);
589     comm->s_comm->unref();
590
591     if (comm->task_received != nullptr) {
592       /* I am the receiver */
593       (*comm->task_received)->simdata->setNotUsed();
594     }
595
596     /* FIXME: these functions are not traceable */
597   }
598   catch (xbt_ex& e) {
599     switch (e.category) {
600     case network_error:
601       comm->status = MSG_TRANSFER_FAILURE;
602       break;
603     case timeout_error:
604       comm->status = MSG_TIMEOUT;
605       break;
606     default:
607       throw;
608     }
609   }
610
611   return comm->status;
612 }
613
614 /** \ingroup msg_task_usage
615 * \brief This function is called by a sender and permit to wait for each communication
616 *
617 * \param comm a vector of communication
618 * \param nb_elem is the size of the comm vector
619 * \param timeout for each call of MSG_comm_wait
620 */
621 void MSG_comm_waitall(msg_comm_t * comm, int nb_elem, double timeout)
622 {
623   for (int i = 0; i < nb_elem; i++)
624     MSG_comm_wait(comm[i], timeout);
625 }
626
627 /** \ingroup msg_task_usage
628  * \brief This function waits for the first communication finished in a list.
629  * \param comms a vector of communications
630  * \return the position of the first finished communication
631  * (but it may have failed, use MSG_comm_get_status() to know its status)
632  */
633 int MSG_comm_waitany(xbt_dynar_t comms)
634 {
635   int finished_index = -1;
636
637   /* create the equivalent dynar with SIMIX objects */
638   xbt_dynar_t s_comms = xbt_dynar_new(sizeof(smx_activity_t), nullptr);
639   msg_comm_t comm;
640   unsigned int cursor;
641   xbt_dynar_foreach(comms, cursor, comm) {
642     xbt_dynar_push(s_comms, &comm->s_comm);
643   }
644
645   msg_error_t status = MSG_OK;
646   try {
647     finished_index = simcall_comm_waitany(s_comms, -1);
648   }
649   catch(xbt_ex& e) {
650     switch (e.category) {
651       case network_error:
652         finished_index = e.value;
653         status = MSG_TRANSFER_FAILURE;
654         break;
655       case timeout_error:
656         finished_index = e.value;
657         status = MSG_TIMEOUT;
658         break;
659       default:
660         throw;
661     }
662   }
663
664   xbt_assert(finished_index != -1, "WaitAny returned -1");
665   xbt_dynar_free(&s_comms);
666
667   comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
668   /* the communication is finished */
669   comm->status = status;
670
671   if (comm->task_received != nullptr) {
672     /* I am the receiver */
673     (*comm->task_received)->simdata->setNotUsed();
674     comm->s_comm->unref();
675   }
676
677   return finished_index;
678 }
679
680 /**
681  * \ingroup msg_task_usage
682  * \brief Returns the error (if any) that occurred during a finished communication.
683  * \param comm a finished communication
684  * \return the status of the communication, or #MSG_OK if no error occurred
685  * during the communication
686  */
687 msg_error_t MSG_comm_get_status(msg_comm_t comm) {
688
689   return comm->status;
690 }
691
692 /** \ingroup msg_task_usage
693  * \brief Get a task (#msg_task_t) from a communication
694  *
695  * \param comm the communication where to get the task
696  * \return the task from the communication
697  */
698 msg_task_t MSG_comm_get_task(msg_comm_t comm)
699 {
700   xbt_assert(comm, "Invalid parameter");
701
702   return comm->task_received ? *comm->task_received : comm->task_sent;
703 }
704
705 /**
706  * \brief This function is called by SIMIX in kernel mode to copy the data of a comm.
707  * \param synchro the comm
708  * \param buff the data copied
709  * \param buff_size size of the buffer
710  */
711 void MSG_comm_copy_data_from_SIMIX(smx_activity_t synchro, void* buff, size_t buff_size)
712 {
713   simgrid::kernel::activity::CommImpl* comm = static_cast<simgrid::kernel::activity::CommImpl*>(synchro);
714
715   SIMIX_comm_copy_pointer_callback(comm, buff, buff_size);
716
717   // notify the user callback if any
718   if (msg_global->task_copy_callback) {
719     msg_task_t task = static_cast<msg_task_t>(buff);
720     msg_global->task_copy_callback(task, comm->src_proc->ciface(), comm->dst_proc->ciface());
721   }
722 }
723
724 /** \ingroup msg_task_usage
725  * \brief Sends a task to a mailbox
726  *
727  * This is a blocking function, the execution flow will be blocked until the task is sent (and received on the other
728  * side if #MSG_task_receive is used).
729  * See #MSG_task_isend for sending tasks asynchronously.
730  *
731  * \param task the task to be sent
732  * \param alias the mailbox name to where the task is sent
733  *
734  * \return Returns #MSG_OK if the task was successfully sent,
735  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
736  */
737 msg_error_t MSG_task_send(msg_task_t task, const char *alias)
738 {
739   XBT_DEBUG("MSG_task_send: Trying to send a message on mailbox '%s'", alias);
740   return MSG_task_send_with_timeout(task, alias, -1);
741 }
742
743 /** \ingroup msg_task_usage
744  * \brief Sends a task to a mailbox with a maximum rate
745  *
746  * This is a blocking function, the execution flow will be blocked until the task is sent. The maxrate parameter allows
747  * the application to limit the bandwidth utilization of network links when sending the task.
748  *
749  * \param task the task to be sent
750  * \param alias the mailbox name to where the task is sent
751  * \param maxrate the maximum communication rate for sending this task
752  *
753  * \return Returns #MSG_OK if the task was successfully sent,
754  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
755  */
756 msg_error_t MSG_task_send_bounded(msg_task_t task, const char *alias, double maxrate)
757 {
758   task->simdata->rate = maxrate;
759   return MSG_task_send(task, alias);
760 }
761
762 /** \ingroup msg_task_usage
763  * \brief Sends a task to a mailbox with a timeout
764  *
765  * This is a blocking function, the execution flow will be blocked until the task is sent or the timeout is achieved.
766  *
767  * \param task the task to be sent
768  * \param alias the mailbox name to where the task is sent
769  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
770  *
771  * \return Returns #MSG_OK if the task was successfully sent,
772  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
773  */
774 msg_error_t MSG_task_send_with_timeout(msg_task_t task, const char *alias, double timeout)
775 {
776   msg_error_t ret = MSG_OK;
777   simdata_task_t t_simdata = nullptr;
778   msg_process_t process = MSG_process_self();
779   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(alias);
780
781   int call_end = TRACE_msg_task_put_start(task);
782
783   /* Prepare the task to send */
784   t_simdata = task->simdata;
785   t_simdata->sender = process;
786   t_simdata->source = MSG_host_self();
787
788   t_simdata->setUsed();
789
790   t_simdata->comm = nullptr;
791   msg_global->sent_msg++;
792
793   /* Try to send it by calling SIMIX network layer */
794   try {
795     smx_activity_t comm = nullptr; /* MC needs the comm to be set to nullptr during the simix call  */
796     comm = simcall_comm_isend(SIMIX_process_self(), mailbox->getImpl(),t_simdata->bytes_amount,
797                               t_simdata->rate, task, sizeof(void *), nullptr, nullptr, nullptr, task, 0);
798     if (TRACE_is_enabled())
799       simcall_set_category(comm, task->category);
800     t_simdata->comm = static_cast<simgrid::kernel::activity::CommImpl*>(comm);
801     simcall_comm_wait(comm, timeout);
802     comm->unref();
803   }
804   catch (xbt_ex& e) {
805     switch (e.category) {
806     case cancel_error:
807       ret = MSG_HOST_FAILURE;
808       break;
809     case network_error:
810       ret = MSG_TRANSFER_FAILURE;
811       break;
812     case timeout_error:
813       ret = MSG_TIMEOUT;
814       break;
815     default:
816       throw;
817     }
818
819     /* If the send failed, it is not used anymore */
820     t_simdata->setNotUsed();
821   }
822
823   if (call_end)
824     TRACE_msg_task_put_end();
825   return ret;
826 }
827
828 /** \ingroup msg_task_usage
829  * \brief Sends a task to a mailbox with a timeout and with a maximum rate
830  *
831  * This is a blocking function, the execution flow will be blocked until the task is sent or the timeout is achieved.
832  *
833  * \param task the task to be sent
834  * \param alias the mailbox name to where the task is sent
835  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
836  * \param maxrate the maximum communication rate for sending this task
837  *
838  * \return Returns #MSG_OK if the task was successfully sent,
839  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
840  */
841 msg_error_t MSG_task_send_with_timeout_bounded(msg_task_t task, const char *alias, double timeout, double maxrate)
842 {
843   task->simdata->rate = maxrate;
844   return MSG_task_send_with_timeout(task, alias, timeout);
845 }
846
847 /** \ingroup msg_task_usage
848  * \brief Check if there is a communication going on in a mailbox.
849  *
850  * \param alias the name of the mailbox to be considered
851  *
852  * \return Returns 1 if there is a communication, 0 otherwise
853  */
854 int MSG_task_listen(const char *alias)
855 {
856   simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(alias);
857   return mbox->listen() ? 1 : 0;
858 }
859
860 /** \ingroup msg_task_usage
861  * \brief Look if there is a communication on a mailbox and return the PID of the sender process.
862  *
863  * \param alias the name of the mailbox to be considered
864  *
865  * \return Returns the PID of sender process,
866  * -1 if there is no communication in the mailbox.
867  */
868 int MSG_task_listen_from(const char *alias)
869 {
870   simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(alias);
871   simgrid::kernel::activity::CommImpl* comm = static_cast<simgrid::kernel::activity::CommImpl*>(mbox->front());
872
873   if (not comm)
874     return -1;
875
876   return MSG_process_get_PID(static_cast<msg_task_t>(comm->src_buff)->simdata->sender);
877 }
878
879 /** \ingroup msg_task_usage
880  * \brief Sets the tracing category of a task.
881  *
882  * This function should be called after the creation of a MSG task, to define the category of that task. The
883  * first parameter task must contain a task that was  created with the function #MSG_task_create. The second
884  * parameter category must contain a category that was previously declared with the function #TRACE_category
885  * (or with #TRACE_category_with_color).
886  *
887  * See \ref outcomes_vizu for details on how to trace the (categorized) resource utilization.
888  *
889  * \param task the task that is going to be categorized
890  * \param category the name of the category to be associated to the task
891  *
892  * \see MSG_task_get_category, TRACE_category, TRACE_category_with_color
893  */
894 void MSG_task_set_category (msg_task_t task, const char *category)
895 {
896   TRACE_msg_set_task_category (task, category);
897 }
898
899 /** \ingroup msg_task_usage
900  *
901  * \brief Gets the current tracing category of a task.
902  *
903  * \param task the task to be considered
904  *
905  * \see MSG_task_set_category
906  *
907  * \return Returns the name of the tracing category of the given task, nullptr otherwise
908  */
909 const char *MSG_task_get_category (msg_task_t task)
910 {
911   return task->category;
912 }
913
914 SG_END_DECL()