Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
still 2 tests to go before it works again
[simgrid.git] / examples / java / io / storage / Main.java
1 /* Copyright (c) 2012-2014. 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 io.storage;
8 import org.simgrid.msg.Msg;
9 import org.simgrid.msg.Host;
10 import org.simgrid.msg.MsgException;
11
12 public 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 < 1) {
20       Msg.info("Usage   : Storage platform_file ");
21       Msg.info("example : Storage ../platforms/storage/storage.xml ");
22       System.exit(1);
23     }
24
25     Msg.createEnvironment(args[0]);
26
27     Host[] hosts = Host.all();
28     new io.storage.Client(hosts[3],0).start();
29
30     Msg.run();
31     }
32 }