Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a1340c1167a274a25a5f5abaeb49c92381427f4d
[simgrid.git] / examples / msg / async-waitany / async-waitany.c
1 /* Copyright (c) 2010-2016. 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 "simgrid/msg.h"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_async_waitany, "Messages specific for this msg example");
9
10 static int sender(int argc, char *argv[])
11 {
12   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");
13   double task_comp_size = xbt_str_parse_double(argv[2], "Invalid computational size: %s");
14   double task_comm_size = xbt_str_parse_double(argv[3], "Invalid communication size: %s");
15   long receivers_count = xbt_str_parse_int(argv[4], "Invalid amount of receivers: %s");
16   int diff_com = xbt_str_parse_int(argv[5], "Invalid value for diff_comm: %s");
17   double coef = 0;
18   xbt_dynar_t d = xbt_dynar_new(sizeof(msg_comm_t), NULL);
19   int i;
20   msg_task_t task;
21   char mailbox[256];
22   char sprintf_buffer[256];
23   msg_comm_t comm;
24
25   for (i = 0; i < number_of_tasks; i++) {
26     if (diff_com == 0)
27       coef = 1;
28     else
29       coef = (i + 1);
30
31     sprintf(mailbox, "receiver-%ld", (i % receivers_count));
32     sprintf(sprintf_buffer, "Task_%d", i);
33     task = MSG_task_create(sprintf_buffer, task_comp_size, task_comm_size / coef, NULL);
34     comm = MSG_task_isend(task, mailbox);
35     xbt_dynar_push_as(d, msg_comm_t, comm);
36     XBT_INFO("Send to receiver-%ld %s comm_size %f", i % receivers_count, sprintf_buffer, task_comm_size / coef);
37   }
38   /* Here we are waiting for the completion of all communications */
39
40   while (!xbt_dynar_is_empty(d)) {
41     xbt_dynar_remove_at(d, MSG_comm_waitany(d), &comm);
42     MSG_comm_destroy(comm);
43   }
44   xbt_dynar_free(&d);
45
46   /* Here we are waiting for the completion of all tasks */
47   msg_comm_t res_irecv;
48   XBT_ATTRIB_UNUSED msg_error_t res_wait;
49   for (i = 0; i < receivers_count; i++) {
50     task = NULL;
51     res_irecv = MSG_task_irecv(&(task), "finalize");
52     res_wait = MSG_comm_wait(res_irecv, -1);
53     xbt_assert(res_wait == MSG_OK, "MSG_comm_wait failed");
54     MSG_comm_destroy(res_irecv);
55     MSG_task_destroy(task);
56   }
57
58   XBT_INFO("Goodbye now!");
59   return 0;
60 }
61
62 static int receiver(int argc, char *argv[])
63 {
64   int id = -1;
65   char mailbox[80];
66   xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
67   int tasks = xbt_str_parse_int(argv[2], "Invalid amount of tasks: %s");
68   msg_task_t *task = xbt_new(msg_task_t, tasks);
69
70   XBT_ATTRIB_UNUSED int read;
71   read = sscanf(argv[1], "%d", &id);
72   xbt_assert(read, "Invalid argument %s\n", argv[1]);
73   sprintf(mailbox, "receiver-%d", id);
74   MSG_process_sleep(10);
75   msg_comm_t res_irecv;
76   for (int i = 0; i < tasks; i++) {
77     XBT_INFO("Wait to receive task %d", i);
78     task[i] = NULL;
79     res_irecv = MSG_task_irecv(&task[i], mailbox);
80     xbt_dynar_push_as(comms, msg_comm_t, res_irecv);
81   }
82
83   /* Here we are waiting for the receiving of all communications */
84   msg_task_t task_com;
85   while (!xbt_dynar_is_empty(comms)) {
86     XBT_ATTRIB_UNUSED msg_error_t err;
87     xbt_dynar_remove_at(comms, MSG_comm_waitany(comms), &res_irecv);
88     task_com = MSG_comm_get_task(res_irecv);
89     MSG_comm_destroy(res_irecv);
90     XBT_INFO("Processing \"%s\"", MSG_task_get_name(task_com));
91     MSG_task_execute(task_com);
92     XBT_INFO("\"%s\" done", MSG_task_get_name(task_com));
93     err = MSG_task_destroy(task_com);
94     xbt_assert(err == MSG_OK, "MSG_task_destroy failed");
95   }
96   xbt_dynar_free(&comms);
97   xbt_free(task);
98
99   /* Here we tell to sender that all tasks are done */
100   res_irecv = MSG_task_isend(MSG_task_create(NULL, 0, 0, NULL), "finalize");
101   MSG_comm_wait(res_irecv, -1);
102   MSG_comm_destroy(res_irecv);
103   XBT_INFO("I'm done. See you!");
104   return 0;
105 }
106
107 int main(int argc, char *argv[])
108 {
109   msg_error_t res = MSG_OK;
110
111   MSG_init(&argc, argv);
112   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
113                   "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
114
115   MSG_create_environment(argv[1]);
116
117   MSG_function_register("sender", sender);
118   MSG_function_register("receiver", receiver);
119   MSG_launch_application(argv[2]);
120
121   res = MSG_main();
122
123   XBT_INFO("Simulation time %g", MSG_get_clock());
124
125   return res != MSG_OK;
126 }