Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add tesh file for masterslave_virtual_machines
[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");
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
102   XBT_INFO("Migrate everyone to the second host.");
103   for (i=0;i<xbt_dynar_length(vms);i++)
104     MSG_vm_migrate(xbt_dynar_get_as(vms,i,msg_vm_t),slaves[1]);
105
106   XBT_INFO("Suspend everyone, move them to the third host, and resume them.");
107   for (i=0;i<xbt_dynar_length(vms);i++) {
108     msg_vm_t vm = xbt_dynar_get_as(vms,i,msg_vm_t);
109     MSG_vm_suspend(vm);
110     MSG_vm_migrate(vm,slaves[2]);
111     MSG_vm_resume(vm);
112   }
113
114   work_batch(slaves_count*2);
115
116   XBT_INFO("Let's shut down the simulation. 10 first processes will be shut down cleanly while the second half will forcefully get killed");
117   for (i = 0; i < slaves_count; i++) {
118     char mailbox_buffer[64];
119     sprintf(mailbox_buffer,"Slave_%d",i);
120     m_task_t finalize = MSG_task_create("finalize", 0, 0, 0);
121     MSG_task_send(finalize, mailbox_buffer);
122   }
123
124   for (i=0;i<xbt_dynar_length(vms);i++) {
125     msg_vm_t vm = xbt_dynar_get_as(vms,i,msg_vm_t);
126     MSG_vm_shutdown(vm);
127   }
128
129   XBT_INFO("Goodbye now!");
130   free(slaves);
131   xbt_dynar_free(&vms);
132   return 0;
133 }                               /* end_of_master */
134
135 /** Receiver function  */
136 int slave_fun(int argc, char *argv[])
137 {
138   char *mailbox_name;
139   m_task_t task = NULL;
140   _XBT_GNUC_UNUSED int res;
141
142   /* since the slaves will move around, use slave_%d as mailbox names instead of hostnames */
143   xbt_assert(argc>=2, "slave processes need to be given their rank as parameter");
144   mailbox_name=bprintf("Slave_%s",argv[1]);
145
146   while (1) {
147     res = MSG_task_receive(&(task),mailbox_name);
148     xbt_assert(res == MSG_OK, "MSG_task_get failed");
149
150     XBT_INFO("Received \"%s\" from mailbox %s", MSG_task_get_name(task),mailbox_name);
151     if (!strcmp(MSG_task_get_name(task), "finalize")) {
152       MSG_task_destroy(task);
153       break;
154     }
155
156     MSG_task_execute(task);
157     XBT_INFO("\"%s\" done", MSG_task_get_name(task));
158     MSG_task_destroy(task);
159     task = NULL;
160   }
161   free(mailbox_name);
162   return 0;
163 }                               /* end_of_slave */
164
165 /** Main function */
166 int main(int argc, char *argv[])
167 {
168   MSG_error_t res = MSG_OK;
169   xbt_dynar_t hosts_dynar;
170   m_host_t*hosts= xbt_new(m_host_t,10);
171   char**hostnames= xbt_new(char*,10);
172   char**masterargv=xbt_new(char*,12);
173   int i;
174
175   /* Get the arguments */
176   MSG_global_init(&argc, argv);
177   if (argc < 2) {
178     printf("Usage: %s platform_file\n", argv[0]);
179     printf("example: %s msg_platform.xml\n", argv[0]);
180     exit(1);
181   } if (argc>2) {
182     printf("Usage: %s platform_file\n", argv[0]);
183     printf("Other parameters (such as the deployment file) are ignored.");
184   }
185
186   /* load the platform file */
187   MSG_create_environment(argv[1]);
188   /* Retrieve the 10 first hosts of the platform file */
189   hosts_dynar = MSG_hosts_as_dynar();
190   xbt_assert(xbt_dynar_length(hosts_dynar)>10,
191       "I need at least 10 hosts in the platform file, but %s contains only %ld hosts_dynar.",
192       argv[1],xbt_dynar_length(hosts_dynar));
193   for (i=0;i<10;i++) {
194     hosts[i] = xbt_dynar_get_as(hosts_dynar,i,m_host_t);
195     hostnames[i] = xbt_strdup(MSG_host_get_name(hosts[i]));
196   }
197   masterargv[0]=xbt_strdup("master");
198   for (i=1;i<11;i++) {
199     masterargv[i] = xbt_strdup(MSG_host_get_name(hosts[i-1]));
200   }
201   masterargv[11]=NULL;
202   MSG_process_create_with_arguments("master",master,NULL,hosts[0],11,masterargv);
203   res = MSG_main();
204   XBT_INFO("Simulation time %g", MSG_get_clock());
205
206   MSG_clean();
207   free(hosts);
208   free(hostnames);
209   xbt_dynar_free(&hosts_dynar);
210
211   if (res == MSG_OK)
212     return 0;
213   else
214     return 1;
215 }                               /* end_of_main */