Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
checking if a unsigned int is >0 is a bad idea
[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.msg.MsgException;
10 import org.simgrid.trace.Trace;
11
12 public class Main  {
13   private Main() {
14     throw new IllegalAccessError("Utility class");
15   }
16
17   public static void main(String[] args) throws MsgException {
18     Msg.init(args);
19     if(args.length < 1) {
20       Msg.info("Usage   : Main platform_file");
21       Msg.info("example : Main ../platforms/platform.xml");
22       System.exit(1);
23     }
24
25     /* construct the platform and deploy the application */
26     Msg.createEnvironment(args[0]);
27     new Sender("Jacquelin", "Sender", new String[] {"Boivin", "Tremblay"}).start();
28     new Receiver ("Boivin", "Receiver", null).start();
29     new Receiver ("Tremblay", "Receiver", null).start();
30
31     /* Initialize some state for the hosts */
32     Trace.hostStateDeclare ("PM_STATE"); 
33     Trace.hostStateDeclareValue ("PM_STATE", "waitingPing", "0 0 1");
34     Trace.hostStateDeclareValue ("PM_STATE", "sendingPong", "0 1 0");
35     Trace.hostStateDeclareValue ("PM_STATE", "sendingPing", "0 1 1");
36     Trace.hostStateDeclareValue ("PM_STATE", "waitingPong", "1 0 0");
37
38     /*  execute the simulation. */
39     Msg.run();
40   }
41 }