Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4e856bca9da5f0b3f19979383d66e2e1b2478a9e
[simgrid.git] / examples / java / basic / Forwarder.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         
5  * All rights reserved. 
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. 
9  */
10
11 import simgrid.msg.*;
12
13 public class Forwarder extends simgrid.msg.Process {
14     
15    public void main(String[] args) throws JniException, NativeException {
16       Msg.info("hello!");
17       
18       int slavesCount = args.length;
19       Host[] slaves = new Host[slavesCount];
20       
21       for (int i = 0; i < args.length; i++) {
22          try {        
23             slaves[i] = Host.getByName(args[i]);
24          } catch (HostNotFoundException e) {
25             Msg.info("Buggy deployment file");
26             e.printStackTrace();
27             System.exit(1);
28          }
29       }
30       
31       int taskCount = 0;
32       while(true) {
33          Task t = Task.get(0);  
34          
35          if (t instanceof FinalizeTask) {
36             Msg.info("All tasks have been dispatched. Let's tell everybody the computation is over.");
37             
38             for (int cpt = 0; cpt<slavesCount; cpt++) {
39                slaves[cpt].put(0,new FinalizeTask());
40             }
41             break;
42          }
43          BasicTask task = (BasicTask)t;
44          
45          Msg.info("Received \"" + task.getName() + "\" ");
46                     
47          Msg.info("Sending \"" + task.getName() + "\" to \"" + slaves[taskCount % slavesCount].getName() + "\"");
48          slaves[taskCount % slavesCount].put(0, task);
49             
50          taskCount++;
51       }
52       
53          
54       Msg.info("I'm done. See you!");
55    }
56 }
57