Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of github.com:mquinson/simgrid
[simgrid.git] / examples / java / mutualExclusion / MutexCentral.java
1 /*
2  * 2012. The SimGrid Team. 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 mutualExclusion.centralized;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.NativeException;
11
12 import org.simgrid.msg.*;
13
14 public class MutexCentral {
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
23                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
24                 Msg.init(args);
25
26                 if(args.length < 2) {
27                         Msg.info("Usage: Basic platform_file deployment_file");
28                         Msg.info("Fallback to default values");
29                         Msg.createEnvironment("../ring3.xml");
30                         Msg.deployApplication("mutex_centralized_deployment.xml");
31                 } else {
32                         /* construct the platform and deploy the application */
33                         Msg.createEnvironment(args[0]);
34                         Msg.deployApplication(args[1]);
35                 }
36                 
37                 /*  execute the simulation. */
38                 Msg.run();
39         }
40 }