org.sonar.plugins.javascript.external.AbstractExternalIssuesSensor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-javascript-plugin Show documentation
Show all versions of sonar-javascript-plugin Show documentation
Code Analyzer for JavaScript/TypeScript/CSS
/*
* SonarQube JavaScript Plugin
* Copyright (C) 2011-2024 SonarSource SA
* mailto:info 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.javascript.external;
import com.google.gson.Gson;
import java.io.File;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.batch.fs.FilePredicates;
import org.sonar.api.batch.fs.InputFile;
import org.sonar.api.batch.rule.Severity;
import org.sonar.api.batch.sensor.Sensor;
import org.sonar.api.batch.sensor.SensorContext;
import org.sonar.api.batch.sensor.SensorDescriptor;
import org.sonarsource.analyzer.commons.ExternalReportProvider;
abstract class AbstractExternalIssuesSensor implements Sensor {
private static final Logger LOG = LoggerFactory.getLogger(AbstractExternalIssuesSensor.class);
static final Gson gson = new Gson();
static final long DEFAULT_REMEDIATION_COST = 5L;
static final Severity DEFAULT_SEVERITY = Severity.MAJOR;
static final String FILE_EXCEPTION_MESSAGE =
"No issues information will be saved as the report file can't be read.";
@Override
public void describe(SensorDescriptor sensorDescriptor) {
sensorDescriptor
.onlyWhenConfiguration(conf -> conf.hasKey(reportsPropertyName()))
.name("Import of " + linterName() + " issues");
}
@Override
public void execute(SensorContext context) {
List reportFiles = ExternalReportProvider.getReportFiles(context, reportsPropertyName());
reportFiles.forEach(report -> importReport(report, context));
}
InputFile getInputFile(SensorContext context, String fileName) {
FilePredicates predicates = context.fileSystem().predicates();
InputFile inputFile = context.fileSystem().inputFile(predicates.hasPath(fileName));
if (inputFile == null) {
LOG.warn(
"No input file found for {}. No {} issues will be imported on this file.",
fileName,
linterName()
);
return null;
}
return inputFile;
}
abstract String linterName();
abstract String reportsPropertyName();
abstract void importReport(File report, SensorContext context);
}