org.sonar.java.checks.CollectionInappropriateCallsCheck Maven / Gradle / Ivy
The newest version!
/*
* 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 com.google.common.collect.ImmutableList;
import org.sonar.api.server.rule.RulesDefinition;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.java.checks.methods.AbstractMethodDetection;
import org.sonar.java.checks.methods.MethodInvocationMatcher;
import org.sonar.java.checks.methods.TypeCriteria;
import org.sonar.java.resolve.JavaType;
import org.sonar.java.resolve.JavaType.ParametrizedTypeJavaType;
import org.sonar.java.resolve.JavaType.TypeVariableJavaType;
import org.sonar.plugins.java.api.semantic.Type;
import org.sonar.plugins.java.api.tree.ExpressionTree;
import org.sonar.plugins.java.api.tree.MemberSelectExpressionTree;
import org.sonar.plugins.java.api.tree.MethodInvocationTree;
import org.sonar.plugins.java.api.tree.Tree.Kind;
import org.sonar.squidbridge.annotations.ActivatedByDefault;
import org.sonar.squidbridge.annotations.SqaleConstantRemediation;
import org.sonar.squidbridge.annotations.SqaleSubCharacteristic;
import javax.annotation.Nullable;
import java.text.MessageFormat;
import java.util.List;
@Rule(
key = "S2175",
name = "Inappropriate \"Collection\" calls should not be made",
tags = {"bug"},
priority = Priority.CRITICAL)
@ActivatedByDefault
@SqaleSubCharacteristic(RulesDefinition.SubCharacteristics.DATA_RELIABILITY)
@SqaleConstantRemediation("15min")
public class CollectionInappropriateCallsCheck extends AbstractMethodDetection {
@Override
protected List getMethodInvocationMatchers() {
return ImmutableList.of(
collectionMethodInvocation("remove"),
collectionMethodInvocation("contains")
);
}
private MethodInvocationMatcher collectionMethodInvocation(String methodName) {
return MethodInvocationMatcher.create()
.typeDefinition(TypeCriteria.subtypeOf("java.util.Collection"))
.name(methodName)
.addParameter("java.lang.Object");
}
@Override
protected void onMethodFound(MethodInvocationTree tree) {
Type argumentType = getType(tree.arguments().get(0));
Type collectionType = getMethodOwner(tree);
// can be null when using raw types
Type collectionParameterType = getTypeParameter(collectionType);
if (collectionParameterType != null && !collectionParameterType.isUnknown() && !isArgumentCompatible(argumentType, collectionParameterType)) {
addIssue(tree, MessageFormat.format("A \"{0}<{1}>\" cannot contain a \"{2}\"", collectionType, collectionParameterType, argumentType));
}
}
private Type getType(ExpressionTree tree) {
return tree.symbolType();
}
private Type getMethodOwner(MethodInvocationTree mit) {
if (mit.methodSelect().is(Kind.MEMBER_SELECT)) {
return getType(((MemberSelectExpressionTree) mit.methodSelect()).expression());
}
return mit.symbol().owner().type();
}
@Nullable
private Type getTypeParameter(Type collectionType) {
if (collectionType instanceof ParametrizedTypeJavaType) {
return getFirstTypeParameter((ParametrizedTypeJavaType) collectionType);
}
return null;
}
@Nullable
private Type getFirstTypeParameter(ParametrizedTypeJavaType parametrizedTypeType) {
for (TypeVariableJavaType variableType : parametrizedTypeType.typeParameters()) {
return parametrizedTypeType.substitution(variableType);
}
return null;
}
private boolean isArgumentCompatible(Type argumentType, Type collectionParameterType) {
return isSubtypeOf(argumentType.erasure(), collectionParameterType.erasure())
|| isSubtypeOf(collectionParameterType.erasure(), argumentType.erasure())
|| autoboxing(argumentType, collectionParameterType);
}
private boolean isSubtypeOf(Type type, Type superType) {
return type.isSubtypeOf(superType);
}
private boolean autoboxing(Type argumentType, Type collectionParameterType) {
return argumentType.isPrimitive()
&& ((JavaType) collectionParameterType).isPrimitiveWrapper()
&& isSubtypeOf(((JavaType)argumentType).primitiveWrapperType(), collectionParameterType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy