Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
today is doomsday: platform.xml is sacrificed for the greater good
[simgrid.git] / examples / msg / cloud-simple / cloud-simple.c
1 /* Copyright (c) 2007-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 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
9
10 static int computation_fun(int argc, char *argv[])
11 {
12   const char *pr_name = MSG_process_get_name(MSG_process_self());
13   const char *host_name = MSG_host_get_name(MSG_host_self());
14
15   msg_task_t task = MSG_task_create("Task", 1000000, 1000000, NULL);
16
17   double clock_sta = MSG_get_clock();
18   MSG_task_execute(task);
19   double clock_end = MSG_get_clock();
20
21   XBT_INFO("%s:%s task executed %g", host_name, pr_name, clock_end - clock_sta);
22
23   MSG_task_destroy(task);
24
25   return 0;
26 }
27
28 static void launch_computation_worker(msg_host_t host)
29 {
30   const char *pr_name = "compute";
31   char **argv = xbt_new(char *, 2);
32   argv[0] = xbt_strdup(pr_name);
33   argv[1] = NULL;
34
35   MSG_process_create_with_arguments(pr_name, computation_fun, NULL, host, 1, argv);
36 }
37
38 struct task_priv {
39   msg_host_t tx_host;
40   msg_process_t tx_proc;
41   double clock_sta;
42 };
43
44 static int communication_tx_fun(int argc, char *argv[])
45 {
46   xbt_assert(argc == 2);
47   const char *mbox = argv[1];
48
49   msg_task_t task = MSG_task_create("Task", 1000000, 1000000, NULL);
50
51   struct task_priv *priv = xbt_new(struct task_priv, 1);
52   priv->tx_proc = MSG_process_self();
53   priv->tx_host = MSG_host_self();
54   priv->clock_sta = MSG_get_clock();
55
56   MSG_task_set_data(task, priv);
57
58   MSG_task_send(task, mbox);
59
60   return 0;
61 }
62
63 static int communication_rx_fun(int argc, char *argv[])
64 {
65   const char *pr_name = MSG_process_get_name(MSG_process_self());
66   const char *host_name = MSG_host_get_name(MSG_host_self());
67   xbt_assert(argc == 2);
68   const char *mbox = argv[1];
69
70   msg_task_t task = NULL;
71   MSG_task_recv(&task, mbox);
72
73   struct task_priv *priv = MSG_task_get_data(task);
74   double clock_end = MSG_get_clock();
75
76   XBT_INFO("%s:%s to %s:%s => %g sec", MSG_host_get_name(priv->tx_host), MSG_process_get_name(priv->tx_proc),
77       host_name, pr_name, clock_end - priv->clock_sta);
78
79   xbt_free(priv);
80   MSG_task_destroy(task);
81
82   return 0;
83 }
84
85 static void launch_communication_worker(msg_host_t tx_host, msg_host_t rx_host)
86 {
87   char *mbox = bprintf("MBOX:%s-%s", MSG_host_get_name(tx_host), MSG_host_get_name(rx_host));
88   char **argv = NULL;
89   
90   const char *pr_name_tx =  "comm_tx";
91   argv = xbt_new(char *, 3);
92   argv[0] = xbt_strdup(pr_name_tx);
93   argv[1] = xbt_strdup(mbox);
94   argv[2] = NULL;
95
96   MSG_process_create_with_arguments(pr_name_tx, communication_tx_fun, NULL, tx_host, 2, argv);
97
98   const char *pr_name_rx =  "comm_rx";  
99   argv = xbt_new(char *, 3);
100   argv[0] = xbt_strdup(pr_name_rx);
101   argv[1] = xbt_strdup(mbox);
102   argv[2] = NULL;
103
104   MSG_process_create_with_arguments(pr_name_rx, communication_rx_fun, NULL, rx_host, 2, argv);
105
106   xbt_free(mbox);
107 }
108
109
110 static int master_main(int argc, char *argv[])
111 {
112   msg_host_t pm0 = MSG_host_by_name("Fafard");
113   msg_host_t pm1 = MSG_host_by_name("Tremblay");
114   msg_host_t pm2 = MSG_host_by_name("Bourassa");
115   msg_vm_t vm0, vm1;
116
117   XBT_INFO("## Test 1 (started): check computation on normal PMs");
118
119   XBT_INFO("### Put a task on a PM");
120   launch_computation_worker(pm0);
121   MSG_process_sleep(2);
122
123   XBT_INFO("### Put two tasks on a PM");
124   launch_computation_worker(pm0);
125   launch_computation_worker(pm0);
126   MSG_process_sleep(2);
127
128   XBT_INFO("### Put a task on each PM");
129   launch_computation_worker(pm0);
130   launch_computation_worker(pm1);
131   MSG_process_sleep(2);
132
133   XBT_INFO("## Test 1 (ended)");
134
135   XBT_INFO("## Test 2 (started): check impact of running a task inside a VM (there is no degradation for the moment)");
136
137   XBT_INFO("### Put a VM on a PM, and put a task to the VM");
138   vm0 = MSG_vm_create_core(pm0, "VM0");
139   MSG_vm_start(vm0);
140   launch_computation_worker(vm0);
141   MSG_process_sleep(2);
142   MSG_vm_destroy(vm0);
143
144   XBT_INFO("## Test 2 (ended)");
145
146   XBT_INFO("## Test 3 (started): check impact of running a task collocated with a VM (there is no VM noise for the moment)");
147
148   XBT_INFO("### Put a VM on a PM, and put a task to the PM");
149   vm0 = MSG_vm_create_core(pm0, "VM0");
150   MSG_vm_start(vm0);
151   launch_computation_worker(pm0);
152   MSG_process_sleep(2);
153   MSG_vm_destroy(vm0);
154
155   XBT_INFO("## Test 3 (ended)");
156
157   XBT_INFO("## Test 4 (started): compare the cost of running two tasks inside two different VMs collocated or not (for"
158            " the moment, there is no degradation for the VMs. Hence, the time should be equals to the time of test 1");
159
160   XBT_INFO("### Put two VMs on a PM, and put a task to each VM");
161   vm0 = MSG_vm_create_core(pm0, "VM0");
162   vm1 = MSG_vm_create_core(pm0, "VM1");
163   MSG_vm_start(vm0);
164   MSG_vm_start(vm1);
165   launch_computation_worker(vm0);
166   launch_computation_worker(vm1);
167   MSG_process_sleep(2);
168   MSG_vm_destroy(vm0);
169   MSG_vm_destroy(vm1);
170
171   XBT_INFO("### Put a VM on each PM, and put a task to each VM");
172   vm0 = MSG_vm_create_core(pm0, "VM0");
173   vm1 = MSG_vm_create_core(pm1, "VM1");
174   MSG_vm_start(vm0);
175   MSG_vm_start(vm1);
176   launch_computation_worker(vm0);
177   launch_computation_worker(vm1);
178   MSG_process_sleep(2);
179   MSG_vm_destroy(vm0);
180   MSG_vm_destroy(vm1);
181   XBT_INFO("## Test 4 (ended)");
182
183   XBT_INFO("## Test 5  (started): Analyse network impact");
184   XBT_INFO("### Make a connection between PM0 and PM1");
185   launch_communication_worker(pm0, pm1);
186   MSG_process_sleep(5);
187
188   XBT_INFO("### Make two connection between PM0 and PM1");
189   launch_communication_worker(pm0, pm1);
190   launch_communication_worker(pm0, pm1);
191   MSG_process_sleep(5);
192
193   XBT_INFO("### Make a connection between PM0 and VM0@PM0");
194   vm0 = MSG_vm_create_core(pm0, "VM0");
195   MSG_vm_start(vm0);
196   launch_communication_worker(pm0, vm0);
197   MSG_process_sleep(5);
198   MSG_vm_destroy(vm0);
199
200   XBT_INFO("### Make a connection between PM0 and VM0@PM1");
201   vm0 = MSG_vm_create_core(pm1, "VM0");
202   MSG_vm_start(vm0);
203   launch_communication_worker(pm0, vm0);
204   MSG_process_sleep(5);
205   MSG_vm_destroy(vm0);
206
207   XBT_INFO("### Make two connections between PM0 and VM0@PM1");
208   vm0 = MSG_vm_create_core(pm1, "VM0");
209   MSG_vm_start(vm0);
210   launch_communication_worker(pm0, vm0);
211   launch_communication_worker(pm0, vm0);
212   MSG_process_sleep(5);
213   MSG_vm_destroy(vm0);
214
215   XBT_INFO("### Make a connection between PM0 and VM0@PM1, and also make a connection between PM0 and PM1");
216   vm0 = MSG_vm_create_core(pm1, "VM0");
217   MSG_vm_start(vm0);
218   launch_communication_worker(pm0, vm0);
219   launch_communication_worker(pm0, pm1);
220   MSG_process_sleep(5);
221   MSG_vm_destroy(vm0);
222
223   XBT_INFO("### Make a connection between VM0@PM0 and PM1@PM1, and also make a connection between VM0@PM0 and VM1@PM1");
224   vm0 = MSG_vm_create_core(pm0, "VM0");
225   vm1 = MSG_vm_create_core(pm1, "VM1");
226   MSG_vm_start(vm0);
227   MSG_vm_start(vm1);
228   launch_communication_worker(vm0, vm1);
229   launch_communication_worker(vm0, vm1);
230   MSG_process_sleep(5);
231   MSG_vm_destroy(vm0);
232   MSG_vm_destroy(vm1);
233
234   XBT_INFO("## Test 5 (ended)");
235
236   XBT_INFO("## Test 6 (started): Check migration impact (not yet implemented neither on the CPU resource nor on the"
237            " network one");
238   XBT_INFO("### Relocate VM0 between PM0 and PM1");
239   vm0 = MSG_vm_create_core(pm0, "VM0");
240   {
241     s_vm_params_t params;
242     memset(&params, 0, sizeof(params));
243     params.ramsize = 1L * 1024 * 1024 * 1024; // 1Gbytes
244     MSG_host_set_params(vm0, &params);
245   }
246   MSG_vm_start(vm0);
247   launch_communication_worker(vm0, pm2);
248   MSG_process_sleep(0.01);
249   MSG_vm_migrate(vm0, pm1);
250   MSG_process_sleep(0.01);
251   MSG_vm_migrate(vm0, pm0);
252   MSG_process_sleep(5);
253   MSG_vm_destroy(vm0);
254   XBT_INFO("## Test 6 (ended)");
255
256   return 0;
257 }
258
259 static void launch_master(msg_host_t host)
260 {
261   const char *pr_name = "master_";
262   char **argv = xbt_new(char *, 2);
263   argv[0] = xbt_strdup(pr_name);
264   argv[1] = NULL;
265
266   MSG_process_create_with_arguments(pr_name, master_main, NULL, host, 1, argv);
267 }
268
269 int main(int argc, char *argv[])
270 {
271   /* Get the arguments */
272   MSG_init(&argc, argv);
273
274   /* load the platform file */
275   xbt_assert(argc == 2);
276   MSG_create_environment(argv[1]);
277
278   msg_host_t pm0 = MSG_host_by_name("Fafard");
279   launch_master(pm0);
280
281   int res = MSG_main();
282   XBT_INFO("Bye (simulation time %g)", MSG_get_clock());
283
284   return !(res == MSG_OK);
285 }