Logo AND Algorithmique Numérique Distribuée

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