Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add asynchronous API (except wait) for communications
[simgrid.git] / examples / async / Slave.java
1 /*
2  * Copyright 2006,2007,2010. The SimGrid Team. 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 async;
8 import org.simgrid.msg.Comm;
9 import org.simgrid.msg.HostFailureException;
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.Task;
12 import org.simgrid.msg.TaskCancelledException;
13 import org.simgrid.msg.TimeoutException;
14 import org.simgrid.msg.TransferFailureException;
15 import org.simgrid.msg.Process;
16
17 public class Slave extends Process {
18         public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException {
19                 if (args.length < 1) {
20                         Msg.info("Slave needs 1 argument (its number)");
21                         System.exit(1);
22                 }
23
24                 int num = Integer.valueOf(args[0]).intValue();
25                 
26                 Comm comm = null;
27                 boolean slaveFinished = false;
28                 while(!slaveFinished) {  
29                         try
30                         {
31                                 if (comm == null) {
32                                         Msg.info("Receiving on 'slave_" + num + "'");
33                                         comm = Task.irecv("slave_" + num);
34                                 }
35                                 else {
36                                         if (comm.test()) {
37                                                 Task task = comm.getTask();
38         
39                                                 if (task instanceof FinalizeTask) {
40                                                         break;
41                                                 }
42                                                 Msg.info("Received \"" + task.getName() +  "\". Processing it.");
43                                                 try {
44                                                         task.execute();
45                                                 } catch (TaskCancelledException e) {
46                                                         
47                                                 }
48                                         }
49                                         else {
50                                                 simulatedSleep(1);
51                                         }
52                                 }
53                         }
54                         catch (Exception e) {
55
56                         }
57                 }
58                 Msg.info("Received Finalize. I'm done. See you!");
59                 simulatedSleep(20);
60         }
61 }