Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make Process.migrate non-static
[simgrid.git] / examples / basic / BasicTest.java
1 /*
2  * Copyright 2006,2007,2010. The SimGrid Team. 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
8 package basic;
9
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.NativeException;
12
13 public class BasicTest {
14    
15    /* This only contains the launcher. If you do nothing more than than you can run 
16     *   java simgrid.msg.Msg
17     * which also contains such a launcher
18     */
19    
20     public static void main(String[] args) throws NativeException {
21        
22        /* initialize the MSG simulation. Must be done before anything else (even logging). */
23        Msg.init(args);
24
25        if(args.length == 0) {
26                 Msg.createEnvironment("basic_platform.xml");
27                 Msg.deployApplication("basic_deployment.xml");
28            
29        } else if (args.length < 2) {
30
31                 
32           Msg.info("Usage   : Basic platform_file deployment_file");
33           Msg.info("example : Basic basic_platform.xml basic_deployment.xml");
34           System.exit(1);
35        } else {
36                 
37         /* construct the platform and deploy the application */
38         Msg.createEnvironment(args[0]);
39         Msg.deployApplication(args[1]);
40        }
41        
42         /*  execute the simulation. */
43         Msg.run();
44     }
45 }