Logo AND Algorithmique Numérique Distribuée

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