Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9da6a107f0e11a029a1643649ac8856f5642a8f5
[simgrid.git] / examples / java / cloud / Cloud.java
1 /* Copyright (c) 2012-2014. 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 package cloud;
8
9 import org.simgrid.msg.Host;
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.MsgException;
12
13 /**
14  * Example showing the use of the new experimental Cloud API.
15  */
16 public class Cloud {
17         public static final double task_comp_size = 10;
18         public static final double task_comm_size = 10;
19         public static final int hostNB = 89 ; 
20         public static void main(String[] args) throws MsgException {       
21             Msg.init(args); 
22             
23             if (args.length < 1) {
24                 Msg.info("Usage  : Cloud platform_file");
25                 Msg.info("Usage  : Cloud platform.xml");
26                 System.exit(1);
27             }
28             /* Construct the platform */
29                 Msg.createEnvironment(args[0]);
30                 Host[] hosts = Host.all();
31                 if (hosts.length < hostNB+1) {
32                         Msg.info("I need at least "+ (hostNB+1) +"  hosts in the platform file, but " + args[0] + " contains only " + hosts.length + " hosts");
33                         System.exit(42);
34                 }
35                 Msg.info("Start"+ hostNB +"  hosts");
36                 new Master(hosts[0],"Master",hosts).start();
37                 /* Execute the simulation */
38                 Msg.run();
39                 
40     }
41 }