Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bd43e174ac307510f419d4b89aebefb8882b1a03
[simgrid.git] / examples / java / trace / pingpong / Main.java
1 /* Copyright (c) 2006-2007, 2012-2014, 2016. 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 trace.pingpong;
8 import org.simgrid.msg.Msg;
9 import org.simgrid.trace.Trace;
10 import org.simgrid.msg.MsgException;
11 import org.simgrid.msg.NativeException;
12
13 public class Main  {
14   public static void main(String[] args) throws MsgException, NativeException {
15     Msg.init(args);
16     if(args.length < 1) {
17       Msg.info("Usage   : Main platform_file");
18       Msg.info("example : Main ../platforms/platform.xml");
19       System.exit(1);
20     }
21
22     /* construct the platform and deploy the application */
23     Msg.createEnvironment(args[0]);
24     new Sender("Jacquelin", "Sender", new String[] {"Boivin", "Marcel"}).start();
25     new Receiver ("Boivin", "Receiver", null).start();
26     new Receiver ("Marcel", "Receiver", null).start();
27
28     /* Initialize some state for the hosts */
29     Trace.hostStateDeclare ("PM_STATE"); 
30     Trace.hostStateDeclareValue ("PM_STATE", "waitingPing", "0 0 1");
31     Trace.hostStateDeclareValue ("PM_STATE", "sendingPong", "0 1 0");
32     Trace.hostStateDeclareValue ("PM_STATE", "sendingPing", "0 1 1");
33     Trace.hostStateDeclareValue ("PM_STATE", "waitingPong", "1 0 0");
34
35     /*  execute the simulation. */
36     Msg.run();
37   }
38 }