X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3189d7d6aafade3860d50252491bb52adbb7b262..968e6c2fbe7e470eadaf7e3ca6f3634df1a33550:/examples/java/io/storage/Client.java diff --git a/examples/java/io/storage/Client.java b/examples/java/io/storage/Client.java index 509c32392b..2239ffb89e 100644 --- a/examples/java/io/storage/Client.java +++ b/examples/java/io/storage/Client.java @@ -1,34 +1,30 @@ -/* Copyright (c) 2012-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ /********************* Files and Storage handling **************************** - * This example implements all main storage and file functions of the MSG API + * This example implements some storage related functions of the MSG API * * Scenario : * - display information on the disks mounted by the current host - * - create a 200,000 bytes file - * - completely read the created file - * - write 100,000 bytes in the file - * - rename the created file - * - attach some user data to a disk - * - dump disk's contents + * - attach some properties to a disk + * - list all the storage elements in the platform * ******************************************************************************/ package io.storage; +import java.util.Arrays; +import java.util.Comparator; import org.simgrid.msg.Msg; import org.simgrid.msg.Host; import org.simgrid.msg.Process; import org.simgrid.msg.Storage; -import org.simgrid.msg.HostNotFoundException; import org.simgrid.msg.MsgException; public class Client extends Process { - public Client(Host host, int number) throws HostNotFoundException { + public Client(Host host, int number) { super(host, Integer.toString(number), null); } @@ -36,6 +32,11 @@ public class Client extends Process { // Retrieve all mount points of current host Storage[] storages = getHost().getMountedStorage(); + Arrays.sort(storages, new Comparator() { + public int compare(Storage a, Storage b) { + return a.getName().compareTo(b.getName()); + } + }); for (int i = 0; i < storages.length; i++) { // For each disk mounted on host Msg.info("------------------------------------"); @@ -67,4 +68,4 @@ public class Client extends Process { Msg.info("Disk: "+ stos[i].getName()); } } -} \ No newline at end of file +}