Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add -Wformat-signedness to warnCFLAGS for GCC >= 5.0.
[simgrid.git] / examples / msg / cloud-masterworker / cloud-masterworker.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 MAXMBOXLEN 64
11
12 /** @addtogroup MSG_examples
13  *
14  *  - <b>cloud/master_worker_vm.c: Master/workers
15  *    example on a cloud</b>. The classical example revisited to demonstrate the use of virtual machines.
16  */
17
18 const double task_comp_size = 10000000;
19 const double task_comm_size = 10000000;
20
21 static void send_tasks(int nb_workers)
22 {
23   for (int i = 0; i < nb_workers; i++) {
24     char *tname = bprintf("Task%02d", i);
25     char *mbox  = bprintf("MBOX:WRK%02d", i);
26
27     msg_task_t task = MSG_task_create(tname, task_comp_size, task_comm_size, NULL);
28
29     XBT_INFO("Send task(%s) to mailbox(%s)", tname, mbox);
30     MSG_task_send(task, mbox);
31
32     free(tname);
33     free(mbox);
34   }
35 }
36
37 static int worker_fun(int argc, char *argv[])
38 {
39   const char *pr_name = MSG_process_get_name(MSG_process_self());
40   char mbox[MAXMBOXLEN];
41   snprintf(mbox, MAXMBOXLEN, "MBOX:%s", pr_name);
42
43   XBT_INFO("%s is listening on mailbox(%s)", pr_name, mbox);
44
45   for (;;) {
46     msg_task_t task = NULL;
47
48     msg_error_t res = MSG_task_receive(&task, mbox);
49     xbt_assert(res == MSG_OK, "MSG_task_get failed");
50
51     XBT_INFO("%s received task(%s) from mailbox(%s)", pr_name, MSG_task_get_name(task), mbox);
52
53     if (strcmp(MSG_task_get_name(task), "finalize") == 0) {
54       MSG_task_destroy(task);
55       break;
56     }
57
58     MSG_task_execute(task);
59     XBT_INFO("%s executed task(%s)", pr_name, MSG_task_get_name(task));
60     MSG_task_destroy(task);
61   }
62   return 0;
63 }
64
65 static int master_fun(int argc, char *argv[])
66 {
67   msg_vm_t vm;
68   unsigned int i;
69
70   xbt_dynar_t worker_pms = MSG_process_get_data(MSG_process_self());
71   int nb_workers = xbt_dynar_length(worker_pms);
72
73   xbt_dynar_t vms = xbt_dynar_new(sizeof(msg_vm_t), NULL);
74
75   /* Launch VMs and worker processes. One VM per PM, and one worker process per VM. */
76   XBT_INFO("# Launch %d VMs", nb_workers);
77   for (int i = 0; i< nb_workers; i++) {
78     char *vm_name = bprintf("VM%02d", i);
79     char *pr_name = bprintf("WRK%02d", i);
80
81     msg_host_t pm = xbt_dynar_get_as(worker_pms, i, msg_host_t);
82
83     XBT_INFO("create %s on PM(%s)", vm_name, MSG_host_get_name(pm));
84     msg_vm_t vm = MSG_vm_create_core(pm, vm_name);
85
86     s_vm_params_t params;
87     memset(&params, 0, sizeof(params));
88     params.ramsize = 1L * 1024 * 1024 * 1024; // 1Gbytes
89     MSG_vm_set_params(vm, &params);
90
91     MSG_vm_start(vm);
92     xbt_dynar_push(vms, &vm);
93
94     XBT_INFO("put a process (%s) on %s", pr_name, vm_name);
95     MSG_process_create(pr_name, worker_fun, NULL, (msg_host_t)vm);
96
97     xbt_free(vm_name);
98     xbt_free(pr_name);
99   }
100
101   /* Send a bunch of work to every one */
102   XBT_INFO("# Send a task to %d worker process", nb_workers);
103   send_tasks(nb_workers);
104
105   XBT_INFO("# Suspend all VMs");
106   xbt_dynar_foreach(vms, i, vm) {
107     XBT_INFO("suspend %s", MSG_vm_get_name(vm));
108     MSG_vm_suspend(vm);
109   }
110
111   XBT_INFO("# Wait a while");
112   MSG_process_sleep(2);
113
114   XBT_INFO("# Resume all VMs");
115   xbt_dynar_foreach(vms, i, vm) {
116     MSG_vm_resume(vm);
117   }
118
119   XBT_INFO("# Sleep long enough for everyone to be done with previous batch of work");
120   MSG_process_sleep(10 - MSG_get_clock());
121
122   XBT_INFO("# Add one more process on each VM");
123   xbt_dynar_foreach(vms, i, vm) {
124     unsigned int index = i + xbt_dynar_length(vms);
125     char *vm_name      = bprintf("VM%02u", i);
126     char *pr_name      = bprintf("WRK%02u", index);
127
128     XBT_INFO("put a process (%s) on %s", pr_name, vm_name);
129     MSG_process_create(pr_name, worker_fun, NULL, (msg_host_t)vm);
130
131     xbt_free(vm_name);
132     xbt_free(pr_name);
133   }
134
135   XBT_INFO("# Send a task to %d worker process", nb_workers * 2);
136   send_tasks(nb_workers * 2);
137
138   msg_host_t worker_pm0 = xbt_dynar_get_as(worker_pms, 0, msg_host_t);
139   msg_host_t worker_pm1 = xbt_dynar_get_as(worker_pms, 1, msg_host_t);
140
141   XBT_INFO("# Migrate all VMs to PM(%s)", MSG_host_get_name(worker_pm0));
142   xbt_dynar_foreach(vms, i, vm) {
143     MSG_vm_migrate(vm, worker_pm0);
144   }
145
146   XBT_INFO("# Migrate all VMs to PM(%s)", MSG_host_get_name(worker_pm1));
147   xbt_dynar_foreach(vms, i, vm) {
148     MSG_vm_migrate(vm, worker_pm1);
149   }
150
151   XBT_INFO("# Shutdown the half of worker processes gracefully. The remaining half will be forcibly killed.");
152   for (i = 0; i < nb_workers; i++) {
153     char mbox[MAXMBOXLEN];
154     snprintf(mbox, MAXMBOXLEN, "MBOX:WRK%02u", i);
155     msg_task_t finalize = MSG_task_create("finalize", 0, 0, 0);
156     MSG_task_send(finalize, mbox);
157   }
158
159   XBT_INFO("# Wait a while before effective shutdown.");
160   MSG_process_sleep(2);
161
162   XBT_INFO("# Shutdown and destroy all the VMs. The remaining worker processes will be forcibly killed.");
163   xbt_dynar_foreach(vms, i, vm) {
164     XBT_INFO("shutdown %s", MSG_vm_get_name(vm));
165     MSG_vm_shutdown(vm);
166     XBT_INFO("destroy %s", MSG_vm_get_name(vm));
167     MSG_vm_destroy(vm);
168   }
169
170   XBT_INFO("# Goodbye now!");
171   xbt_dynar_free(&vms);
172   return 0;
173 }
174
175 /** Receiver function  */
176 int main(int argc, char *argv[])
177 {
178   const int nb_workers = 2;
179
180   MSG_init(&argc, argv);
181   xbt_assert(argc >1,"Usage: %s example/platforms/cluster.xml\n", argv[0]);
182
183   /* Load the platform file */
184   MSG_create_environment(argv[1]);
185
186   /* Retrieve hosts from the platform file */
187   xbt_dynar_t pms = MSG_hosts_as_dynar();
188
189   /* we need a master node and worker nodes */
190   xbt_assert(xbt_dynar_length(pms) > nb_workers,"need %d hosts", nb_workers + 1);
191
192   /* the first pm is the master, the others are workers */
193   msg_host_t master_pm = xbt_dynar_get_as(pms, 0, msg_host_t);
194
195   xbt_dynar_t worker_pms = xbt_dynar_new(sizeof(msg_host_t), NULL);
196   for (int i = 1; i < nb_workers + 1; i++) {
197     msg_host_t pm = xbt_dynar_get_as(pms, i, msg_host_t);
198     xbt_dynar_push(worker_pms, &pm);
199   }
200   xbt_dynar_free(&pms);
201
202   /* Start the master process on the master pm. */
203   MSG_process_create("master", master_fun, worker_pms, master_pm);
204
205   msg_error_t res = MSG_main();
206   XBT_INFO("Bye (simulation time %g)", MSG_get_clock());
207
208   xbt_dynar_free(&worker_pms);
209
210   return !(res == MSG_OK);
211 }