Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8c7fb2cd229b3b7a68c3860aebd30fee38553bb8
[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
12 class Main{
13   private Main() {
14     throw new IllegalAccessError("Utility class");
15   }
16
17   public static void main(String[] args) throws MsgException {
18     Msg.init(args);
19     if(args.length < 2) {
20       Msg.info("Usage   : Bittorrent platform_file deployment_file");
21       Msg.info("example : Bittorrent ../platforms/cluster.xml bittorrent.xml");
22       System.exit(1);
23     }
24
25     /* construct the platform and deploy the application */
26     Msg.createEnvironment(args[0]);
27     Msg.deployApplication(args[1]);
28
29     /*  execute the simulation. */
30     Msg.run();
31   }
32 }