org.sonar.java.checks.RepeatAnnotationCheck Maven / Gradle / Ivy
/*
* SonarQube Java
* Copyright (C) 2012 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.java.checks;
import org.sonar.api.server.rule.RulesDefinition;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.java.JavaVersionAwareVisitor;
import org.sonar.java.checks.helpers.JavaVersionHelper;
import org.sonar.java.tag.Tag;
import org.sonar.plugins.java.api.JavaFileScanner;
import org.sonar.plugins.java.api.JavaFileScannerContext;
import org.sonar.plugins.java.api.tree.AnnotationTree;
import org.sonar.plugins.java.api.tree.BaseTreeVisitor;
import org.sonar.plugins.java.api.tree.ExpressionTree;
import org.sonar.plugins.java.api.tree.IdentifierTree;
import org.sonar.plugins.java.api.tree.MemberSelectExpressionTree;
import org.sonar.plugins.java.api.tree.NewArrayTree;
import org.sonar.plugins.java.api.tree.Tree;
import org.sonar.squidbridge.annotations.ActivatedByDefault;
import org.sonar.squidbridge.annotations.SqaleConstantRemediation;
import org.sonar.squidbridge.annotations.SqaleSubCharacteristic;
import javax.annotation.Nullable;
import java.util.List;
@Rule(
key = "S1710",
name = "Annotation repetitions should not be wrapped",
priority = Priority.MAJOR,
tags = {Tag.JAVA_8})
@ActivatedByDefault
@SqaleSubCharacteristic(RulesDefinition.SubCharacteristics.READABILITY)
@SqaleConstantRemediation("2min")
public class RepeatAnnotationCheck extends BaseTreeVisitor implements JavaFileScanner, JavaVersionAwareVisitor {
private JavaFileScannerContext context;
@Override
public boolean isCompatibleWithJavaVersion(@Nullable Integer version) {
return JavaVersionHelper.java8Compatible(version);
}
@Override
public void scanFile(JavaFileScannerContext context) {
this.context = context;
scan(context.getTree());
}
@Override
public void visitAnnotation(AnnotationTree annotationTree) {
if (isArrayInitialized(annotationTree)) {
NewArrayTree arrayTree = (NewArrayTree) annotationTree.arguments().get(0);
if (isAllSameAnnotation(arrayTree.initializers()) && isAnnotationRepeatable(arrayTree.initializers().get(0))) {
context.addIssue(
annotationTree,
this,
"Remove the '" + getAnnotationName(annotationTree) + "' wrapper from this annotation group" + JavaVersionHelper.java8CompatibilityMessage(context.getJavaVersion()));
}
}
super.visitAnnotation(annotationTree);
}
private static boolean isAnnotationRepeatable(ExpressionTree expressionTree) {
return expressionTree.symbolType().symbol().metadata().isAnnotatedWith("java.lang.annotation.Repeatable");
}
private static boolean isAllSameAnnotation(List initializers) {
if (initializers.isEmpty()) {
return false;
}
String annotationName = getAnnotationName(initializers.get(0));
if(annotationName.isEmpty()){
return false;
}
for (int i = 1; i < initializers.size(); i++) {
if (!annotationName.equals(getAnnotationName(initializers.get(i)))) {
return false;
}
}
return true;
}
private static String getAnnotationName(ExpressionTree initializer) {
String result = "";
if (initializer.is(Tree.Kind.ANNOTATION)) {
Tree annotationType = ((AnnotationTree) initializer).annotationType();
if (annotationType.is(Tree.Kind.IDENTIFIER)) {
result = ((IdentifierTree) annotationType).name();
} else if (annotationType.is(Tree.Kind.MEMBER_SELECT)) {
result = fullName((MemberSelectExpressionTree) annotationType);
}
}
return result;
}
private static String fullName(MemberSelectExpressionTree tree) {
if (tree.expression().is(Tree.Kind.IDENTIFIER)) {
return ((IdentifierTree) tree.expression()).name() + "." + tree.identifier().name();
}
return fullName((MemberSelectExpressionTree) tree.expression()) + "." + tree.identifier().name();
}
private static boolean isArrayInitialized(AnnotationTree annotationTree) {
return annotationTree.arguments().size() == 1 && annotationTree.arguments().get(0).is(Tree.Kind.NEW_ARRAY);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy