Logo AND Algorithmique Numérique Distribuée

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