Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/mpoquet/simgrid
[simgrid.git] / examples / java / energy / vm / EnergyVMRunner.java
1 /* Copyright (c) 2016. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package energy.vm;
7
8 import org.simgrid.msg.Msg;
9 import org.simgrid.msg.VM;
10 import org.simgrid.msg.Host;
11 import org.simgrid.msg.Task;
12 import org.simgrid.msg.Process;
13 import org.simgrid.msg.HostFailureException;
14 import org.simgrid.msg.HostNotFoundException;
15 import org.simgrid.msg.TaskCancelledException;
16 import org.simgrid.msg.NativeException;
17
18 /* This class is a process in charge of running the test. It creates and starts the VMs, and fork processes within VMs */
19 public class EnergyVMRunner extends Process {
20
21   public class DummyProcess extends Process {
22     public  DummyProcess (Host host, String name) {
23       super(host, name); 
24     }
25
26     @Override
27     public void main(String[] strings) {
28       Task  task = new Task(this.getHost().getName()+"-task", 300E6 , 0);
29       try {
30         task.execute();
31       } catch (HostFailureException | TaskCancelledException e) {
32         Msg.error(e.getMessage());
33         e.printStackTrace();
34       } 
35       Msg.info("This worker is done."); 
36     }
37   }
38
39   EnergyVMRunner(Host host, String name, String[] args) throws HostNotFoundException, NativeException  {
40     super(host, name, args);
41   }
42
43   @Override
44   public void main(String[] strings) throws HostNotFoundException, HostFailureException {
45     /* get hosts */
46     Host host1 = Host.getByName("MyHost1");
47     Host host2 = Host.getByName("MyHost2");
48     Host host3 = Host.getByName("MyHost3");
49
50     Msg.info("Creating and starting two VMs");
51     VM vmHost1 = new VM(host1, "vmHost1", 4, 2048, 100, null, 1024 * 20, 10,50);
52     vmHost1.start();
53
54     VM vmHost3 = new VM(host3, "vmHost3", 4, 2048, 100, null, 1024 * 20, 10,50);
55     vmHost3.start();
56
57     Msg.info("Create two tasks on Host1: one inside a VM, the other directly on the host");
58     new DummyProcess (vmHost1, "p11"); 
59     new DummyProcess (host1, "p12"); 
60
61     Msg.info("Create two tasks on Host2: both directly on the host");
62     new DummyProcess (host2, "p21"); 
63     new DummyProcess (host2, "p22"); 
64
65     Msg.info("Create two tasks on Host3: both inside a VM");
66     new DummyProcess (vmHost3, "p31"); 
67     new DummyProcess (vmHost3, "p312"); 
68
69     Msg.info("Wait 5 seconds. The tasks are still running (they run for 3 seconds, but 2 tasks are co-located, "
70              + "so they run for 6 seconds)"); 
71     waitFor(5); 
72     Msg.info("Wait another 5 seconds. The tasks stop at some point in between"); 
73     waitFor(5); 
74
75     vmHost1.destroy(); 
76     vmHost3.destroy(); 
77   }
78 }