Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr/gitroot/simgrid/simgrid
[simgrid.git] / examples / msg / masterslave / masterslave_mailbox.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_test, "Messages specific for this msg example");
10
11 static int master(int argc, char *argv[])
12 {
13   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");
14   double task_comp_size = xbt_str_parse_double(argv[2], "Invalid computational size: %s");
15   double task_comm_size = xbt_str_parse_double(argv[3], "Invalid communication size: %s");
16   long slaves_count = xbt_str_parse_int(argv[4], "Invalid amount of slaves: %s");
17
18   int i;
19
20   XBT_INFO("Got %ld slaves and %ld tasks to process", slaves_count, number_of_tasks);
21
22   for (i = 0; i < number_of_tasks; i++) {
23     char mailbox[256];
24     char sprintf_buffer[256];
25     msg_task_t task = NULL;
26
27     sprintf(mailbox, "slave-%ld", i % slaves_count);
28     sprintf(sprintf_buffer, "Task_%d", i);
29     task = MSG_task_create(sprintf_buffer, task_comp_size, task_comm_size, NULL);
30     if (number_of_tasks < 10000 || i % 10000 == 0)
31       XBT_INFO("Sending \"%s\" (of %ld) to mailbox \"%s\"", task->name, number_of_tasks, mailbox);
32
33     MSG_task_send(task, mailbox);
34   }
35
36   XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over.");
37   for (i = 0; i < slaves_count; i++) {
38     char mailbox[80];
39
40     sprintf(mailbox, "slave-%ld", i % slaves_count);
41     msg_task_t finalize = MSG_task_create("finalize", 0, 0, 0);
42     MSG_task_send(finalize, mailbox);
43   }
44
45   return 0;
46 }
47
48 static int slave(int argc, char *argv[])
49 {
50   msg_task_t task = NULL;
51   XBT_ATTRIB_UNUSED int res;
52   int id = -1;
53   char mailbox[80];
54   XBT_ATTRIB_UNUSED int read;
55
56   read = sscanf(argv[1], "%d", &id);
57   xbt_assert(read, "Invalid argument %s\n", argv[1]);
58
59   sprintf(mailbox, "slave-%d", id);
60
61   while (1) {
62     res = MSG_task_receive(&(task), mailbox);
63     xbt_assert(res == MSG_OK, "MSG_task_get failed");
64
65 //  XBT_INFO("Received \"%s\"", MSG_task_get_name(task));
66     if (!strcmp(MSG_task_get_name(task), "finalize")) {
67       MSG_task_destroy(task);
68       break;
69     }
70 //    XBT_INFO("Processing \"%s\"", MSG_task_get_name(task));
71     MSG_task_execute(task);
72 //    XBT_INFO("\"%s\" done", MSG_task_get_name(task));
73     MSG_task_destroy(task);
74     task = NULL;
75   }
76   XBT_INFO("I'm done. See you!");
77   return 0;
78 }
79
80 int main(int argc, char *argv[])
81 {
82   MSG_init(&argc, argv);
83   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
84              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
85
86   MSG_create_environment(argv[1]);
87
88   MSG_function_register("master", master);
89   MSG_function_register("slave", slave);
90   MSG_launch_application(argv[2]);
91
92   msg_error_t res = MSG_main();
93
94   XBT_INFO("Simulation time %g", MSG_get_clock());
95
96   return res != MSG_OK;
97 }