
org.sonar.java.checks.EqualsOverridenWithHashCodeCheck 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.rule.RuleKey;
import org.sonar.check.BelongsToProfile;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.plugins.java.api.JavaFileScanner;
import org.sonar.plugins.java.api.JavaFileScannerContext;
import org.sonar.plugins.java.api.tree.BaseTreeVisitor;
import org.sonar.plugins.java.api.tree.ClassTree;
import org.sonar.plugins.java.api.tree.MethodTree;
import org.sonar.plugins.java.api.tree.Tree;
@Rule(
key = EqualsOverridenWithHashCodeCheck.KEY,
priority = Priority.BLOCKER)
@BelongsToProfile(title = "Sonar way", priority = Priority.BLOCKER)
public class EqualsOverridenWithHashCodeCheck extends BaseTreeVisitor implements JavaFileScanner {
public static final String KEY = "S1206";
private static final RuleKey RULE_KEY = RuleKey.of(CheckList.REPOSITORY_KEY, KEY);
private static final String HASHCODE = "hashCode";
private static final String EQUALS = "equals";
private JavaFileScannerContext context;
@Override
public void scanFile(JavaFileScannerContext context) {
this.context = context;
scan(context.getTree());
}
@Override
public void visitClass(ClassTree tree) {
super.visitClass(tree);
if (tree.is(Tree.Kind.CLASS) || tree.is(Tree.Kind.ENUM) || tree.is(Tree.Kind.INTERFACE)) {
MethodTree equalsMethod = null;
MethodTree hashCodeMethod = null;
for (Tree memberTree : tree.members()) {
if (memberTree.is(Tree.Kind.METHOD)) {
MethodTree methodTree = (MethodTree) memberTree;
if (isEquals(methodTree)) {
equalsMethod = methodTree;
} else if (isHashCode(methodTree)) {
hashCodeMethod = methodTree;
}
}
}
if (equalsMethod != null && hashCodeMethod == null) {
context.addIssue(equalsMethod, RULE_KEY, getMessage(classTreeType(tree), EQUALS, HASHCODE));
} else if (hashCodeMethod != null && equalsMethod == null) {
context.addIssue(hashCodeMethod, RULE_KEY, getMessage(classTreeType(tree), HASHCODE, EQUALS));
}
}
}
private static boolean isEquals(MethodTree methodTree) {
return EQUALS.equals(methodTree.simpleName()) && methodTree.parameters().size() == 1;
}
private static boolean isHashCode(MethodTree methodTree) {
return HASHCODE.equals(methodTree.simpleName()) && methodTree.parameters().isEmpty();
}
private static String classTreeType(ClassTree tree) {
String type;
if (tree.is(Tree.Kind.CLASS)) {
type = "class";
} else if (tree.is(Tree.Kind.ENUM)) {
type = "enum";
} else if (tree.is(Tree.Kind.INTERFACE)) {
type = "interface";
} else {
throw new IllegalStateException();
}
return type;
}
private static String getMessage(String type, String overridenMethod, String methodToOverride) {
return "This " + type + " overrides \"" + overridenMethod + "()\" and should therefore also override \"" + methodToOverride + "()\".";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy