Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
still trying to test the tuto
[simgrid.git] / doc / tuto-msg / masterworker-sol1.c
1 /* Copyright (c) 2007-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 "simgrid/msg.h"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
9
10 #define FINALIZE ((void*)221297) /* a magic number to tell people to stop working */
11
12 static char* build_channel_name(char* buffer, const char* sender, const char* receiver)
13 {
14   strcpy(buffer, sender);
15   strcat(buffer, ":");
16   strcat(buffer, receiver);
17   return buffer;
18 }
19
20 /* forward definitions */
21 static int master(int argc, char* argv[]);
22 static int worker(int argc, char* argv[]);
23
24 static int master(int argc, char* argv[])
25 {
26   msg_host_t host_self    = MSG_host_self();
27   const char* master_name = MSG_host_get_name(host_self);
28   char channel[1024];
29
30   long number_of_tasks = xbt_str_parse_int(argv[1], "Invalid amount of tasks: %s");       /** - Number of tasks      */
31   double comp_size     = xbt_str_parse_double(argv[2], "Invalid computational size: %s"); /** - Task compute cost    */
32   double comm_size = xbt_str_parse_double(argv[3], "Invalid communication size: %s"); /** - Task communication size */
33
34   /* Create the tasks in advance */
35   msg_task_t* todo = xbt_new0(msg_task_t, number_of_tasks);
36
37   for (int i = 0; i < number_of_tasks; i++) {
38     char sprintf_buffer[64];
39     sprintf(sprintf_buffer, "Task_%d", i);
40     todo[i] = MSG_task_create(sprintf_buffer, comp_size, comm_size, NULL);
41   }
42
43   /* Get the info about the worker processes (directly from SimGrid) */
44   int workers_count   = MSG_get_host_number();
45   msg_host_t* workers = xbt_dynar_to_array(MSG_hosts_as_dynar());
46
47   for (int i = 0; i < workers_count; i++)
48     if (host_self == workers[i]) {
49       workers[i] = workers[workers_count - 1];
50       workers_count--;
51       break;
52     }
53
54   for (int i = 0; i < workers_count; i++)
55     MSG_process_create("worker", worker, (void*)master_name, workers[i]);
56   XBT_INFO("Got %d workers and %ld tasks to process", workers_count, number_of_tasks);
57
58   /* Dispatch the tasks */
59   for (int i = 0; i < number_of_tasks; i++) {
60     build_channel_name(channel, master_name, MSG_host_get_name(workers[i % workers_count]));
61
62     XBT_INFO("Sending '%s' to channel '%s'", todo[i]->name, channel);
63
64     MSG_task_send(todo[i], channel);
65     XBT_INFO("Sent");
66   }
67
68   XBT_INFO("All tasks have been dispatched. Let's tell everybody the computation is over.");
69   for (int i = 0; i < workers_count; i++) {
70     msg_task_t finalize = MSG_task_create("finalize", 0, 0, FINALIZE);
71     MSG_task_send(finalize, build_channel_name(channel, master_name, MSG_host_get_name(workers[i % workers_count])));
72   }
73
74   XBT_INFO("Goodbye now!");
75   free(workers);
76   free(todo);
77   return 0;
78 } /* end_of_master */
79
80 /** Receiver function  */
81 static int worker(int argc, char* argv[])
82 {
83   char channel[1024];
84
85   build_channel_name(channel, MSG_process_get_data(MSG_process_self()), MSG_host_get_name(MSG_host_self()));
86
87   XBT_INFO("Receiving on channel '%s'", channel);
88
89   while (1) {
90     msg_task_t task = NULL;
91     int res         = MSG_task_receive(&(task), channel);
92     xbt_assert(res == MSG_OK, "MSG_task_receive failed");
93
94     XBT_INFO("Received '%s'", MSG_task_get_name(task));
95     if (!strcmp(MSG_task_get_name(task), "finalize")) {
96       MSG_task_destroy(task);
97       break;
98     }
99
100     XBT_INFO("Processing '%s'", MSG_task_get_name(task));
101     MSG_task_execute(task);
102     XBT_INFO("'%s' done", MSG_task_get_name(task));
103     MSG_task_destroy(task);
104   }
105   XBT_INFO("I'm done. See you!");
106   return 0;
107 } /* end_of_worker */
108
109 /** Main function */
110 int main(int argc, char* argv[])
111 {
112   MSG_init(&argc, argv);
113   xbt_assert(argc > 2,
114              "Usage: %s platform_file deployment_file\n"
115              "\tExample: %s msg_platform.xml msg_deployment.xml\n",
116              argv[0], argv[0]);
117
118   /*  Create a simulated platform */
119   MSG_create_environment(argv[1]);
120
121   /*   Application deployment */
122   MSG_function_register("master", master);
123   MSG_function_register("worker", worker);
124   MSG_launch_application(argv[2]);
125
126   /* Run the simulation */
127   msg_error_t res = MSG_main();
128
129   XBT_INFO("Simulation time %g", MSG_get_clock());
130   return (res != MSG_OK);
131 }