Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename host callbacks
[simgrid.git] / examples / java / surfPlugin / Sender.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * 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 surfPlugin;
8 import org.simgrid.msg.Host;
9 import org.simgrid.msg.HostNotFoundException;
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.MsgException;
12 import org.simgrid.msg.Process;
13 import org.simgrid.msg.Task;
14
15 public class Sender extends Process {
16         public Sender(Host host, String name, String[] args) {
17                 super(host,name,args);
18         }
19     private final double commSizeLat = 1;
20     final double commSizeBw = 100000000;
21    
22     public void main(String[] args) throws MsgException {
23         
24        Msg.info("helloo!");
25         
26        int hostCount = args.length;
27         
28        Msg.info("host count: " + hostCount);
29        String mailboxes[] = new String[hostCount]; 
30        double time;
31        double computeDuration = 10000;
32        Task task;
33         
34        for(int pos = 0; pos < args.length ; pos++) {
35           try {
36              mailboxes[pos] = Host.getByName(args[pos]).getName();
37           } catch (HostNotFoundException e) {
38              Msg.info("Invalid deployment file: " + e.toString());           
39              System.exit(1);
40           }
41         }
42         
43         for (int pos = 0; pos < hostCount; pos++) { 
44            time = Msg.getClock(); 
45             
46            Msg.info("sender time: " + time);
47            
48            task = new Task("no name",computeDuration,commSizeLat);
49             
50            task.send(mailboxes[pos]);
51         } 
52         
53         Msg.info("goodbye!");
54     }
55 }