org.sonar.plugins.php.pmd.PhpmdExecutor Maven / Gradle / Ivy
/*
* Sonar PHP Plugin
* Copyright (C) 2010 Codehaus Sonar Plugins
* [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.php.pmd;
import static org.sonar.api.CoreProperties.PROJECT_EXCLUSIONS_PROPERTY;
import static org.sonar.plugins.php.api.Php.PHP;
import static org.sonar.plugins.php.pmd.PhpmdConfiguration.PHPMD_ARGUMENT_LINE_KEY;
import static org.sonar.plugins.php.pmd.PhpmdConfiguration.PHPMD_EXTENSIONS_OPTION;
import static org.sonar.plugins.php.pmd.PhpmdConfiguration.PHPMD_IGNORE_OPTION;
import static org.sonar.plugins.php.pmd.PhpmdConfiguration.PHPMD_REPORT_FILE_OPTION;
import static org.sonar.plugins.php.pmd.PhpmdConfiguration.PHPMD_REPORT_FORMAT;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.configuration.Configuration;
import org.apache.commons.lang.StringUtils;
import org.sonar.api.profiles.RulesProfile;
import org.sonar.plugins.php.core.AbstractPhpExecutor;
/**
* The Class PhpCheckstyleExecutor.
*/
public class PhpmdExecutor extends AbstractPhpExecutor {
private static final String PHPMD_PATH_SEPARATOR = ",";
/** The config. */
private PhpmdConfiguration configuration;
private PhpmdProfileExporter exporter;
private RulesProfile profile;
/**
* Instantiates a new php checkstyle executor.
*
* @param configuration
* the configuration
*/
public PhpmdExecutor(PhpmdConfiguration configuration, PhpmdProfileExporter exporter, RulesProfile profile) {
this.configuration = configuration;
PHP.setConfiguration(configuration.getProject().getConfiguration());
this.exporter = exporter;
this.profile = profile;
}
/**
* {@inheritDoc}
*/
@Override
protected List getCommandLine() {
List result = new ArrayList();
result.add(configuration.getOsDependentToolScriptName());
// SONARPLUGINS-546 PhpmdExecutor: wrong dirs params
result.add(StringUtils.join(configuration.getSourceDirectories(), PHPMD_PATH_SEPARATOR));
result.add(PHPMD_REPORT_FORMAT);
File ruleset = getRuleset(configuration, profile, exporter);
if (ruleset != null) {
result.add(ruleset.getAbsolutePath());
} else {
result.add(configuration.getRulesets());
}
result.add(PHPMD_REPORT_FILE_OPTION);
result.add(configuration.getReportFile().getAbsolutePath());
List ignoreArguments = getIgnoreArguments();
result.addAll(ignoreArguments);
result.add(PHPMD_EXTENSIONS_OPTION);
result.add(StringUtils.join(PHP.getFileSuffixes(), ","));
if (configuration.isStringPropertySet(PHPMD_ARGUMENT_LINE_KEY)) {
result.add(configuration.getArgumentLine());
}
return result;
}
/**
* @return the command line ignore option depending on sonar exclusions and phpmd specific exclusion.
*/
private List getIgnoreArguments() {
List ignoreArguments = new ArrayList();
boolean sonarExclusionsIsSet = configuration.isStringPropertySet(PROJECT_EXCLUSIONS_PROPERTY);
boolean ignoreKeyIsSet = configuration.isStringPropertySet(PHPMD_IGNORE_OPTION);
if (ignoreKeyIsSet || sonarExclusionsIsSet) {
String ignoreList = configuration.getIgnoreList();
String ignore = ignoreList != null ? ignoreList : "";
Configuration projectConfiguration = configuration.getProject().getConfiguration();
String[] sonarExclusions = projectConfiguration.getStringArray(PROJECT_EXCLUSIONS_PROPERTY);
if (sonarExclusionsIsSet && sonarExclusions != null) {
ignore += StringUtils.isBlank(ignore) ? "" : ",";
ignore += StringUtils.join(sonarExclusions, ",");
}
ignoreArguments.add(PHPMD_IGNORE_OPTION);
ignoreArguments.add(ignore);
}
return ignoreArguments;
}
/**
* {@inheritDoc}
*/
@Override
protected String getExecutedTool() {
return "PHPMD";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy