/** * Copyright (C) 2010-2017 Gordon Fraser, Andrea Arcuri and EvoSuite * contributors * * This file is part of EvoSuite. * * EvoSuite is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3.0 of the License, or * (at your option) any later version. * * EvoSuite is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with EvoSuite. If not, see <http://www.gnu.org/licenses/>. */ /** * */ package org.evosuite; import java.io.Serializable; import org.evosuite.ga.Chromosome; import org.evosuite.ga.metaheuristics.GeneticAlgorithm; import org.evosuite.ga.metaheuristics.SearchListener; import org.evosuite.ga.stoppingconditions.StoppingCondition; import org.evosuite.rmi.ClientServices; import org.evosuite.rmi.service.ClientState; import org.evosuite.rmi.service.ClientStateInformation; import org.evosuite.testsuite.TestSuiteChromosome; /** * <p> * ProgressMonitor class. * </p> * * @author gordon */ public class ProgressMonitor implements SearchListener, Serializable { private static final long serialVersionUID = -8518559681906649686L; private StoppingCondition stoppingCondition = null; private long max = 1; private int currentCoverage = 0; protected int lastCoverage = 0; protected int lastProgress = 0; protected int iteration = 0; protected ClientState state = ClientState.INITIALIZATION; /** * <p> * updateStatus * </p> * * @param percent * a int. */ public void updateStatus(int percent) { ClientState state = ClientState.SEARCH; ClientStateInformation information = new ClientStateInformation(state); information.setCoverage(currentCoverage); information.setProgress(percent); information.setIteration(iteration); //LoggingUtils.getEvoLogger().info("Setting to: "+state.getNumPhase()+": "+information.getCoverage()+"/"+information.getProgress()); ClientServices.getInstance().getClientNode().changeState(state, information); lastProgress = percent; lastCoverage = currentCoverage; //out.writeInt(percent); //out.writeInt(currentPhase); //out.writeInt(phases); //out.writeInt(currentCoverage); //out.writeObject(currentTask); } /* (non-Javadoc) * @see org.evosuite.ga.SearchListener#searchStarted(org.evosuite.ga.GeneticAlgorithm) */ /** {@inheritDoc} */ @Override public void searchStarted(GeneticAlgorithm<?> algorithm) { for(StoppingCondition cond : algorithm.getStoppingConditions()) { if(cond.getLimit() == 0) // No ZeroStoppingCondition continue; stoppingCondition = cond; max = stoppingCondition.getLimit(); break; } } /* (non-Javadoc) * @see org.evosuite.ga.SearchListener#iteration(org.evosuite.ga.GeneticAlgorithm) */ /** {@inheritDoc} */ @Override public void iteration(GeneticAlgorithm<?> algorithm) { long current = stoppingCondition.getCurrentValue(); currentCoverage = (int) Math.floor(((TestSuiteChromosome) algorithm.getBestIndividual()).getCoverage() * 100); updateStatus((int) (100 * current / max)); iteration++; } /* (non-Javadoc) * @see org.evosuite.ga.SearchListener#searchFinished(org.evosuite.ga.GeneticAlgorithm) */ /** {@inheritDoc} */ @Override public void searchFinished(GeneticAlgorithm<?> algorithm) { currentCoverage = (int) Math.floor(((TestSuiteChromosome) algorithm.getBestIndividual()).getCoverage() * 100); if(currentCoverage > lastCoverage) { updateStatus((int) (100 * stoppingCondition.getCurrentValue() / max)); } // System.out.println(""); } /* (non-Javadoc) * @see org.evosuite.ga.SearchListener#fitnessEvaluation(org.evosuite.ga.Chromosome) */ /** {@inheritDoc} */ @Override public void fitnessEvaluation(Chromosome individual) { int current = (int) ((int)(100 * stoppingCondition.getCurrentValue())/max); currentCoverage = (int) Math.floor(((TestSuiteChromosome) individual).getCoverage() * 100); if(currentCoverage > lastCoverage || current > lastProgress) updateStatus(current); } /* (non-Javadoc) * @see org.evosuite.ga.SearchListener#modification(org.evosuite.ga.Chromosome) */ /** {@inheritDoc} */ @Override public void modification(Chromosome individual) { // TODO Auto-generated method stub } }