Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups in java examples (2/2)
[simgrid.git] / examples / java / io / Node.java
index 4a139b7..42e84b8 100644 (file)
@@ -6,59 +6,61 @@
 
 package io;
 
+import org.simgrid.msg.Msg;
 import org.simgrid.msg.File;
 import org.simgrid.msg.Host;
+import org.simgrid.msg.Process;
 import org.simgrid.msg.HostNotFoundException;
-import org.simgrid.msg.Msg;
 import org.simgrid.msg.MsgException;
-import org.simgrid.msg.Process;
 
 public class Node extends Process {
-       private static String FILENAME1 = "/doc/simgrid/examples/platforms/g5k.xml";
-       private static String FILENAME2 = "\\Windows\\setupact.log";
-       private static String FILENAME3 = "/doc/simgrid/examples/platforms/g5k_cabinets.xml";
-       private static String FILENAME4 = "/doc/simgrid/examples/platforms/nancy.xml";
-                       
-       protected int number;
-               
-       public Node(Host host, int number) throws HostNotFoundException {
-               super(host, Integer.toString(number), null);
-               this.number = number;
-       }       
-       public void main(String[] args) throws MsgException {
-               String mount = "";
-               String filename;
-               switch (number) {
-                       case 0:
-                mount = "/home";
-                               filename = mount + FILENAME1;
-                       break;
-                       case 1:
-                mount = "c:";
-                               filename = mount + FILENAME2;
-                       break;
-                       case 2:
-                mount = "/home";
-                               filename = mount + FILENAME3;
-                       break;
-                       case 3:
-                mount = "/home";
-                               filename = mount + FILENAME4;
-                       break;
-                       default:
-                mount = "/home";
-                               filename = mount + FILENAME1;
-               }
-               Msg.info("Open file " + filename);
-               File file = new File(filename);
+  private static String FILENAME1 = "/doc/simgrid/examples/platforms/g5k.xml";
+  private static String FILENAME2 = "\\Windows\\setupact.log";
+  private static String FILENAME3 = "/doc/simgrid/examples/platforms/g5k_cabinets.xml";
+  private static String FILENAME4 = "/doc/simgrid/examples/platforms/nancy.xml";
+
+  protected int number;
+
+  public Node(Host host, int number) throws HostNotFoundException {
+    super(host, Integer.toString(number), null);
+    this.number = number;
+  }
+
+  public void main(String[] args) throws MsgException {
+    String mount = "";
+    String filename;
+    switch (number) {
+      case 0:
+        mount = "/home";
+        filename = mount + FILENAME1;
+      break;
+      case 1:
+        mount = "c:";
+        filename = mount + FILENAME2;
+      break;
+      case 2:
+        mount = "/home";
+        filename = mount + FILENAME3;
+      break;
+      case 3:
+        mount = "/home";
+        filename = mount + FILENAME4;
+      break;
+      default:
+        mount = "/home";
+        filename = mount + FILENAME1;
+    }
+
+    Msg.info("Open file " + filename);
+    File file = new File(filename);
+
+    long read = file.read(10000000,1);
+    Msg.info("Having read " + read + " on " + filename);
 
-               long read = file.read(10000000,1);
-               Msg.info("Having read " + read + " on " + filename);
-               
-               long write = file.read(100000,1);
-               Msg.info("Having write " + write + " on " + filename);
+    long write = file.read(100000,1);
+    Msg.info("Having write " + write + " on " + filename);
 
-               read = file.read(10000000,1);
-               Msg.info("Having read " + read + " on " + filename);    
-       }
+    read = file.read(10000000,1);
+    Msg.info("Having read " + read + " on " + filename);  
+  }
 }