/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.optaplanner.examples.cloudbalancing.app; import java.util.ArrayList; import java.util.List; import java.util.Random; import org.optaplanner.core.impl.solver.ProblemFactChange; import org.optaplanner.examples.cloudbalancing.domain.CloudBalance; import org.optaplanner.examples.cloudbalancing.domain.CloudComputer; import org.optaplanner.examples.cloudbalancing.domain.CloudProcess; import org.optaplanner.examples.cloudbalancing.optional.realtime.AddComputerProblemFactChange; import org.optaplanner.examples.cloudbalancing.optional.realtime.AddProcessProblemFactChange; import org.optaplanner.examples.cloudbalancing.optional.realtime.DeleteComputerProblemFactChange; import org.optaplanner.examples.cloudbalancing.optional.realtime.DeleteProcessProblemFactChange; import org.optaplanner.examples.cloudbalancing.persistence.CloudBalancingGenerator; import org.optaplanner.examples.common.app.RealTimePlanningTurtleTest; public class CloudBalancingRealTimePlanningTurtleTest extends RealTimePlanningTurtleTest<CloudBalance> { private CloudBalancingGenerator generator = new CloudBalancingGenerator(true); private List<CloudComputer> existingComputerList; private List<CloudProcess> existingProcessList; @Override protected String createSolverConfigResource() { return CloudBalancingApp.SOLVER_CONFIG; } @Override protected CloudBalance readPlanningProblem() { CloudBalance cloudBalance = generator.createCloudBalance(1200, 4800); existingComputerList = new ArrayList<>(cloudBalance.getComputerList()); existingProcessList = new ArrayList<>(cloudBalance.getProcessList()); return cloudBalance; } @Override protected ProblemFactChange<CloudBalance> nextProblemFactChange(Random random) { boolean capacityTooLow = existingComputerList.size() <= 20 || existingComputerList.size() < existingProcessList.size() / 4; boolean capacityTooHigh = existingComputerList.size() > existingProcessList.size() / 2; if (random.nextBoolean()) { if (capacityTooLow || (!capacityTooHigh && random.nextBoolean())) { CloudComputer computer = generator.generateComputerWithoutId(); existingComputerList.add(computer); return new AddComputerProblemFactChange( computer); } else { return new DeleteComputerProblemFactChange( existingComputerList.remove(random.nextInt(existingComputerList.size()))); } } else { if (capacityTooHigh || (!capacityTooLow && random.nextBoolean())) { CloudProcess process = generator.generateProcessWithoutId(); existingProcessList.add(process); return new AddProcessProblemFactChange( process); } else { return new DeleteProcessProblemFactChange( existingProcessList.remove(random.nextInt(existingProcessList.size()))); } } } }