package org.fog.test.perfeval; import java.util.ArrayList; import java.util.Calendar; import java.util.LinkedList; import java.util.List; import org.cloudbus.cloudsim.Host; import org.cloudbus.cloudsim.Log; import org.cloudbus.cloudsim.Pe; import org.cloudbus.cloudsim.Storage; import org.cloudbus.cloudsim.core.CloudSim; import org.cloudbus.cloudsim.power.PowerHost; import org.cloudbus.cloudsim.provisioners.RamProvisionerSimple; import org.cloudbus.cloudsim.sdn.overbooking.BwProvisionerOverbooking; import org.cloudbus.cloudsim.sdn.overbooking.PeProvisionerOverbooking; import org.fog.application.AppEdge; import org.fog.application.AppLoop; import org.fog.application.Application; import org.fog.application.selectivity.FractionalSelectivity; import org.fog.entities.Actuator; import org.fog.entities.FogBroker; import org.fog.entities.FogDevice; import org.fog.entities.FogDeviceCharacteristics; import org.fog.entities.Sensor; import org.fog.entities.Tuple; import org.fog.placement.Controller; import org.fog.placement.ModuleMapping; import org.fog.placement.ModulePlacementEdgewards; import org.fog.placement.ModulePlacementMapping; import org.fog.policy.AppModuleAllocationPolicy; import org.fog.scheduler.StreamOperatorScheduler; import org.fog.utils.FogLinearPowerModel; import org.fog.utils.FogUtils; import org.fog.utils.TimeKeeper; import org.fog.utils.distribution.DeterministicDistribution; /** * Simulation setup for case study 1 - EEG Beam Tractor Game * @author Harshit Gupta * */ public class VRGameFog { static List fogDevices = new ArrayList(); static List sensors = new ArrayList(); static List actuators = new ArrayList(); static boolean CLOUD = false; static int numOfDepts = 4; static int numOfMobilesPerDept = 6; static double EEG_TRANSMISSION_TIME = 5.1; //static double EEG_TRANSMISSION_TIME = 10; public static void main(String[] args) { Log.printLine("Starting VRGame..."); try { Log.disable(); int num_user = 1; // number of cloud users Calendar calendar = Calendar.getInstance(); boolean trace_flag = false; // mean trace events CloudSim.init(num_user, calendar, trace_flag); String appId = "vr_game"; // identifier of the application FogBroker broker = new FogBroker("broker"); Application application = createApplication(appId, broker.getId()); application.setUserId(broker.getId()); createFogDevices(broker.getId(), appId); ModuleMapping moduleMapping = ModuleMapping.createModuleMapping(); // initializing a module mapping if(CLOUD){ // if the mode of deployment is cloud-based /*moduleMapping.addModuleToDevice("connector", "cloud", numOfDepts*numOfMobilesPerDept); // fixing all instances of the Connector module to the Cloud moduleMapping.addModuleToDevice("concentration_calculator", "cloud", numOfDepts*numOfMobilesPerDept); // fixing all instances of the Concentration Calculator module to the Cloud */ moduleMapping.addModuleToDevice("connector", "cloud"); // fixing all instances of the Connector module to the Cloud moduleMapping.addModuleToDevice("concentration_calculator", "cloud"); // fixing all instances of the Concentration Calculator module to the Cloud for(FogDevice device : fogDevices){ if(device.getName().startsWith("m")){ //moduleMapping.addModuleToDevice("client", device.getName(), 1); // fixing all instances of the Client module to the Smartphones moduleMapping.addModuleToDevice("client", device.getName()); // fixing all instances of the Client module to the Smartphones } } }else{ // if the mode of deployment is cloud-based //moduleMapping.addModuleToDevice("connector", "cloud", numOfDepts*numOfMobilesPerDept); // fixing all instances of the Connector module to the Cloud moduleMapping.addModuleToDevice("connector", "cloud"); // fixing all instances of the Connector module to the Cloud // rest of the modules will be placed by the Edge-ward placement policy } Controller controller = new Controller("master-controller", fogDevices, sensors, actuators); controller.submitApplication(application, 0, (CLOUD)?(new ModulePlacementMapping(fogDevices, application, moduleMapping)) :(new ModulePlacementEdgewards(fogDevices, sensors, actuators, application, moduleMapping))); TimeKeeper.getInstance().setSimulationStartTime(Calendar.getInstance().getTimeInMillis()); CloudSim.startSimulation(); CloudSim.stopSimulation(); Log.printLine("VRGame finished!"); } catch (Exception e) { e.printStackTrace(); Log.printLine("Unwanted errors happen"); } } /** * Creates the fog devices in the physical topology of the simulation. * @param userId * @param appId */ private static void createFogDevices(int userId, String appId) { FogDevice cloud = createFogDevice("cloud", 44800, 40000, 100, 10000, 0, 0.01, 16*103, 16*83.25); // creates the fog device Cloud at the apex of the hierarchy with level=0 cloud.setParentId(-1); FogDevice proxy = createFogDevice("proxy-server", 2800, 4000, 10000, 10000, 1, 0.0, 107.339, 83.4333); // creates the fog device Proxy Server (level=1) proxy.setParentId(cloud.getId()); // setting Cloud as parent of the Proxy Server proxy.setUplinkLatency(100); // latency of connection from Proxy Server to the Cloud is 100 ms fogDevices.add(cloud); fogDevices.add(proxy); for(int i=0;i peList = new ArrayList(); // 3. Create PEs and add these into a list. peList.add(new Pe(0, new PeProvisionerOverbooking(mips))); // need to store Pe id and MIPS Rating int hostId = FogUtils.generateEntityId(); long storage = 1000000; // host storage int bw = 10000; PowerHost host = new PowerHost( hostId, new RamProvisionerSimple(ram), new BwProvisionerOverbooking(bw), storage, peList, new StreamOperatorScheduler(peList), new FogLinearPowerModel(busyPower, idlePower) ); List hostList = new ArrayList(); hostList.add(host); String arch = "x86"; // system architecture String os = "Linux"; // operating system String vmm = "Xen"; double time_zone = 10.0; // time zone this resource located double cost = 3.0; // the cost of using processing in this resource double costPerMem = 0.05; // the cost of using memory in this resource double costPerStorage = 0.001; // the cost of using storage in this // resource double costPerBw = 0.0; // the cost of using bw in this resource LinkedList storageList = new LinkedList(); // we are not adding SAN // devices by now FogDeviceCharacteristics characteristics = new FogDeviceCharacteristics( arch, os, vmm, host, time_zone, cost, costPerMem, costPerStorage, costPerBw); FogDevice fogdevice = null; try { fogdevice = new FogDevice(nodeName, characteristics, new AppModuleAllocationPolicy(hostList), storageList, 10, upBw, downBw, 0, ratePerMips); } catch (Exception e) { e.printStackTrace(); } fogdevice.setLevel(level); return fogdevice; } /** * Function to create the EEG Tractor Beam game application in the DDF model. * @param appId unique identifier of the application * @param userId identifier of the user of the application * @return */ @SuppressWarnings({"serial" }) private static Application createApplication(String appId, int userId){ Application application = Application.createApplication(appId, userId); // creates an empty application model (empty directed graph) /* * Adding modules (vertices) to the application model (directed graph) */ application.addAppModule("client", 10); // adding module Client to the application model application.addAppModule("concentration_calculator", 10); // adding module Concentration Calculator to the application model application.addAppModule("connector", 10); // adding module Connector to the application model /* * Connecting the application modules (vertices) in the application model (directed graph) with edges */ if(EEG_TRANSMISSION_TIME==10) application.addAppEdge("EEG", "client", 2000, 500, "EEG", Tuple.UP, AppEdge.SENSOR); // adding edge from EEG (sensor) to Client module carrying tuples of type EEG else application.addAppEdge("EEG", "client", 3000, 500, "EEG", Tuple.UP, AppEdge.SENSOR); application.addAppEdge("client", "concentration_calculator", 3500, 500, "_SENSOR", Tuple.UP, AppEdge.MODULE); // adding edge from Client to Concentration Calculator module carrying tuples of type _SENSOR application.addAppEdge("concentration_calculator", "connector", 100, 1000, 1000, "PLAYER_GAME_STATE", Tuple.UP, AppEdge.MODULE); // adding periodic edge (period=1000ms) from Concentration Calculator to Connector module carrying tuples of type PLAYER_GAME_STATE application.addAppEdge("concentration_calculator", "client", 14, 500, "CONCENTRATION", Tuple.DOWN, AppEdge.MODULE); // adding edge from Concentration Calculator to Client module carrying tuples of type CONCENTRATION application.addAppEdge("connector", "client", 100, 28, 1000, "GLOBAL_GAME_STATE", Tuple.DOWN, AppEdge.MODULE); // adding periodic edge (period=1000ms) from Connector to Client module carrying tuples of type GLOBAL_GAME_STATE application.addAppEdge("client", "DISPLAY", 1000, 500, "SELF_STATE_UPDATE", Tuple.DOWN, AppEdge.ACTUATOR); // adding edge from Client module to Display (actuator) carrying tuples of type SELF_STATE_UPDATE application.addAppEdge("client", "DISPLAY", 1000, 500, "GLOBAL_STATE_UPDATE", Tuple.DOWN, AppEdge.ACTUATOR); // adding edge from Client module to Display (actuator) carrying tuples of type GLOBAL_STATE_UPDATE /* * Defining the input-output relationships (represented by selectivity) of the application modules. */ application.addTupleMapping("client", "EEG", "_SENSOR", new FractionalSelectivity(0.9)); // 0.9 tuples of type _SENSOR are emitted by Client module per incoming tuple of type EEG application.addTupleMapping("client", "CONCENTRATION", "SELF_STATE_UPDATE", new FractionalSelectivity(1.0)); // 1.0 tuples of type SELF_STATE_UPDATE are emitted by Client module per incoming tuple of type CONCENTRATION application.addTupleMapping("concentration_calculator", "_SENSOR", "CONCENTRATION", new FractionalSelectivity(1.0)); // 1.0 tuples of type CONCENTRATION are emitted by Concentration Calculator module per incoming tuple of type _SENSOR application.addTupleMapping("client", "GLOBAL_GAME_STATE", "GLOBAL_STATE_UPDATE", new FractionalSelectivity(1.0)); // 1.0 tuples of type GLOBAL_STATE_UPDATE are emitted by Client module per incoming tuple of type GLOBAL_GAME_STATE /* * Defining application loops to monitor the latency of. * Here, we add only one loop for monitoring : EEG(sensor) -> Client -> Concentration Calculator -> Client -> DISPLAY (actuator) */ final AppLoop loop1 = new AppLoop(new ArrayList(){{add("EEG");add("client");add("concentration_calculator");add("client");add("DISPLAY");}}); List loops = new ArrayList(){{add(loop1);}}; application.setLoops(loops); return application; } }