Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
revise documentation of async examples
[simgrid.git] / examples / msg / async-waitall / async-waitall.c
1 /* Copyright (c) 2010-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/msg.h"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_async_waitall, "Messages specific for this msg example");
10
11 /** @addtogroup MSG_examples
12  * 
13  * - <b>Wait all: async-waitall/async-waitall.c</b>. Illustrates the use of the @ref MSG_comm_waitall function.
14  */
15
16 static int sender(int argc, char *argv[])
17 {
18   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");
19   double task_comp_size = xbt_str_parse_double(argv[2], "Invalid computational size: %s");
20   double task_comm_size = xbt_str_parse_double(argv[3], "Invalid communication size: %s");
21   long receivers_count = xbt_str_parse_int(argv[4], "Invalid amount of receivers: %s");
22
23   msg_comm_t *comm = xbt_new(msg_comm_t, number_of_tasks + receivers_count);
24   int i;
25   msg_task_t task = NULL;
26   for (i = 0; i < number_of_tasks; i++) {
27     char mailbox[256];
28     char sprintf_buffer[256];
29     sprintf(mailbox, "receiver-%ld", i % receivers_count);
30     sprintf(sprintf_buffer, "Task_%d", i);
31     task = MSG_task_create(sprintf_buffer, task_comp_size, task_comm_size, NULL);
32     comm[i] = MSG_task_isend(task, mailbox);
33     XBT_INFO("Send to receiver-%ld Task_%d", i % receivers_count, i);
34   }
35   for (i = 0; i < receivers_count; i++) {
36     char mailbox[80];
37     sprintf(mailbox, "receiver-%ld", i % receivers_count);
38     task = MSG_task_create("finalize", 0, 0, 0);
39     comm[i + number_of_tasks] = MSG_task_isend(task, mailbox);
40     XBT_INFO("Send to receiver-%ld finalize", i % receivers_count);
41   }
42
43   /* Here we are waiting for the completion of all communications */
44   MSG_comm_waitall(comm, (number_of_tasks + receivers_count), -1);
45   for (i = 0; i < number_of_tasks + receivers_count; i++)
46     MSG_comm_destroy(comm[i]);
47
48   XBT_INFO("Goodbye now!");
49   xbt_free(comm);
50   return 0;
51 }
52
53 static int receiver(int argc, char *argv[])
54 {
55   msg_task_t task = NULL;
56   XBT_ATTRIB_UNUSED msg_error_t res;
57   int id = -1;
58   char mailbox[80];
59   msg_comm_t res_irecv;
60   XBT_ATTRIB_UNUSED int read;
61   read = sscanf(argv[1], "%d", &id);
62   xbt_assert(read, "Invalid argument %s\n", argv[1]);
63   MSG_process_sleep(10);
64   sprintf(mailbox, "receiver-%d", id);
65   while (1) {
66     res_irecv = MSG_task_irecv(&(task), mailbox);
67     XBT_INFO("Wait to receive a task");
68     res = MSG_comm_wait(res_irecv, -1);
69     MSG_comm_destroy(res_irecv);
70     xbt_assert(res == MSG_OK, "MSG_task_get failed");
71     XBT_INFO("Received \"%s\"", MSG_task_get_name(task));
72     if (!strcmp(MSG_task_get_name(task), "finalize")) {
73       MSG_task_destroy(task);
74       break;
75     }
76
77     XBT_INFO("Processing \"%s\"", MSG_task_get_name(task));
78     MSG_task_execute(task);
79     XBT_INFO("\"%s\" done", MSG_task_get_name(task));
80     MSG_task_destroy(task);
81     task = NULL;
82   }
83   XBT_INFO("I'm done. See you!");
84   return 0;
85 }
86
87 int main(int argc, char *argv[])
88 {
89   msg_error_t res = MSG_OK;
90
91   MSG_init(&argc, argv);
92   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
93              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
94
95   MSG_create_environment(argv[1]);
96   MSG_function_register("sender", sender);
97   MSG_function_register("receiver", receiver);
98   MSG_launch_application(argv[2]);
99
100   res = MSG_main();
101
102   XBT_INFO("Simulation time %g", MSG_get_clock());
103
104   return res != MSG_OK;
105 }