/* * SonarQube Java * Copyright (C) 2010-2016 SonarSource SA * mailto:contact AT sonarsource DOT com * * This program 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 of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.plugins.jacoco; import org.sonar.api.batch.fs.FileSystem; import org.sonar.api.batch.sensor.Sensor; import org.sonar.api.batch.sensor.SensorContext; import org.sonar.api.batch.sensor.SensorDescriptor; import org.sonar.api.batch.sensor.coverage.CoverageType; import org.sonar.api.component.ResourcePerspectives; import org.sonar.api.scan.filesystem.PathResolver; import org.sonar.java.JavaClasspath; import org.sonar.plugins.java.api.JavaResourceLocator; import java.io.File; public class JaCoCoOverallSensor implements Sensor { public static final String JACOCO_OVERALL = "jacoco-overall.exec"; private final JacocoConfiguration configuration; private final ResourcePerspectives perspectives; private final FileSystem fileSystem; private final PathResolver pathResolver; private final JavaResourceLocator javaResourceLocator; private final JavaClasspath javaClasspath; public JaCoCoOverallSensor(JacocoConfiguration configuration, ResourcePerspectives perspectives, FileSystem fileSystem, PathResolver pathResolver, JavaResourceLocator javaResourceLocator, JavaClasspath javaClasspath) { this.configuration = configuration; this.perspectives = perspectives; this.fileSystem = fileSystem; this.pathResolver = pathResolver; this.javaResourceLocator = javaResourceLocator; this.javaClasspath = javaClasspath; } @Override public void describe(SensorDescriptor descriptor) { descriptor.onlyOnLanguage("java").name("JaCoCoOverallSensor"); } @Override public void execute(SensorContext context) { File reportUTs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getReportPath()); File reportITs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getItReportPath()); if(shouldExecuteOnProject()) { File reportOverall = new File(fileSystem.workDir(), JACOCO_OVERALL); reportOverall.getParentFile().mkdirs(); JaCoCoReportMerger.mergeReports(reportOverall, reportUTs, reportITs); new OverallAnalyzer(reportOverall).analyse(context); } } public boolean shouldExecuteOnProject() { File reportUTs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getReportPath()); File reportITs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getItReportPath()); boolean foundOneReport = reportUTs.exists() || reportITs.exists(); boolean shouldExecute = configuration.shouldExecuteOnProject(foundOneReport); if (!foundOneReport && shouldExecute) { JaCoCoExtensions.LOG.info("JaCoCoOverallSensor: JaCoCo reports not found."); } return shouldExecute; } class OverallAnalyzer extends AbstractAnalyzer { private final File report; OverallAnalyzer(File report) { super(perspectives, javaResourceLocator, javaClasspath, false); this.report = report; } @Override protected CoverageType coverageType() { return CoverageType.OVERALL; } @Override protected File getReport() { return report; } } @Override public String toString() { return getClass().getSimpleName(); } }