Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7bbb3033ed554f15a7e9b702af1e034ee38b4a88
[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::Exec*>(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::Exec*>(
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::Comm*>(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     }
493   }
494   catch (xbt_ex& e) {
495     switch (e.category) {
496       case network_error:
497         comm->status = MSG_TRANSFER_FAILURE;
498         finished = 1;
499         break;
500       case timeout_error:
501         comm->status = MSG_TIMEOUT;
502         finished = 1;
503         break;
504       default:
505         throw;
506     }
507   }
508
509   return finished;
510 }
511
512 /** \ingroup msg_task_usage
513  * \brief This function checks if a communication is finished.
514  * \param comms a vector of communications
515  * \return the position of the finished communication if any
516  * (but it may have failed, use MSG_comm_get_status() to know its status),
517  * or -1 if none is finished
518  */
519 int MSG_comm_testany(xbt_dynar_t comms)
520 {
521   int finished_index = -1;
522
523   /* Create the equivalent array with SIMIX objects: */
524   std::vector<simgrid::kernel::activity::ActivityImpl*> s_comms;
525   s_comms.reserve(xbt_dynar_length(comms));
526   msg_comm_t comm;
527   unsigned int cursor;
528   xbt_dynar_foreach(comms, cursor, comm) {
529     s_comms.push_back(comm->s_comm);
530   }
531
532   msg_error_t status = MSG_OK;
533   try {
534     finished_index = simcall_comm_testany(s_comms.data(), s_comms.size());
535   }
536   catch (xbt_ex& e) {
537     switch (e.category) {
538       case network_error:
539         finished_index = e.value;
540         status = MSG_TRANSFER_FAILURE;
541         break;
542       case timeout_error:
543         finished_index = e.value;
544         status = MSG_TIMEOUT;
545         break;
546       default:
547         throw;
548     }
549   }
550
551   if (finished_index != -1) {
552     comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
553     /* the communication is finished */
554     comm->status = status;
555
556     if (status == MSG_OK && comm->task_received != nullptr) {
557       /* I am the receiver */
558       (*comm->task_received)->simdata->setNotUsed();
559     }
560   }
561
562   return finished_index;
563 }
564
565 /** \ingroup msg_task_usage
566  * \brief Destroys a communication.
567  * \param comm the communication to destroy.
568  */
569 void MSG_comm_destroy(msg_comm_t comm)
570 {
571   xbt_free(comm);
572 }
573
574 /** \ingroup msg_task_usage
575  * \brief Wait for the completion of a communication.
576  *
577  * It takes two parameters.
578  * \param comm the communication to wait.
579  * \param timeout Wait until the communication terminates or the timeout occurs.
580  *                You can provide a -1 timeout to obtain an infinite timeout.
581  * \return msg_error_t
582  */
583 msg_error_t MSG_comm_wait(msg_comm_t comm, double timeout)
584 {
585   try {
586     simcall_comm_wait(comm->s_comm, timeout);
587
588     if (comm->task_received != nullptr) {
589       /* I am the receiver */
590       (*comm->task_received)->simdata->setNotUsed();
591     }
592
593     /* FIXME: these functions are not traceable */
594   }
595   catch (xbt_ex& e) {
596     switch (e.category) {
597     case network_error:
598       comm->status = MSG_TRANSFER_FAILURE;
599       break;
600     case timeout_error:
601       comm->status = MSG_TIMEOUT;
602       break;
603     default:
604       throw;
605     }
606   }
607
608   return comm->status;
609 }
610
611 /** \ingroup msg_task_usage
612 * \brief This function is called by a sender and permit to wait for each communication
613 *
614 * \param comm a vector of communication
615 * \param nb_elem is the size of the comm vector
616 * \param timeout for each call of MSG_comm_wait
617 */
618 void MSG_comm_waitall(msg_comm_t * comm, int nb_elem, double timeout)
619 {
620   for (int i = 0; i < nb_elem; i++)
621     MSG_comm_wait(comm[i], timeout);
622 }
623
624 /** \ingroup msg_task_usage
625  * \brief This function waits for the first communication finished in a list.
626  * \param comms a vector of communications
627  * \return the position of the first finished communication
628  * (but it may have failed, use MSG_comm_get_status() to know its status)
629  */
630 int MSG_comm_waitany(xbt_dynar_t comms)
631 {
632   int finished_index = -1;
633
634   /* create the equivalent dynar with SIMIX objects */
635   xbt_dynar_t s_comms = xbt_dynar_new(sizeof(smx_activity_t), nullptr);
636   msg_comm_t comm;
637   unsigned int cursor;
638   xbt_dynar_foreach(comms, cursor, comm) {
639     xbt_dynar_push(s_comms, &comm->s_comm);
640   }
641
642   msg_error_t status = MSG_OK;
643   try {
644     finished_index = simcall_comm_waitany(s_comms, -1);
645   }
646   catch(xbt_ex& e) {
647     switch (e.category) {
648       case network_error:
649         finished_index = e.value;
650         status = MSG_TRANSFER_FAILURE;
651         break;
652       case timeout_error:
653         finished_index = e.value;
654         status = MSG_TIMEOUT;
655         break;
656       default:
657         throw;
658     }
659   }
660
661   xbt_assert(finished_index != -1, "WaitAny returned -1");
662   xbt_dynar_free(&s_comms);
663
664   comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
665   /* the communication is finished */
666   comm->status = status;
667
668   if (comm->task_received != nullptr) {
669     /* I am the receiver */
670     (*comm->task_received)->simdata->setNotUsed();
671   }
672
673   return finished_index;
674 }
675
676 /**
677  * \ingroup msg_task_usage
678  * \brief Returns the error (if any) that occurred during a finished communication.
679  * \param comm a finished communication
680  * \return the status of the communication, or #MSG_OK if no error occurred
681  * during the communication
682  */
683 msg_error_t MSG_comm_get_status(msg_comm_t comm) {
684
685   return comm->status;
686 }
687
688 /** \ingroup msg_task_usage
689  * \brief Get a task (#msg_task_t) from a communication
690  *
691  * \param comm the communication where to get the task
692  * \return the task from the communication
693  */
694 msg_task_t MSG_comm_get_task(msg_comm_t comm)
695 {
696   xbt_assert(comm, "Invalid parameter");
697
698   return comm->task_received ? *comm->task_received : comm->task_sent;
699 }
700
701 /**
702  * \brief This function is called by SIMIX in kernel mode to copy the data of a comm.
703  * \param synchro the comm
704  * \param buff the data copied
705  * \param buff_size size of the buffer
706  */
707 void MSG_comm_copy_data_from_SIMIX(smx_activity_t synchro, void* buff, size_t buff_size)
708 {
709   simgrid::kernel::activity::Comm *comm = static_cast<simgrid::kernel::activity::Comm*>(synchro);
710
711   SIMIX_comm_copy_pointer_callback(comm, buff, buff_size);
712
713   // notify the user callback if any
714   if (msg_global->task_copy_callback) {
715     msg_task_t task = static_cast<msg_task_t>(buff);
716     msg_global->task_copy_callback(task, comm->src_proc->ciface(), comm->dst_proc->ciface());
717   }
718 }
719
720 /** \ingroup msg_task_usage
721  * \brief Sends a task to a mailbox
722  *
723  * This is a blocking function, the execution flow will be blocked until the task is sent (and received on the other
724  * side if #MSG_task_receive is used).
725  * See #MSG_task_isend for sending tasks asynchronously.
726  *
727  * \param task the task to be sent
728  * \param alias the mailbox name to where the task is sent
729  *
730  * \return Returns #MSG_OK if the task was successfully sent,
731  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
732  */
733 msg_error_t MSG_task_send(msg_task_t task, const char *alias)
734 {
735   XBT_DEBUG("MSG_task_send: Trying to send a message on mailbox '%s'", alias);
736   return MSG_task_send_with_timeout(task, alias, -1);
737 }
738
739 /** \ingroup msg_task_usage
740  * \brief Sends a task to a mailbox with a maximum rate
741  *
742  * This is a blocking function, the execution flow will be blocked until the task is sent. The maxrate parameter allows
743  * the application to limit the bandwidth utilization of network links when sending the task.
744  *
745  * \param task the task to be sent
746  * \param alias the mailbox name to where the task is sent
747  * \param maxrate the maximum communication rate for sending this task
748  *
749  * \return Returns #MSG_OK if the task was successfully sent,
750  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
751  */
752 msg_error_t MSG_task_send_bounded(msg_task_t task, const char *alias, double maxrate)
753 {
754   task->simdata->rate = maxrate;
755   return MSG_task_send(task, alias);
756 }
757
758 /** \ingroup msg_task_usage
759  * \brief Sends a task to a mailbox with a timeout
760  *
761  * This is a blocking function, the execution flow will be blocked until the task is sent or the timeout is achieved.
762  *
763  * \param task the task to be sent
764  * \param alias the mailbox name to where the task is sent
765  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
766  *
767  * \return Returns #MSG_OK if the task was successfully sent,
768  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
769  */
770 msg_error_t MSG_task_send_with_timeout(msg_task_t task, const char *alias, double timeout)
771 {
772   msg_error_t ret = MSG_OK;
773   simdata_task_t t_simdata = nullptr;
774   msg_process_t process = MSG_process_self();
775   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(alias);
776
777   int call_end = TRACE_msg_task_put_start(task);
778
779   /* Prepare the task to send */
780   t_simdata = task->simdata;
781   t_simdata->sender = process;
782   t_simdata->source = MSG_host_self();
783
784   t_simdata->setUsed();
785
786   t_simdata->comm = nullptr;
787   msg_global->sent_msg++;
788
789   /* Try to send it by calling SIMIX network layer */
790   try {
791     smx_activity_t comm = nullptr; /* MC needs the comm to be set to nullptr during the simix call  */
792     comm = simcall_comm_isend(SIMIX_process_self(), mailbox->getImpl(),t_simdata->bytes_amount,
793                               t_simdata->rate, task, sizeof(void *), nullptr, nullptr, nullptr, task, 0);
794     if (TRACE_is_enabled())
795       simcall_set_category(comm, task->category);
796      t_simdata->comm = static_cast<simgrid::kernel::activity::Comm*>(comm);
797      simcall_comm_wait(comm, timeout);
798   }
799   catch (xbt_ex& e) {
800     switch (e.category) {
801     case cancel_error:
802       ret = MSG_HOST_FAILURE;
803       break;
804     case network_error:
805       ret = MSG_TRANSFER_FAILURE;
806       break;
807     case timeout_error:
808       ret = MSG_TIMEOUT;
809       break;
810     default:
811       throw;
812     }
813
814     /* If the send failed, it is not used anymore */
815     t_simdata->setNotUsed();
816   }
817
818   if (call_end)
819     TRACE_msg_task_put_end();
820   return ret;
821 }
822
823 /** \ingroup msg_task_usage
824  * \brief Sends a task to a mailbox with a timeout and with a maximum rate
825  *
826  * This is a blocking function, the execution flow will be blocked until the task is sent or the timeout is achieved.
827  *
828  * \param task the task to be sent
829  * \param alias the mailbox name to where the task is sent
830  * \param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
831  * \param maxrate the maximum communication rate for sending this task
832  *
833  * \return Returns #MSG_OK if the task was successfully sent,
834  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
835  */
836 msg_error_t MSG_task_send_with_timeout_bounded(msg_task_t task, const char *alias, double timeout, double maxrate)
837 {
838   task->simdata->rate = maxrate;
839   return MSG_task_send_with_timeout(task, alias, timeout);
840 }
841
842 /** \ingroup msg_task_usage
843  * \brief Check if there is a communication going on in a mailbox.
844  *
845  * \param alias the name of the mailbox to be considered
846  *
847  * \return Returns 1 if there is a communication, 0 otherwise
848  */
849 int MSG_task_listen(const char *alias)
850 {
851   simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(alias);
852   return mbox->listen() ? 1 : 0;
853 }
854
855 /** \ingroup msg_task_usage
856  * \brief Look if there is a communication on a mailbox and return the PID of the sender process.
857  *
858  * \param alias the name of the mailbox to be considered
859  *
860  * \return Returns the PID of sender process,
861  * -1 if there is no communication in the mailbox.
862  */
863 int MSG_task_listen_from(const char *alias)
864 {
865   simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(alias);
866   simgrid::kernel::activity::Comm* comm = static_cast<simgrid::kernel::activity::Comm*>(mbox->front());
867
868   if (not comm)
869     return -1;
870
871   return MSG_process_get_PID( static_cast<msg_task_t>(comm->src_data)->simdata->sender );
872 }
873
874 /** \ingroup msg_task_usage
875  * \brief Sets the tracing category of a task.
876  *
877  * This function should be called after the creation of a MSG task, to define the category of that task. The
878  * first parameter task must contain a task that was  created with the function #MSG_task_create. The second
879  * parameter category must contain a category that was previously declared with the function #TRACE_category
880  * (or with #TRACE_category_with_color).
881  *
882  * See \ref outcomes_vizu for details on how to trace the (categorized) resource utilization.
883  *
884  * \param task the task that is going to be categorized
885  * \param category the name of the category to be associated to the task
886  *
887  * \see MSG_task_get_category, TRACE_category, TRACE_category_with_color
888  */
889 void MSG_task_set_category (msg_task_t task, const char *category)
890 {
891   TRACE_msg_set_task_category (task, category);
892 }
893
894 /** \ingroup msg_task_usage
895  *
896  * \brief Gets the current tracing category of a task.
897  *
898  * \param task the task to be considered
899  *
900  * \see MSG_task_set_category
901  *
902  * \return Returns the name of the tracing category of the given task, nullptr otherwise
903  */
904 const char *MSG_task_get_category (msg_task_t task)
905 {
906   return task->category;
907 }
908
909 SG_END_DECL()