org.sonar.plugins.groovy.foundation.Groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-groovy-plugin Show documentation
Show all versions of sonar-groovy-plugin Show documentation
Enables scanning of Groovy source files.
The newest version!
/*
* Sonar Groovy Plugin
* 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.groovy.foundation;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang.StringUtils;
import org.sonar.api.config.Settings;
import org.sonar.api.resources.AbstractLanguage;
import org.sonar.plugins.groovy.GroovyPlugin;
import java.util.List;
public class Groovy extends AbstractLanguage {
public static final String KEY = "grvy";
/**
* Settings of the plugin.
*/
private final Settings settings;
/**
* Default constructor
*/
public Groovy(Settings settings) {
super(KEY, "Groovy");
this.settings = settings;
}
/**
* {@inheritDoc}
*
* @see org.sonar.api.resources.AbstractLanguage#getFileSuffixes()
*/
@Override
public String[] getFileSuffixes() {
String[] suffixes = filterEmptyStrings(settings.getStringArray(GroovyPlugin.FILE_SUFFIXES_KEY));
if (suffixes.length == 0) {
suffixes = StringUtils.split(GroovyPlugin.DEFAULT_FILE_SUFFIXES, ",");
}
return addDot(suffixes);
}
private static String[] addDot(String[] suffixes) {
String[] results = new String[suffixes.length];
for (int i = 0; i < suffixes.length; i++) {
String suffix = suffixes[i];
String dot = suffix.startsWith(".") ? "" : ".";
results[i] = dot + suffix;
}
return results;
}
private static String[] filterEmptyStrings(String[] stringArray) {
List nonEmptyStrings = Lists.newArrayList();
for (String string : stringArray) {
if (StringUtils.isNotBlank(string.trim())) {
nonEmptyStrings.add(string.trim());
}
}
return nonEmptyStrings.toArray(new String[nonEmptyStrings.size()]);
}
public String getCodeNarcReportPath() {
return settings.getString(GroovyPlugin.CODENARC_REPORT_PATH);
}
public List getBinaryDirectories() {
String[] binaries = settings.getStringArray(GroovyPlugin.SONAR_GROOVY_BINARIES);
if (ArrayUtils.isEmpty(binaries)) {
binaries = settings.getStringArray(GroovyPlugin.SONAR_GROOVY_BINARIES_FALLBACK);
}
return ImmutableList.copyOf(binaries);
}
}