Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tidy the exceptions that can be raised by our Java code
[simgrid.git] / examples / java / dht / kademlia / Main.java
1 /* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package dht.kademlia;
7 import org.simgrid.msg.Msg;
8 import org.simgrid.msg.MsgException;
9
10 class Main {
11   private Main() {
12     throw new IllegalAccessError("Utility class");
13   }
14
15   public static void main(String[] args) {
16     Msg.init(args);
17     if(args.length < 2) {
18       Msg.info("Usage   : Kademlia platform_file deployment_file");
19       Msg.info("example : Kademlia ../platforms/platform.xml kademlia.xml");
20       System.exit(1);
21     }
22
23     /* construct the platform and deploy the application */
24     Msg.createEnvironment(args[0]);
25     Msg.deployApplication(args[1]);
26
27     /*  execute the simulation. */
28     Msg.run();
29   }
30 }