Logo AND Algorithmique Numérique Distribuée

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