Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
We never use a second configuration set, so simplify the API
[simgrid.git] / examples / msg / cloud / simple_vm.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   xbt_dynar_t hosts_dynar = MSG_hosts_as_dynar();
113   msg_host_t pm0 = xbt_dynar_get_as(hosts_dynar, 0, msg_host_t);
114   msg_host_t pm1 = xbt_dynar_get_as(hosts_dynar, 1, msg_host_t);
115   msg_host_t pm2 = xbt_dynar_get_as(hosts_dynar, 2, msg_host_t);
116   msg_vm_t vm0, vm1;
117
118
119   XBT_INFO("## Test 1 (started): check computation on normal PMs");
120
121   XBT_INFO("### Put a task on a PM");
122   launch_computation_worker(pm0);
123   MSG_process_sleep(2);
124
125   XBT_INFO("### Put two tasks on a PM");
126   launch_computation_worker(pm0);
127   launch_computation_worker(pm0);
128   MSG_process_sleep(2);
129
130   XBT_INFO("### Put a task on each PM");
131   launch_computation_worker(pm0);
132   launch_computation_worker(pm1);
133   MSG_process_sleep(2);
134
135   XBT_INFO("## Test 1 (ended)");
136
137   XBT_INFO("## Test 2 (started): check impact of running a task inside a VM (there is no degradation for the moment)");
138
139   XBT_INFO("### Put a VM on a PM, and put a task to the VM");
140   vm0 = MSG_vm_create_core(pm0, "VM0");
141   MSG_vm_start(vm0);
142   launch_computation_worker(vm0);
143   MSG_process_sleep(2);
144   MSG_vm_destroy(vm0);
145
146   XBT_INFO("## Test 2 (ended)");
147
148   XBT_INFO("## Test 3 (started): check impact of running a task collocated with a VM (there is no VM noise for the moment)");
149
150   XBT_INFO("### Put a VM on a PM, and put a task to the PM");
151   vm0 = MSG_vm_create_core(pm0, "VM0");
152   MSG_vm_start(vm0);
153   launch_computation_worker(pm0);
154   MSG_process_sleep(2);
155   MSG_vm_destroy(vm0);
156
157   XBT_INFO("## Test 3 (ended)");
158
159   XBT_INFO("## Test 4 (started): compare the cost of running two tasks inside two different VMs collocated or not (for"
160            " the moment, there is no degradation for the VMs. Hence, the time should be equals to the time of test 1");
161
162   XBT_INFO("### Put two VMs on a PM, and put a task to each VM");
163   vm0 = MSG_vm_create_core(pm0, "VM0");
164   vm1 = MSG_vm_create_core(pm0, "VM1");
165   MSG_vm_start(vm0);
166   MSG_vm_start(vm1);
167   launch_computation_worker(vm0);
168   launch_computation_worker(vm1);
169   MSG_process_sleep(2);
170   MSG_vm_destroy(vm0);
171   MSG_vm_destroy(vm1);
172
173   XBT_INFO("### Put a VM on each PM, and put a task to each VM");
174   vm0 = MSG_vm_create_core(pm0, "VM0");
175   vm1 = MSG_vm_create_core(pm1, "VM1");
176   MSG_vm_start(vm0);
177   MSG_vm_start(vm1);
178   launch_computation_worker(vm0);
179   launch_computation_worker(vm1);
180   MSG_process_sleep(2);
181   MSG_vm_destroy(vm0);
182   MSG_vm_destroy(vm1);
183   XBT_INFO("## Test 4 (ended)");
184
185   XBT_INFO("## Test 5  (started): Analyse network impact");
186   XBT_INFO("### Make a connection between PM0 and PM1");
187   launch_communication_worker(pm0, pm1);
188   MSG_process_sleep(5);
189
190   XBT_INFO("### Make two connection between PM0 and PM1");
191   launch_communication_worker(pm0, pm1);
192   launch_communication_worker(pm0, pm1);
193   MSG_process_sleep(5);
194
195   XBT_INFO("### Make a connection between PM0 and VM0@PM0");
196   vm0 = MSG_vm_create_core(pm0, "VM0");
197   MSG_vm_start(vm0);
198   launch_communication_worker(pm0, vm0);
199   MSG_process_sleep(5);
200   MSG_vm_destroy(vm0);
201
202   XBT_INFO("### Make a connection between PM0 and VM0@PM1");
203   vm0 = MSG_vm_create_core(pm1, "VM0");
204   MSG_vm_start(vm0);
205   launch_communication_worker(pm0, vm0);
206   MSG_process_sleep(5);
207   MSG_vm_destroy(vm0);
208
209   XBT_INFO("### Make two connections between PM0 and VM0@PM1");
210   vm0 = MSG_vm_create_core(pm1, "VM0");
211   MSG_vm_start(vm0);
212   launch_communication_worker(pm0, vm0);
213   launch_communication_worker(pm0, vm0);
214   MSG_process_sleep(5);
215   MSG_vm_destroy(vm0);
216
217   XBT_INFO("### Make a connection between PM0 and VM0@PM1, and also make a connection between PM0 and PM1");
218   vm0 = MSG_vm_create_core(pm1, "VM0");
219   MSG_vm_start(vm0);
220   launch_communication_worker(pm0, vm0);
221   launch_communication_worker(pm0, pm1);
222   MSG_process_sleep(5);
223   MSG_vm_destroy(vm0);
224
225   XBT_INFO("### Make a connection between VM0@PM0 and PM1@PM1, and also make a connection between VM0@PM0 and VM1@PM1");
226   vm0 = MSG_vm_create_core(pm0, "VM0");
227   vm1 = MSG_vm_create_core(pm1, "VM1");
228   MSG_vm_start(vm0);
229   MSG_vm_start(vm1);
230   launch_communication_worker(vm0, vm1);
231   launch_communication_worker(vm0, vm1);
232   MSG_process_sleep(5);
233   MSG_vm_destroy(vm0);
234   MSG_vm_destroy(vm1);
235
236   XBT_INFO("## Test 5 (ended)");
237
238   XBT_INFO("## Test 6 (started): Check migration impact (not yet implemented neither on the CPU resource nor on the"
239            " network one");
240   XBT_INFO("### Relocate VM0 between PM0 and PM1");
241   vm0 = MSG_vm_create_core(pm0, "VM0");
242   {
243     s_vm_params_t params;
244     memset(&params, 0, sizeof(params));
245     params.ramsize = 1L * 1024 * 1024 * 1024; // 1Gbytes
246     MSG_host_set_params(vm0, &params);
247   }
248   MSG_vm_start(vm0);
249   launch_communication_worker(vm0, pm2);
250   MSG_process_sleep(0.01);
251   MSG_vm_migrate(vm0, pm1);
252   MSG_process_sleep(0.01);
253   MSG_vm_migrate(vm0, pm0);
254   MSG_process_sleep(5);
255   MSG_vm_destroy(vm0);
256   XBT_INFO("## Test 6 (ended)");
257
258   xbt_dynar_free(&hosts_dynar);
259   return 0;
260 }
261
262 static void launch_master(msg_host_t host)
263 {
264   const char *pr_name = "master_";
265   char **argv = xbt_new(char *, 2);
266   argv[0] = xbt_strdup(pr_name);
267   argv[1] = NULL;
268
269   MSG_process_create_with_arguments(pr_name, master_main, NULL, host, 1, argv);
270 }
271
272 int main(int argc, char *argv[])
273 {
274   /* Get the arguments */
275   MSG_init(&argc, argv);
276
277   /* load the platform file */
278   xbt_assert(argc == 2);
279   MSG_create_environment(argv[1]);
280
281   xbt_dynar_t hosts_dynar = MSG_hosts_as_dynar();
282   msg_host_t pm0 = xbt_dynar_get_as(hosts_dynar, 0, msg_host_t);
283   launch_master(pm0);
284
285   int res = MSG_main();
286   XBT_INFO("Bye (simulation time %g)", MSG_get_clock());
287   xbt_dynar_free(&hosts_dynar);
288
289   return !(res == MSG_OK);
290 }