org.sonar.plugins.csharp.fxcop.FxCopRuleRepositoryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-dotnet-fxcop-plugin Show documentation
Show all versions of sonar-dotnet-fxcop-plugin Show documentation
Plugin that runs FxCop analyses to check .NET assemblies against rule violations.
/*
* Sonar .NET Plugin :: FxCop
* Copyright (C) 2010 Jose Chillan, Alexandre Victoor and SonarSource
* [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.csharp.fxcop;
import org.sonar.api.ExtensionProvider;
import org.sonar.api.ServerExtension;
import org.sonar.api.platform.ServerFileSystem;
import org.sonar.api.rules.XMLRuleParser;
import java.util.ArrayList;
import java.util.List;
/**
* Creates FXCop rule repositories for every language supported by FxCop.
*/
public class FxCopRuleRepositoryProvider extends ExtensionProvider implements ServerExtension {
private ServerFileSystem fileSystem;
private XMLRuleParser xmlRuleParser;
public FxCopRuleRepositoryProvider(ServerFileSystem fileSystem) {
this.fileSystem = fileSystem;
this.xmlRuleParser = new XMLRuleParser();
}
@Override
public Object provide() {
List extensions = new ArrayList();
for (String languageKey : FxCopConstants.SUPPORTED_LANGUAGES) {
String repoKey = FxCopConstants.REPOSITORY_KEY;
if (!"cs".equals(languageKey)) {
// every repository key should be "fxcop-", except for C# for which it is simply "fxcop" (for backward compatibility)
repoKey += "-" + languageKey;
}
extensions.add(new FxCopRuleRepository(repoKey, languageKey, fileSystem, xmlRuleParser));
}
return extensions;
}
}