com.hello2morrow.sonarplugin.processor.CycleGroupProcessor 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.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.profiles.RulesProfile;
import org.sonar.api.resources.JavaPackage;
import org.sonar.api.resources.Resource;
import org.sonar.api.rules.ActiveRule;
import org.sonar.api.rules.Violation;
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.XsdCycleGroup;
import com.hello2morrow.sonarplugin.xsd.XsdCycleGroups;
import com.hello2morrow.sonarplugin.xsd.XsdCyclePath;
public class CycleGroupProcessor implements IProcessor {
private SensorContext sensorContext;
private RulesProfile rulesProfile;
private static final Logger LOG = LoggerFactory.getLogger(CycleGroupProcessor.class);
private double cyclicity = 0;
private double biggestCycleGroupSize = 0;
private double cyclicPackages = 0;
public CycleGroupProcessor(final RulesProfile rulesProfile, final SensorContext sensorContext) {
this.rulesProfile = rulesProfile;
this.sensorContext = sensorContext;
}
public void process(ReportContext report, XsdAttributeRoot buildUnit) {
XsdCycleGroups cycleGroups = report.getCycleGroups();
for (XsdCycleGroup group : cycleGroups.getCycleGroup()) {
if ("Physical package".equals(group.getNamedElementGroup())
&& Utilities.getBuildUnitName(group).equals(Utilities.getBuildUnitName(buildUnit.getName()))) {
int groupSize = group.getCyclePath().size();
cyclicPackages += groupSize;
cyclicity += groupSize * groupSize;
if (groupSize > biggestCycleGroupSize) {
biggestCycleGroupSize = groupSize;
}
handlePackageCycleGroup(group);
}
}
}
public double getCyclicity() {
return cyclicity;
}
public double getBiggestCycleGroupSize() {
return biggestCycleGroupSize;
}
public double getCyclicPackages() {
return cyclicPackages;
}
@SuppressWarnings("unchecked")
private void handlePackageCycleGroup(XsdCycleGroup group) {
ActiveRule rule = rulesProfile.getActiveRule(SonargraphPluginBase.PLUGIN_KEY,
SonargraphPluginBase.CYCLE_GROUP_RULE_KEY);
if (rule == null) {
return;
}
List> packages = new ArrayList>();
for (XsdCyclePath pathElement : group.getCyclePath()) {
String fqName = pathElement.getParent();
Resource javaPackage = sensorContext.getResource(new JavaPackage(fqName));
if (javaPackage == null) {
LOG.error("Cannot obtain resource " + fqName);
} else {
packages.add(javaPackage);
}
}
for (Resource jPackage : packages) {
Violation v = Violation.create(rule, jPackage);
List> tempPackages = new ArrayList>(packages);
tempPackages.remove(jPackage);
StringBuffer buffer = new StringBuffer();
buffer.append("Package participates in a cycle group");
boolean first = true;
for (Resource tPackage : tempPackages) {
if (first) {
buffer.append(" with package(s): ").append(tPackage.getName());
first = false;
} else {
buffer.append(", ").append(tPackage.getName());
}
}
v.setMessage(buffer.toString());
v.setLineId(null);
sensorContext.saveViolation(v);
}
}
}