org.sonar.plugins.python.pylint.PylintConfiguration 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.
/*
* Sonar 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.pylint;
import org.apache.commons.configuration.Configuration;
import org.apache.commons.lang.StringUtils;
import org.sonar.api.BatchExtension;
import org.sonar.api.Properties;
import org.sonar.api.Property;
import org.sonar.api.resources.Project;
import java.io.File;
@Properties({
@Property(
key = PylintConfiguration.PYLINT_CONFIG_KEY,
defaultValue = "",
name = "pylint configuration",
description = "Path to the pylint configuration file to use in pylint analysis. Set to empty to use the default.",
global = false,
project = true),
@Property(
key = PylintConfiguration.PYLINT_KEY,
defaultValue = "",
name = "pylint executable",
description = "Path to the pylint executable to use in pylint analysis. Set to empty to use the default one.",
global = true,
project = false)
})
public class PylintConfiguration implements BatchExtension {
public static final String PYLINT_CONFIG_KEY = "sonar.python.pylint_config";
public static final String PYLINT_KEY = "sonar.python.pylint";
public static final String PYTHON_PATH_KEY = "sonar.python.path";
private final Configuration conf;
public PylintConfiguration(Configuration conf) {
this.conf = conf;
}
public String getPylintConfigPath(Project project) {
String configPath = conf.getString(PylintConfiguration.PYLINT_CONFIG_KEY);
if (StringUtils.isEmpty(configPath)) {
return null;
}
File configFile = new File(configPath);
if (!configFile.isAbsolute()) {
File projectRoot = project.getFileSystem().getBasedir();
configFile = new File(projectRoot.getPath(), configPath);
}
return configFile.getAbsolutePath();
}
public String getPylintPath() {
return conf.getString(PylintConfiguration.PYLINT_KEY, null);
}
}