Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove some smells in Java
[simgrid.git] / examples / java / async / dsend / Main.java
1 /* Copyright (c) 2006-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 async.dsend;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.Host;
11 import org.simgrid.msg.NativeException;
12 import org.simgrid.msg.HostNotFoundException;
13
14 class Main {
15   private Main() {
16     throw new IllegalAccessError("Utility class");
17   }
18
19   public static void main(String[] args) throws NativeException, HostNotFoundException {
20     Msg.init(args);
21
22     if (args.length < 1) {
23     Msg.info("Usage   : Main platform_file");
24     Msg.info("example : Main ../platforms/small_platform.xml");
25     System.exit(1);
26   }
27
28     /* construct the platform and deploy the application */
29     Msg.createEnvironment(args[0]);
30     Host[] hosts = Host.all();
31     new Sender(hosts[0],"Sender").start();
32     for (int i=1; i < hosts.length; i++){
33       new Receiver(hosts[i], "Receiver").start();
34     }
35     /*  execute the simulation. */
36     Msg.run();
37   }
38 }