Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
826d6c97ca168023ef73581a6b28a64b7da8a0ee
[simgrid.git] / examples / s4u / actions-comm / s4u_actions-comm.cpp
1 /* Copyright (c) 2009-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 <mutex>
7
8 #include "simgrid/msg.h"
9 #include "simgrid/simix.h"      /* semaphores for the barrier */
10 #include <xbt/replay.h>
11 #include "simgrid/s4u.h"
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(actions, "Messages specific for this msg example");
14 int communicator_size = 0;
15
16 static void action_Isend(const char *const *action);
17
18 typedef struct {
19   int last_Irecv_sender_id;
20   int bcast_counter;
21   xbt_dynar_t isends;           /* of msg_comm_t */
22   /* Used to implement irecv+wait */
23   xbt_dynar_t irecvs;           /* of msg_comm_t */
24   xbt_dynar_t tasks;            /* of msg_task_t */
25 } s_process_globals_t, *process_globals_t;
26
27 /* Helper function */
28 static double parse_double(const char *string)
29 {
30   double value;
31   char *endptr;
32
33   value = strtod(string, &endptr);
34   if (*endptr != '\0')
35     THROWF(unknown_error, 0, "%s is not a double", string);
36   return value;
37 }
38
39 #define ACT_DEBUG(...) \
40   if (XBT_LOG_ISENABLED(actions, xbt_log_priority_verbose)) {  \
41     char *NAME = xbt_str_join_array(action, " ");              \
42     XBT_DEBUG(__VA_ARGS__);                                    \
43     xbt_free(NAME);                                            \
44   } else ((void)0)
45
46 static void log_action(const char *const *action, double date)
47 {
48   if (XBT_LOG_ISENABLED(actions, xbt_log_priority_verbose)) {
49     char *name = xbt_str_join_array(action, " ");
50     XBT_VERB("%s %f", name, date);
51     xbt_free(name);
52   }
53 }
54
55 static void asynchronous_cleanup()
56 {
57   process_globals_t globals = static_cast<process_globals_t>( MSG_process_get_data(MSG_process_self()) );
58
59   /* Destroy any isend which correspond to completed communications */
60   msg_comm_t comm;
61   while (true) {
62     int pos_found = MSG_comm_testany(globals->isends);
63     if (pos_found == -1) /* none remaining */
64       break;
65     xbt_dynar_remove_at(globals->isends, pos_found, &comm);
66     MSG_comm_destroy(comm);
67   }
68 }
69
70 /* My actions */
71 static void action_send(const char *const *action)
72 {
73   char to[250];
74   const char *size_str = action[3];
75   double size = parse_double(size_str);
76   double clock = MSG_get_clock();
77
78   snprintf(to,249, "%s_%s", MSG_process_get_name(MSG_process_self()), action[2]);
79
80   ACT_DEBUG("Entering Send: %s (size: %g)", NAME, size);
81   if (size < 65536) {
82     action_Isend(action);
83   } else {
84     MSG_task_send(MSG_task_create(to, 0, size, NULL), to);
85   }
86
87   log_action(action, MSG_get_clock() - clock);
88   asynchronous_cleanup();
89 }
90
91 static void action_Isend(const char *const *action)
92 {
93   char to[250];
94   const char *size = action[3];
95   double clock = MSG_get_clock();
96   process_globals_t globals = static_cast<process_globals_t>( MSG_process_get_data(MSG_process_self()) );
97
98   snprintf(to,249, "%s_%s", MSG_process_get_name(MSG_process_self()), action[2]);
99   msg_comm_t comm = MSG_task_isend(MSG_task_create(to, 0, parse_double(size), NULL), to);
100   xbt_dynar_push(globals->isends, &comm);
101
102   XBT_DEBUG("Isend on %s", MSG_process_get_name(MSG_process_self()));
103   log_action(action, MSG_get_clock() - clock);
104   asynchronous_cleanup();
105 }
106
107 static void action_recv(const char *const *action)
108 {
109   char mailbox_name[250];
110   msg_task_t task = NULL;
111   double clock = MSG_get_clock();
112
113   snprintf(mailbox_name,249, "%s_%s", action[2], MSG_process_get_name(MSG_process_self()));
114
115   ACT_DEBUG("Receiving: %s", NAME);
116   msg_error_t res = MSG_task_receive(&task, mailbox_name);
117   log_action(action, MSG_get_clock() - clock);
118
119   if (res == MSG_OK) {
120     MSG_task_destroy(task);
121   }
122   asynchronous_cleanup();
123 }
124
125 static void action_Irecv(const char *const *action)
126 {
127   char mailbox[250];
128   double clock = MSG_get_clock();
129   process_globals_t globals = static_cast<process_globals_t>( MSG_process_get_data(MSG_process_self()) );
130
131   XBT_DEBUG("Irecv on %s", MSG_process_get_name(MSG_process_self()));
132
133   snprintf(mailbox,249, "%s_%s", action[2], MSG_process_get_name(MSG_process_self()));
134   msg_task_t t = NULL;
135   xbt_dynar_push(globals->tasks, &t);
136   msg_comm_t c = MSG_task_irecv((msg_task**)xbt_dynar_get_ptr(globals->tasks, xbt_dynar_length(globals->tasks) - 1), mailbox);
137   xbt_dynar_push(globals->irecvs, &c);
138
139   log_action(action, MSG_get_clock() - clock);
140   asynchronous_cleanup();
141 }
142
143 static void action_wait(const char *const *action)
144 {
145   msg_task_t task = NULL;
146   msg_comm_t comm;
147   double clock = MSG_get_clock();
148   process_globals_t globals = static_cast<process_globals_t>( MSG_process_get_data(MSG_process_self()) );
149
150   xbt_assert(xbt_dynar_length(globals->irecvs), "action wait not preceded by any irecv: %s",
151              xbt_str_join_array(action, " "));
152
153   ACT_DEBUG("Entering %s", NAME);
154   comm = xbt_dynar_pop_as(globals->irecvs, msg_comm_t);
155   MSG_comm_wait(comm, -1);
156   task = xbt_dynar_pop_as(globals->tasks, msg_task_t);
157   MSG_comm_destroy(comm);
158   MSG_task_destroy(task);
159
160   log_action(action, MSG_get_clock() - clock);
161 }
162
163 /* FIXME: that's a poor man's implementation: we should take the message exchanges into account */
164 static void action_barrier(const char *const *action)
165 {
166   static simgrid::s4u::Mutex *mutex = NULL;
167   static simgrid::s4u::ConditionVariable *cond = NULL;
168   static int processes_arrived_sofar = 0;
169   if (mutex == NULL) {          // first arriving on the barrier
170     mutex = new simgrid::s4u::Mutex();
171     cond = new simgrid::s4u::ConditionVariable();
172     processes_arrived_sofar = 0;
173   }
174   ACT_DEBUG("Entering barrier: %s (%d already there)", NAME, processes_arrived_sofar);
175
176   {
177     std::unique_lock<simgrid::s4u::Mutex> lock(*mutex);
178     if (++processes_arrived_sofar == communicator_size) {
179       // We can notify without the lock:
180       lock.unlock();
181       cond->notify_all();
182     } else {
183       cond->wait(lock);
184     }
185   }
186
187   ACT_DEBUG("Exiting barrier: %s", NAME);
188
189   processes_arrived_sofar--;
190   if (processes_arrived_sofar<=0) {
191     delete cond;
192     delete mutex;
193     mutex = NULL;
194   }
195 }
196
197 static void action_bcast(const char *const *action)
198 {
199   char mailbox[80];
200   double comm_size = parse_double(action[2]);
201   msg_task_t task = NULL;
202   double clock = MSG_get_clock();
203
204   process_globals_t counters = static_cast<process_globals_t>( MSG_process_get_data(MSG_process_self()) );
205
206   xbt_assert(communicator_size, "Size of Communicator is not defined, can't use collective operations");
207
208   const char * process_name = MSG_process_get_name(MSG_process_self());
209
210   char *bcast_identifier = bprintf("bcast_%d", counters->bcast_counter++);
211
212   if (!strcmp(process_name, "p0")) {
213     XBT_DEBUG("%s: %s is the Root", bcast_identifier, process_name);
214
215     msg_comm_t *comms = xbt_new0(msg_comm_t, communicator_size - 1);
216
217     for (int i = 1; i < communicator_size; i++) {
218       snprintf(mailbox,79, "%s_p0_p%d", bcast_identifier, i);
219       comms[i - 1] = MSG_task_isend(MSG_task_create(mailbox, 0, comm_size, NULL), mailbox);
220     }
221     MSG_comm_waitall(comms, communicator_size - 1, -1);
222     for (int i = 1; i < communicator_size; i++)
223       MSG_comm_destroy(comms[i - 1]);
224     xbt_free(comms);
225
226     XBT_DEBUG("%s: all messages sent by %s have been received", bcast_identifier, process_name);
227   } else {
228     snprintf(mailbox,79, "%s_p0_%s", bcast_identifier, process_name);
229     MSG_task_receive(&task, mailbox);
230     MSG_task_destroy(task);
231     XBT_DEBUG("%s: %s has received", bcast_identifier, process_name);
232   }
233
234   log_action(action, MSG_get_clock() - clock);
235   xbt_free(bcast_identifier);
236 }
237
238 static void action_comm_size(const char *const *action)
239 {
240   const char *size = action[2];
241   double clock = MSG_get_clock();
242
243   communicator_size = parse_double(size);
244   log_action(action, MSG_get_clock() - clock);
245 }
246
247 static void action_compute(const char *const *action)
248 {
249   const char *amount = action[2];
250   msg_task_t task = MSG_task_create("task", parse_double(amount), 0, NULL);
251   double clock = MSG_get_clock();
252
253   ACT_DEBUG("Entering %s", NAME);
254   MSG_task_execute(task);
255   MSG_task_destroy(task);
256   log_action(action, MSG_get_clock() - clock);
257 }
258
259 static void action_init(const char *const *action)
260 {
261   XBT_DEBUG("Initialize the counters");
262   process_globals_t globals = static_cast<process_globals_t>( calloc(1, sizeof(s_process_globals_t)) );
263   globals->isends = xbt_dynar_new(sizeof(msg_comm_t), NULL);
264   globals->irecvs = xbt_dynar_new(sizeof(msg_comm_t), NULL);
265   globals->tasks = xbt_dynar_new(sizeof(msg_task_t), NULL);
266   MSG_process_set_data(MSG_process_self(), globals);
267 }
268
269 static void action_finalize(const char *const *action)
270 {
271   process_globals_t globals = static_cast<process_globals_t>( MSG_process_get_data(MSG_process_self()) );
272   if (globals) {
273     asynchronous_cleanup();
274     xbt_dynar_free_container(&(globals->isends));
275     xbt_dynar_free_container(&(globals->irecvs));
276     xbt_dynar_free_container(&(globals->tasks));
277     xbt_free(globals);
278   }
279 }
280
281 int main(int argc, char *argv[])
282 {
283   msg_error_t res = MSG_OK;
284
285   /* Check the given arguments */
286   MSG_init(&argc, argv);
287   /* Explicit initialization of the action module is required now*/
288   MSG_action_init();
289
290   xbt_assert(argc > 2,
291        "Usage: %s platform_file deployment_file [action_files]\n"
292        "\t# if all actions are in the same file\n"
293        "\tExample: %s msg_platform.xml msg_deployment.xml actions\n"
294        "\t# if actions are in separate files, specified in deployment\n"
295        "\tExample: %s msg_platform.xml msg_deployment.xml ",
296        argv[0],argv[0],argv[0]);
297
298   MSG_create_environment(argv[1]);
299   MSG_launch_application(argv[2]);
300
301   /*   Action registration */
302   xbt_replay_action_register("init", action_init);
303   xbt_replay_action_register("finalize", action_finalize);
304   xbt_replay_action_register("comm_size", action_comm_size);
305   xbt_replay_action_register("send", action_send);
306   xbt_replay_action_register("Isend", action_Isend);
307   xbt_replay_action_register("recv", action_recv);
308   xbt_replay_action_register("Irecv", action_Irecv);
309   xbt_replay_action_register("wait", action_wait);
310   xbt_replay_action_register("barrier", action_barrier);
311   xbt_replay_action_register("bcast", action_bcast);
312   xbt_replay_action_register("compute", action_compute);
313
314   /* Actually do the simulation using MSG_action_trace_run */
315   res = MSG_action_trace_run(argv[3]);  // it's ok to pass a NULL argument here
316
317   XBT_INFO("Simulation time %g", MSG_get_clock());
318
319   MSG_action_exit(); /* Explicit finalization of the action module */
320
321   return res != MSG_OK;
322 }