Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reorganize java sources
[simgrid.git] / examples / pingPong / PingPongTest.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         
5  * All rights reserved. 
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. 
9  */
10
11 import simgrid.msg.*;
12  
13 public class PingPongTest  {
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 < 2) {
26                 Msg.info("Usage   : PingPong platform_file deployment_file");
27                 Msg.info("example : PingPong ping_pong_platform.xml ping_pong_deployment.xml");
28                 System.exit(1);
29         }
30         
31         /* construct the platform and deploy the application */
32         Msg.createEnvironment(args[0]);
33         Msg.deployApplication(args[1]);
34                 
35         /*  execute the simulation. */
36         Msg.run();
37     }
38 }