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 / app / bittorrent / 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 app.bittorrent;
7
8 import org.simgrid.msg.Msg;
9 import org.simgrid.msg.MsgException;
10 import org.simgrid.msg.RngStream;
11
12 class Main{
13   private Main() {
14     throw new IllegalAccessError("Utility class");
15   }
16
17   public static void main(String[] args) {
18     int[] seed = { 12345, 12345, 12345, 12345, 12345, 12345 };
19     RngStream.setPackageSeed(seed);
20
21     Msg.init(args);
22     if(args.length < 2) {
23       Msg.info("Usage   : Bittorrent platform_file deployment_file");
24       Msg.info("example : Bittorrent ../platforms/cluster.xml bittorrent.xml");
25       System.exit(1);
26     }
27
28     /* construct the platform and deploy the application */
29     Msg.createEnvironment(args[0]);
30     Msg.deployApplication(args[1]);
31
32     /*  execute the simulation. */
33     Msg.run();
34   }
35 }