Java tutorial
/* * Copyright (c) 2010-2012 Grid Dynamics Consulting Services, Inc, All Rights Reserved * http://www.griddynamics.com * * This library 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 2.1 of the License, or any later version. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.griddynamics.jagger.engine.e1.reporting; import com.google.common.collect.Lists; import com.griddynamics.jagger.engine.e1.sessioncomparation.Decision; import com.griddynamics.jagger.engine.e1.sessioncomparation.Verdict; import com.griddynamics.jagger.engine.e1.sessioncomparation.workload.WorkloadComparisonResult; import com.griddynamics.jagger.reporting.AbstractMappedReportProvider; import com.griddynamics.jagger.reporting.AbstractReportProviderBean; import com.griddynamics.jagger.reporting.MappedReportProvider; import net.sf.jasperreports.engine.JRDataSource; import net.sf.jasperreports.engine.data.JRBeanCollectionDataSource; import org.springframework.beans.factory.annotation.Required; import java.util.Collection; import java.util.List; public class WorkloadSessionComparisonReporter extends AbstractMappedReportProvider<Collection<Verdict<WorkloadComparisonResult>>> { private StatusImageProvider statusImageProvider; @Override public JRDataSource getDataSource(Collection<Verdict<WorkloadComparisonResult>> key) { getContext().getParameters().put("jagger.workloadsessioncomparator.statusImageProvider", statusImageProvider); List<WorkloadSessionComparisonDto> result = Lists.newLinkedList(); for (Verdict<WorkloadComparisonResult> verdict : key) { WorkloadSessionComparisonDto dto = new WorkloadSessionComparisonDto(); dto.setName(verdict.getDescription()); dto.setDecision(verdict.getDecision()); WorkloadComparisonResult details = verdict.getDetails(); dto.setAvgLatencyDeviation(details.getAvgLatencyDeviation()); dto.setStdDevLatencyDeviation(details.getStdDevLatencyDeviation()); dto.setThroughputDeviation(details.getThroughputDeviation()); dto.setTotalDurationDeviation(details.getTotalDurationDeviation()); dto.setSuccessRateDeviation(details.getSuccessRateDeviation()); result.add(dto); } return new JRBeanCollectionDataSource(result); } @Required public void setStatusImageProvider(StatusImageProvider statusImageProvider) { this.statusImageProvider = statusImageProvider; } public static class WorkloadSessionComparisonDto { private String name; private Decision decision; private double throughputDeviation; private double totalDurationDeviation; private double successRateDeviation; private double avgLatencyDeviation; private double stdDevLatencyDeviation; public String getName() { return name; } public void setName(String name) { this.name = name; } public Decision getDecision() { return decision; } public void setDecision(Decision decision) { this.decision = decision; } public double getThroughputDeviation() { return throughputDeviation; } public void setThroughputDeviation(double throughputDeviation) { this.throughputDeviation = throughputDeviation; } public double getTotalDurationDeviation() { return totalDurationDeviation; } public void setTotalDurationDeviation(double totalDurationDeviation) { this.totalDurationDeviation = totalDurationDeviation; } public double getSuccessRateDeviation() { return successRateDeviation; } public void setSuccessRateDeviation(double successRateDeviation) { this.successRateDeviation = successRateDeviation; } public double getAvgLatencyDeviation() { return avgLatencyDeviation; } public void setAvgLatencyDeviation(double avgLatencyDeviation) { this.avgLatencyDeviation = avgLatencyDeviation; } public double getStdDevLatencyDeviation() { return stdDevLatencyDeviation; } public void setStdDevLatencyDeviation(double stdDevLatencyDeviation) { this.stdDevLatencyDeviation = stdDevLatencyDeviation; } } }