Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
initial (almost working) release of a separate package for the Java bindings of SimGrid
[simgrid.git] / examples / mutualExclusion / centralized / MutexCentral.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         
5  * All rights reserved. 
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. 
9  */
10
11 import simgrid.msg.*;
12
13 public class MutexCentral {
14
15         /* This only contains the launcher. If you do nothing more than than you can run 
16          *   java simgrid.msg.Msg
17          * which also contains such a launcher
18          */
19
20         public static void main(String[] args) throws NativeException {
21
22                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
23                 Msg.init(args);
24
25                 if(args.length < 2) {
26                         Msg.info("Usage: Basic platform_file deployment_file");
27                         Msg.info("Fallback to default values");
28                         Msg.createEnvironment("../ring3.xml");
29                         Msg.deployApplication("mutex_centralized_deployment.xml");
30                 } else {
31                         /* construct the platform and deploy the application */
32                         Msg.createEnvironment(args[0]);
33                         Msg.deployApplication(args[1]);
34                 }
35                 
36                 /*  execute the simulation. */
37                 Msg.run();
38         }
39 }