All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.hello2morrow.sonarplugin.processor.WarningProcessor Maven / Gradle / Ivy
/*
* Sonar Sonargraph Plugin
* Copyright (C) 2009, 2010, 2011 hello2morrow GmbH
* mailto: info AT hello2morrow DOT com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
*
*/
package com.hello2morrow.sonarplugin.processor;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.profiles.RulesProfile;
import org.sonar.api.rules.ActiveRule;
import com.hello2morrow.sonarplugin.foundation.DuplicateCodeBlock;
import com.hello2morrow.sonarplugin.foundation.SonargraphPluginBase;
import com.hello2morrow.sonarplugin.foundation.Utilities;
import com.hello2morrow.sonarplugin.xsd.ReportContext;
import com.hello2morrow.sonarplugin.xsd.XsdAttributeRoot;
import com.hello2morrow.sonarplugin.xsd.XsdPosition;
import com.hello2morrow.sonarplugin.xsd.XsdWarning;
import com.hello2morrow.sonarplugin.xsd.XsdWarnings;
import com.hello2morrow.sonarplugin.xsd.XsdWarningsByAttribute;
import com.hello2morrow.sonarplugin.xsd.XsdWarningsByAttributeGroup;
/**
* @author Ingmar
*
*/
public class WarningProcessor implements IProcessor {
private SensorContext sensorContext;
private RulesProfile rulesProfile;
private static final Logger LOG = LoggerFactory.getLogger(WarningProcessor.class);
public WarningProcessor(final RulesProfile rulesProfile, final SensorContext sensorContext) {
this.sensorContext = sensorContext;
this.rulesProfile = rulesProfile;
}
public void process(ReportContext report, XsdAttributeRoot buildUnit) {
LOG.debug("Analysing warnings of buildUnit: " + buildUnit.getName());
XsdWarnings warnings = report.getWarnings();
for (XsdWarningsByAttributeGroup warningGroup : warnings.getWarningsByAttributeGroup()) {
String key = SonargraphPluginBase.getRuleKey(warningGroup.getAttributeGroup());
if (key == null) {
continue;
}
ActiveRule rule = rulesProfile.getActiveRule(SonargraphPluginBase.PLUGIN_KEY, key);
if (rule == null) {
LOG.info("Sonargraph threshold rule not found");
continue;
}
if ("Duplicate code".equals(warningGroup.getAttributeGroup())) {
handleDuplicateCodeBlocks(warningGroup, rule, buildUnit);
continue;
}
for (XsdWarningsByAttribute warningByAttribute : warningGroup.getWarningsByAttribute()) {
String attrName = warningByAttribute.getAttributeName();
for (XsdWarning warning : warningByAttribute.getWarning()) {
String msg = attrName + "=" + Utilities.getAttribute(warning.getAttribute(), "Attribute value");
String bu = Utilities.getAttribute(warning.getAttribute(), "Build unit");
bu = Utilities.getBuildUnitName(bu);
if (bu.equals(Utilities.getBuildUnitName(buildUnit.getName()))) {
processPosition(rule, warning, msg);
}
}
}
}
}
private void processPosition(ActiveRule rule, XsdWarning warning, String msg) {
if (warning.getPosition().size() > 0) {
for (XsdPosition pos : warning.getPosition()) {
String relFileName = pos.getFile();
if (relFileName != null) {
String fqName = Utilities.relativeFileNameToFqName(relFileName);
Utilities.saveViolation(sensorContext, rule, null, fqName, Integer.valueOf(pos.getLine()), msg);
}
}
} else {
String elemType = Utilities.getAttribute(warning.getAttribute(), "Element type");
if ("Class file".equals(elemType) || "Source file".equals(elemType)) {
// Attach a violation at line 1
String fileName = Utilities.getAttribute(warning.getAttribute(), "Element");
String fqName = fileName.substring(0, fileName.lastIndexOf('.')).replace('/', '.');
Utilities.saveViolation(sensorContext, rule, null, fqName, 1, msg);
}
}
}
private void handleDuplicateCodeBlocks(XsdWarningsByAttributeGroup warningGroup, ActiveRule rule,
XsdAttributeRoot buildUnit) {
LOG.debug("Analysing duplicate code blocks");
Map> duplicateCodeBlocks = new HashMap>();
for (XsdWarningsByAttribute warnings : warningGroup.getWarningsByAttribute()) {
for (XsdWarning warning : warnings.getWarning()) {
DuplicateCodeBlock block = Utilities.createDuplicateCodeBlock(warning);
if (null == block) {
continue;
}
if ( !duplicateCodeBlocks.containsKey(block.getBlockId())) {
duplicateCodeBlocks.put(block.getBlockId(), new ArrayList());
}
duplicateCodeBlocks.get(block.getBlockId()).add(block);
}
}
for (Entry> entry : duplicateCodeBlocks.entrySet()) {
for (DuplicateCodeBlock block : entry.getValue()) {
String message = Utilities.generateDuplicateCodeBlockMessage(block, entry.getValue());
String fqName = Utilities.relativeFileNameToFqName(block.getElementName());
if (Utilities.getBuildUnitName(buildUnit.getName())
.equals(Utilities.getBuildUnitName(block.getBuildUnitName()))) {
Utilities.saveViolation(sensorContext, rule, null, fqName, block.getStartLine(), message);
}
}
}
}
}