]> git.somenet.org - pub/jan/lsdc.git/blob - src/at/ac/tuwien/lsdc/sched/SchedulerC.java
fix stop Events in SchedB, count start & stop in SchedC
[pub/jan/lsdc.git] / src / at / ac / tuwien / lsdc / sched / SchedulerC.java
1 package at.ac.tuwien.lsdc.sched;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.util.LinkedList;
6 import java.util.List;
7
8 import org.slf4j.Logger;
9 import org.slf4j.LoggerFactory;
10
11 import at.ac.tuwien.lsdc.exception.OutOfPMsException;
12 import at.ac.tuwien.lsdc.types.Application;
13 import at.ac.tuwien.lsdc.types.PhysicalMachine;
14 import at.ac.tuwien.lsdc.types.ScenarioType;
15 import at.ac.tuwien.lsdc.types.SchedulerEvent;
16 import at.ac.tuwien.lsdc.types.SchedulerType;
17 import at.ac.tuwien.lsdc.types.VirtualMachine;
18 import at.ac.tuwien.lsdc.types.VirtualMachine.VMType;
19
20 public class SchedulerC extends AbstractSchedulerWithMigration {
21
22         private static final Logger LOG = LoggerFactory.getLogger(SchedulerC.class);
23
24         public SchedulerC(int numPMs, int numCloudPartners, File schedulerLog, ScenarioType scenario)
25                         throws IOException {
26                 super(numPMs, numCloudPartners, schedulerLog, scenario);
27
28                 this.vmType = VMType.NonResizable;
29         }
30
31         @Override
32         protected boolean deployApp(VirtualMachine vm, Application app) {
33                 boolean deployed = false;
34                 if (!vm.enoughResources(app))
35                         return false;
36
37                 deployed = vm.startApplication(app);
38                 if (deployed)
39                         app.setRunningOn(vm);
40                 return deployed;
41         }
42
43         /**
44          * Cleanup completed apps. If an VM becomes empty, shut down VM + PM.
45          *
46          * @param events list of all events that happened in this timeslot.
47          */
48         @Override
49         protected void handleEndEvents(LinkedList<SchedulerEvent> events) {
50 //              LOG.debug("stopApps():" + events);
51                 for (SchedulerEvent evt : events) {
52                         VirtualMachine vm = evt.getApp().getRunningOn();
53                         evt.getApp().setRunningOn(null);
54                         vm.stopApplication(evt.getApp());
55
56                         numStopped++;
57
58                         if (vm.getApplications().size() == 0) {
59                                 PhysicalMachine pm = vm.getRunningOn();
60                                 pm.stopVirtualMachine(vm);
61                                 manager.stopPhysicalMachine(pm.getId());
62                         }
63                 }
64         }
65
66
67         /**
68          * Try to start all Apps. If not enough space start another PM, if not possible,
69          * delay start.
70          *
71          * @param events list of all events that happened in this timeslot.
72          */
73         @Override
74         protected void handleStartEvents(LinkedList<SchedulerEvent> events) {
75 //              LOG.debug("startApps():" + events);
76                 boolean deployed = false;
77                 for (SchedulerEvent evt : events) {
78                         deployed = false;
79                         VirtualMachine vm = null;
80                         List<PhysicalMachine> sortedPMs = manager.getRevSortedPMs();
81
82                         for (PhysicalMachine pm : sortedPMs) {
83                                 if (pm.isRunning() && (pm.countCurrentlyRunningVMs() > 0)) {
84                                         vm = pm.getVirtualMachines().values().iterator().next();
85                                         deployed = deployApp(vm, evt.getApp());
86                                         if (deployed)
87                                                 break;
88                                 }
89                         }
90                         if (!deployed) {
91                                 try {
92                                         vm = manager.startPhysicalMachine().startVirtualMachine(vmType);
93                                         deployed = deployApp(vm, evt.getApp());
94                                 } catch (OutOfPMsException e) {
95                                         if (federation.askToOutsource(evt.getApp())) {
96                                                 insertOutsourcedStartEvent(currTime + 1, evt.getApp());
97                                         } else {
98                                                 LOG.info("delaying the start of:" + evt.getApp());
99                                                 delayedApps.add(evt.getApp());
100                                         }
101                                 }
102                         }
103                         if (deployed) {
104                                 insertStopEvent(currTime + evt.getApp().getDuration(), evt.getApp());
105
106                                 numStarted++;
107
108                                 if(manager.countCurrentlyRunningPMs() < manager.getMaxPMs()) {
109                                         Application app = federation.askToInsource();
110                                         if(app != null) {
111                                                 insertInsourcedStartEvent(currTime + 1, evt.getApp());
112                                         }
113                                 }
114                         }
115                 }
116         }
117
118         @Override
119         protected String getSchedulerType() {
120                 return SchedulerType.C.toString();
121         }
122
123 }