Logo AND Algorithmique Numérique Distribuée

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