Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix doxygen comments.
[simgrid.git] / examples / java / commTime / Master.java
1 /*
2  * Master of a basic master/slave example in Java
3  *
4  * Copyright 2006-2012 The SimGrid Team. All rights reserved. 
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. 
8  */
9
10 package commTime;
11
12 import org.simgrid.msg.Host;
13 import org.simgrid.msg.Msg;
14 import org.simgrid.msg.MsgException;
15 import org.simgrid.msg.Process;
16 import org.simgrid.msg.Task;
17
18 public class Master extends Process {
19         public Master(Host host, String name, String[]args) {
20                 super(host,name,args);
21         } 
22         public void main(String[] args) throws MsgException {
23       if (args.length < 4) {
24          Msg.info("Master needs 4 arguments");
25          System.exit(1);
26       }
27       
28       int tasksCount = Integer.valueOf(args[0]).intValue();             
29       double taskComputeSize = Double.valueOf(args[1]).doubleValue();           
30       double taskCommunicateSize = Double.valueOf(args[2]).doubleValue();
31       
32       int slavesCount = Integer.valueOf(args[3]).intValue();
33       
34       Msg.info("Hello! Got "+  slavesCount + " slaves and "+tasksCount+" tasks to process");
35       
36       for (int i = 0; i < tasksCount; i++) {
37          Task task = new Task("Task_" + i, taskComputeSize, taskCommunicateSize);
38          if (i%1000==0)
39            Msg.info("Sending \"" + task.getName()+ "\" to \"slave_" + i % slavesCount + "\"");
40          task.send("slave_"+(i%slavesCount));
41       }
42       
43       Msg.info("All tasks have been dispatched. Let's tell everybody the computation is over.");
44       
45       for (int i = 0; i < slavesCount; i++) {
46          FinalizeTask task = new FinalizeTask();
47          task.send("slave_"+(i%slavesCount));
48       }
49       
50       Msg.info("Goodbye now!");
51     }
52 }