Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c0b8c60e40c8d9a2d9ef9af492e82478354cc6f8
[simgrid.git] / examples / java / kademlia / Kademlia.java
1 /* Copyright (c) 2012. 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 package kademlia;
7 import org.simgrid.msg.Msg;
8 import org.simgrid.msg.MsgException;
9 /**
10  * Main class of the simulation. Launch the simulation.
11  */
12 public class Kademlia {
13         public static void main(String[] args) throws MsgException {
14                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
15                 Msg.init(args);
16                 if(args.length < 2) {
17                         Msg.info("Usage   : Kademlia platform_file deployment_file");
18                         Msg.info("example : Kademlia platform.xml deployment.xml");
19                         System.exit(1);
20                 }
21                 
22                 /* construct the platform and deploy the application */
23                 Msg.createEnvironment(args[0]);
24                 Msg.deployApplication(args[1]);
25                         
26                 /*  execute the simulation. */
27         Msg.run();              
28         }
29 }