Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the property used by the energy plugin for clarity
[simgrid.git] / examples / java / tracing / TracingTest.java
1 /* Copyright (c) 2006-2007, 2012-2014. 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
14    /* This only contains the launcher. If you do nothing more than than you can run 
15     *   java simgrid.msg.Msg
16     * which also contains such a launcher
17     */
18     
19     public static void main(String[] args) throws NativeException {     
20                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
21                 Msg.init(args);
22                 if(args.length < 2) {
23                         Msg.info("Usage   : PingPong platform_file deployment_file");
24                 Msg.info("example : PingPong ping_pong_platform.xml ping_pong_deployment.xml");
25                 System.exit(1);
26                 }
27         
28                 /* construct the platform and deploy the application */
29                 Msg.createEnvironment(args[0]);
30                 Msg.deployApplication(args[1]);
31
32                 /* Initialize some state for the hosts */
33                 Trace.hostStateDeclare ("PM_STATE"); 
34                 Trace.hostStateDeclareValue ("PM_STATE", "waitingPing", "0 0 1");
35                 Trace.hostStateDeclareValue ("PM_STATE", "sendingPong", "0 1 0");
36                 Trace.hostStateDeclareValue ("PM_STATE", "sendingPing", "0 1 1");
37                 Trace.hostStateDeclareValue ("PM_STATE", "waitingPong", "1 0 0");
38
39                 /*  execute the simulation. */
40             Msg.run();
41     }
42 }