Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5a033e3386205d83a58ecc177eb2d4b46496644b
[simgrid.git] / examples / java / tracing / TracingTest.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 tracing;
8 import org.simgrid.msg.Msg;
9 import org.simgrid.trace.Trace;
10 import org.simgrid.msg.NativeException;
11
12 public class TracingTest  {
13   public static void main(String[] args) throws NativeException {      
14     Msg.init(args);
15     if(args.length < 2) {
16       Msg.info("Usage   : TracingTest platform_file deployment_file");
17       Msg.info("example : TracingTest ../platforms/platform.xml tracingPingPongDeployment.xml");
18       System.exit(1);
19     }
20
21     /* construct the platform and deploy the application */
22     Msg.createEnvironment(args[0]);
23     Msg.deployApplication(args[1]);
24
25     /* Initialize some state for the hosts */
26     Trace.hostStateDeclare ("PM_STATE"); 
27     Trace.hostStateDeclareValue ("PM_STATE", "waitingPing", "0 0 1");
28     Trace.hostStateDeclareValue ("PM_STATE", "sendingPong", "0 1 0");
29     Trace.hostStateDeclareValue ("PM_STATE", "sendingPing", "0 1 1");
30     Trace.hostStateDeclareValue ("PM_STATE", "waitingPong", "1 0 0");
31
32     /*  execute the simulation. */
33     Msg.run();
34   }
35 }