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 / cloud / masterslave_virtual_machines.c
1 /* Copyright (c) 2007-2012. 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 <stdio.h>
7 #include "msg/msg.h"            /* Yeah! If you want to use msg, you need to include msg/msg.h */
8 #include "xbt/sysdep.h"         /* calloc, printf */
9
10 /* Create a log channel to have nice outputs. */
11 #include "xbt/log.h"
12 #include "xbt/asserts.h"
13 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
14                              "Messages specific for this msg example");
15
16 /** @addtogroup MSG_examples
17  * 
18  *  - <b>cloud/masterslave_virtual_machines.c: Master/slaves
19  *    example, à la cloud</b>. The classical example revisited to demonstrate the use of virtual machines.
20  */
21
22 double task_comp_size = 10000000;
23 double task_comm_size = 10000000;
24
25
26 int master(int argc, char *argv[]);
27 int slave_fun(int argc, char *argv[]);
28
29 static void work_batch(int slaves_count) {
30   int i;
31   for (i = 0; i < slaves_count; i++) {
32     char taskname_buffer[64];
33     char mailbox_buffer[64];
34
35     sprintf(taskname_buffer, "Task_%d", i);
36     sprintf(mailbox_buffer,"Slave_%d",i);
37
38     XBT_INFO("Sending \"%s\" to \"%s\"",taskname_buffer,mailbox_buffer);
39     MSG_task_send(MSG_task_create(taskname_buffer, task_comp_size, task_comm_size,NULL),
40         mailbox_buffer);
41   }
42 }
43
44 int master(int argc, char *argv[]) {
45   int slaves_count = 10;
46   m_host_t *slaves = xbt_new(m_host_t,10);
47
48   int i;
49
50   /* Retrive the hostnames constituting our playground today */
51   for (i = 1; i < argc; i++) {
52     slaves[i - 1] = MSG_get_host_by_name(argv[i]);
53     xbt_assert(slaves[i - 1] != NULL, "Cannot use inexistent host %s", argv[i]);
54   }
55
56   /* Launch the sub processes: one VM per host, with one process inside each */
57
58   for (i=0;i<slaves_count;i++) {
59     char slavename[64];
60     sprintf(slavename,"Slave %d",i);
61     char**argv=xbt_new(char*,3);
62     argv[0] = xbt_strdup(slavename);
63     argv[1] = bprintf("%d",i);
64     argv[2] = NULL;
65     msg_vm_t vm = MSG_vm_start(slaves[i],2);
66     MSG_vm_bind(vm, MSG_process_create_with_arguments(slavename,slave_fun,NULL,slaves[i],2,argv));
67   }
68
69   xbt_dynar_t vms = MSG_vms_as_dynar();
70   XBT_INFO("Launched %ld VMs", xbt_dynar_length(vms));
71
72   /* Send a bunch of work to every one */
73   XBT_INFO("Send a first batch of work to every one");
74   work_batch(slaves_count);
75
76   XBT_INFO("Now suspend all VMs, just for fun");
77   for (i=0;i<xbt_dynar_length(vms);i++)
78     MSG_vm_suspend(xbt_dynar_get_as(vms,i,msg_vm_t));
79
80   XBT_INFO("Wait a while");
81   MSG_process_sleep(2);
82
83   XBT_INFO("Enough. Let's resume everybody.");
84   for (i=0;i<xbt_dynar_length(vms);i++)
85     MSG_vm_resume(xbt_dynar_get_as(vms,i,msg_vm_t));
86
87   XBT_INFO("Sleep long enough for everyone to be done with previous batch of work");
88   MSG_process_sleep(1000-MSG_get_clock());
89
90   XBT_INFO("Add one more process per VM, and dispatch a batch of work to everyone");
91   for (i=0;i<xbt_dynar_length(vms);i++) {
92     msg_vm_t vm = xbt_dynar_get_as(vms,i,msg_vm_t);
93     char slavename[64];
94     sprintf(slavename,"Slave %ld",i+xbt_dynar_length(vms));
95     char**argv=xbt_new(char*,3);
96     argv[0] = xbt_strdup(slavename);
97     argv[1] = bprintf("%ld",i+xbt_dynar_length(vms));
98     argv[2] = NULL;
99     MSG_vm_bind(vm, MSG_process_create_with_arguments(slavename,slave_fun,NULL,slaves[i],2,argv));
100   }
101   work_batch(slaves_count*2);
102
103   XBT_INFO("Migrate everyone to the second host.");
104   for (i=0;i<xbt_dynar_length(vms);i++)
105     MSG_vm_migrate(xbt_dynar_get_as(vms,i,msg_vm_t),slaves[1]);
106
107   XBT_INFO("Suspend everyone, move them to the third host, and resume them.");
108   for (i=0;i<xbt_dynar_length(vms);i++) {
109     msg_vm_t vm = xbt_dynar_get_as(vms,i,msg_vm_t);
110     MSG_vm_suspend(vm);
111     MSG_vm_migrate(vm,slaves[2]);
112     MSG_vm_resume(vm);
113   }
114
115
116
117   XBT_INFO("Let's shut down the simulation. 10 first processes will be shut down cleanly while the second half will forcefully get killed");
118   for (i = 0; i < slaves_count; i++) {
119     char mailbox_buffer[64];
120     sprintf(mailbox_buffer,"Slave_%d",i);
121     m_task_t finalize = MSG_task_create("finalize", 0, 0, 0);
122     MSG_task_send(finalize, mailbox_buffer);
123   }
124
125   for (i=0;i<xbt_dynar_length(vms);i++) {
126     msg_vm_t vm = xbt_dynar_get_as(vms,i,msg_vm_t);
127     MSG_vm_shutdown(vm);
128   }
129
130   XBT_INFO("Goodbye now!");
131   free(slaves);
132   xbt_dynar_free(&vms);
133   return 0;
134 }                               /* end_of_master */
135
136 /** Receiver function  */
137 int slave_fun(int argc, char *argv[])
138 {
139   char *mailbox_name;
140   m_task_t task = NULL;
141   _XBT_GNUC_UNUSED int res;
142
143   /* since the slaves will move around, use slave_%d as mailbox names instead of hostnames */
144   xbt_assert(argc>=2, "slave processes need to be given their rank as parameter");
145   mailbox_name=bprintf("Slave_%s",argv[1]);
146
147   while (1) {
148     res = MSG_task_receive(&(task),mailbox_name);
149     xbt_assert(res == MSG_OK, "MSG_task_get failed");
150
151     XBT_INFO("Received \"%s\" from mailbox %s", MSG_task_get_name(task),mailbox_name);
152     if (!strcmp(MSG_task_get_name(task), "finalize")) {
153       MSG_task_destroy(task);
154       break;
155     }
156
157     MSG_task_execute(task);
158     XBT_INFO("\"%s\" done", MSG_task_get_name(task));
159     MSG_task_destroy(task);
160     task = NULL;
161   }
162   free(mailbox_name);
163   return 0;
164 }                               /* end_of_slave */
165
166 /** Main function */
167 int main(int argc, char *argv[])
168 {
169   MSG_error_t res = MSG_OK;
170   xbt_dynar_t hosts_dynar;
171   m_host_t*hosts= xbt_new(m_host_t,10);
172   char**hostnames= xbt_new(char*,10);
173   char**masterargv=xbt_new(char*,12);
174   int i;
175
176   /* Get the arguments */
177   MSG_global_init(&argc, argv);
178   if (argc < 2) {
179     printf("Usage: %s platform_file\n", argv[0]);
180     printf("example: %s msg_platform.xml\n", argv[0]);
181     exit(1);
182   } if (argc>2) {
183     printf("Usage: %s platform_file\n", argv[0]);
184     printf("Other parameters (such as the deployment file) are ignored.");
185   }
186
187   /* load the platform file */
188   MSG_create_environment(argv[1]);
189   /* Retrieve the 10 first hosts of the platform file */
190   hosts_dynar = MSG_hosts_as_dynar();
191   xbt_assert(xbt_dynar_length(hosts_dynar)>10,
192       "I need at least 10 hosts in the platform file, but %s contains only %ld hosts_dynar.",
193       argv[1],xbt_dynar_length(hosts_dynar));
194   for (i=0;i<10;i++) {
195     hosts[i] = xbt_dynar_get_as(hosts_dynar,i,m_host_t);
196     hostnames[i] = xbt_strdup(MSG_host_get_name(hosts[i]));
197   }
198   masterargv[0]=xbt_strdup("master");
199   for (i=1;i<11;i++) {
200     masterargv[i] = xbt_strdup(MSG_host_get_name(hosts[i-1]));
201   }
202   masterargv[11]=NULL;
203   MSG_process_create_with_arguments("master",master,NULL,hosts[0],11,masterargv);
204   res = MSG_main();
205   XBT_INFO("Simulation time %g", MSG_get_clock());
206
207   MSG_clean();
208   free(hosts);
209   free(hostnames);
210   xbt_dynar_free(&hosts_dynar);
211
212   if (res == MSG_OK)
213     return 0;
214   else
215     return 1;
216 }                               /* end_of_main */