org.sonar.plugins.python.PythonReportSensor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-python-plugin Show documentation
Show all versions of sonar-python-plugin Show documentation
Enable analysis and reporting on python projects.
/*
* SonarQube Python Plugin
* Copyright (C) 2011 SonarSource and Waleri Enns
* [email protected]
*
* 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 02
*/
package org.sonar.plugins.python;
import com.google.common.collect.Lists;
import org.apache.tools.ant.DirectoryScanner;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.batch.Sensor;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.config.Settings;
import org.sonar.api.resources.Project;
import org.sonar.api.scan.filesystem.FileQuery;
import org.sonar.api.scan.filesystem.ModuleFileSystem;
import org.sonar.api.utils.SonarException;
import java.io.File;
import java.util.List;
public abstract class PythonReportSensor implements Sensor {
protected static final Logger LOG = LoggerFactory.getLogger(PythonReportSensor.class);
protected Settings conf = null;
protected ModuleFileSystem fileSystem;
public PythonReportSensor(Settings conf, ModuleFileSystem fileSystem) {
this.conf = conf;
this.fileSystem = fileSystem;
}
public boolean shouldExecuteOnProject(Project project) {
return !fileSystem.files(FileQuery.onSource().onLanguage(Python.KEY)).isEmpty();
}
public void analyse(Project project, SensorContext context) {
try {
List reports = getReports(conf, fileSystem.baseDir().getPath(), reportPathKey(), defaultReportPath());
for (File report : reports) {
LOG.info("Processing report '{}'", report);
processReport(project, context, report);
}
} catch (javax.xml.stream.XMLStreamException e) {
String msg = new StringBuilder()
.append("Cannot feed the data into sonar, details: '")
.append(e)
.append("'")
.toString();
throw new SonarException(msg, e);
}
}
@Override
public String toString() {
return getClass().getSimpleName();
}
protected List getReports(Settings conf,
String baseDirPath,
String reportPathPropertyKey,
String defaultReportPath) {
String reportPath = conf.getString(reportPathPropertyKey);
if(reportPath == null){
reportPath = defaultReportPath;
}
LOG.debug("Using pattern '{}' to find reports", reportPath);
DirectoryScanner scanner = new DirectoryScanner();
String[] includes = { reportPath };
scanner.setIncludes(includes);
scanner.setBasedir(new File(baseDirPath));
scanner.scan();
String[] relPaths = scanner.getIncludedFiles();
List reports = Lists.newArrayList();
for (String relPath : relPaths) {
reports.add(new File(baseDirPath, relPath));
}
return reports;
}
protected void processReport(Project project, SensorContext context, File report) throws javax.xml.stream.XMLStreamException {
}
protected void handleNoReportsCase(SensorContext context) {
}
protected String reportPathKey() {
return "";
}
protected String defaultReportPath() {
return "";
}
}