Logo AND Algorithmique Numérique Distribuée

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