-
-
Save kushwiz/e62fd13c2acab970ac88 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.cloudbus.cloudsim.examples; | |
import java.util.List; | |
import org.cloudbus.cloudsim.DatacenterBroker; | |
import org.cloudbus.cloudsim.DatacenterCharacteristics; | |
import org.cloudbus.cloudsim.Log; | |
import org.cloudbus.cloudsim.Vm; | |
import org.cloudbus.cloudsim.core.CloudSim; | |
import org.cloudbus.cloudsim.core.CloudSimTags; | |
import org.cloudbus.cloudsim.core.SimEvent; | |
public class RoundRobinDatacenterBroker extends DatacenterBroker { | |
public RoundRobinDatacenterBroker(String name) throws Exception { | |
super(name); | |
} | |
@Override | |
protected void processResourceCharacteristics(SimEvent ev) { | |
DatacenterCharacteristics characteristics = (DatacenterCharacteristics) ev.getData(); | |
getDatacenterCharacteristicsList().put(characteristics.getId(), characteristics); | |
if (getDatacenterCharacteristicsList().size() == getDatacenterIdsList().size()) { | |
createVmsInDatacenter(getDatacenterIdsList()); | |
} | |
}; | |
protected void createVmsInDatacenter(List<Integer> datacenterIds) { | |
// send as much vms as possible for this datacenter before trying the next one | |
int requestedVms = 0; | |
int i = 0; | |
for (Vm vm : getVmList()) { | |
int datacenterId = datacenterIds.get(i++ % datacenterIds.size()); | |
String datacenterName = CloudSim.getEntityName(datacenterId); | |
if (!getVmsToDatacentersMap().containsKey(vm.getId())) { | |
Log.printLine(CloudSim.clock() + ": " + getName() + ": Trying to Create VM #" + vm.getId() + " in " + datacenterName); | |
sendNow(datacenterId, CloudSimTags.VM_CREATE_ACK, vm); | |
requestedVms++; | |
} | |
} | |
setVmsRequested(requestedVms); | |
setVmsAcks(0); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment