Forked from alessandroleite/RoundRobinDatacenterBroker.java
Created
November 15, 2012 06:39
-
-
Save yzxlr/4077054 to your computer and use it in GitHub Desktop.
CloudSim DatacenterBroker implementation using the Round-Robin scheduling policy
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); | |
}; | |
} |
put that file in this path org.cloudbus.cloudsim.core.CloudSim
in the same path for DataCenterBroker
pls how can put this path bcz i got error
where do i put the file i mean the location ?
I am getting error of main method , please tell how to resolve
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want to know in which location I have to add main method because when i am running this code in cloudsim it gives error..