Files
openide/java/java-impl-inspections/src/com/siyeh/ig/bugs/SubtractionInCompareToInspection.java
T
2026-02-12 12:49:55 +00:00

160 lines
6.5 KiB
Java

// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.siyeh.ig.bugs;
import com.intellij.codeInspection.dataFlow.CommonDataflow;
import com.intellij.codeInspection.dataFlow.jvm.JvmPsiRangeSetUtil;
import com.intellij.codeInspection.dataFlow.rangeSet.LongRangeSet;
import com.intellij.codeInspection.options.OptPane;
import com.intellij.codeInspection.options.OptionController;
import com.intellij.openapi.util.InvalidDataException;
import com.intellij.openapi.util.WriteExternalException;
import com.intellij.psi.CommonClassNames;
import com.intellij.psi.JavaTokenType;
import com.intellij.psi.LambdaUtil;
import com.intellij.psi.PsiBinaryExpression;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiExpression;
import com.intellij.psi.PsiLambdaExpression;
import com.intellij.psi.PsiMember;
import com.intellij.psi.PsiMethod;
import com.intellij.psi.PsiMethodCallExpression;
import com.intellij.psi.PsiType;
import com.intellij.psi.PsiTypeCastExpression;
import com.intellij.psi.PsiTypes;
import com.intellij.psi.tree.IElementType;
import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.psi.util.PsiUtil;
import com.siyeh.InspectionGadgetsBundle;
import com.siyeh.ig.BaseInspection;
import com.siyeh.ig.BaseInspectionVisitor;
import com.siyeh.ig.psiutils.ExpressionUtils;
import com.siyeh.ig.psiutils.MethodMatcher;
import com.siyeh.ig.psiutils.MethodUtils;
import org.jdom.Element;
import org.jetbrains.annotations.NotNull;
/**
* @author Bas Leijdekkers
*/
public final class SubtractionInCompareToInspection extends BaseInspection {
private final MethodMatcher methodMatcher;
public SubtractionInCompareToInspection() {
methodMatcher = new MethodMatcher()
.add(CommonClassNames.JAVA_UTIL_COLLECTION, "size")
.add(CommonClassNames.JAVA_UTIL_MAP, "size")
.add(CommonClassNames.JAVA_LANG_STRING, "length")
.add(CommonClassNames.JAVA_LANG_ABSTRACT_STRING_BUILDER, "length")
.finishDefault();
}
@Override
public @NotNull OptPane getOptionsPane() {
return OptPane.pane(methodMatcher.getTable(""));
}
@Override
public @NotNull OptionController getOptionController() {
return methodMatcher.getOptionController();
}
@Override
public void readSettings(@NotNull Element node) throws InvalidDataException {
super.readSettings(node);
methodMatcher.readSettings(node);
}
@Override
public void writeSettings(@NotNull Element node) throws WriteExternalException {
super.writeSettings(node);
methodMatcher.writeSettings(node);
}
@Override
public @NotNull String buildErrorString(Object... infos) {
return InspectionGadgetsBundle.message("subtraction.in.compareto.problem.descriptor");
}
@Override
public @NotNull BaseInspectionVisitor buildVisitor() {
return new SubtractionInCompareToVisitor();
}
private class SubtractionInCompareToVisitor extends BaseInspectionVisitor {
@Override
public void visitBinaryExpression(@NotNull PsiBinaryExpression expression) {
super.visitBinaryExpression(expression);
final IElementType tokenType = expression.getOperationTokenType();
if (!tokenType.equals(JavaTokenType.MINUS) || isSafeSubtraction(expression)) {
return;
}
final PsiLambdaExpression lambdaExpression =
PsiTreeUtil.getParentOfType(expression, PsiLambdaExpression.class, true, PsiMember.class);
if (lambdaExpression != null) {
final PsiClass functionalInterface = LambdaUtil.resolveFunctionalInterfaceClass(lambdaExpression);
if (functionalInterface != null && CommonClassNames.JAVA_UTIL_COMPARATOR.equals(functionalInterface.getQualifiedName())) {
registerError(expression);
return;
}
}
final PsiMethod method = PsiTreeUtil.getParentOfType(expression, PsiMethod.class, true, PsiClass.class, PsiLambdaExpression.class);
if (!MethodUtils.isCompareTo(method) && !MethodUtils.isComparatorCompare(method)) {
return;
}
registerError(expression);
}
private boolean isSafeSubtraction(PsiBinaryExpression binaryExpression) {
final PsiType type = binaryExpression.getType();
if (type == null) return true;
if (PsiTypes.floatType().equals(type) || PsiTypes.doubleType().equals(type)) {
// Difference of floats and doubles never overflows.
// It may lose a precision, but it's not the case when we compare the result with zero
PsiElement parent = PsiUtil.skipParenthesizedExprUp(binaryExpression.getParent());
if(parent instanceof PsiTypeCastExpression) {
PsiType castType = ((PsiTypeCastExpression)parent).getType();
if(PsiTypes.intType().equals(castType) || PsiTypes.longType().equals(castType)) {
// Precision is lost if result is cast to int/long (e.g. (int)(1.0 - 0.5) == 0)
return false;
}
}
return true;
}
if (ExpressionUtils.isEvaluatedAtCompileTime(binaryExpression)) {
// If compile time expression overflows, we have separate NumericOverflowInspection for this
return true;
}
final PsiExpression lhs = binaryExpression.getLOperand();
final PsiExpression rhs = binaryExpression.getROperand();
if (rhs == null) return true;
final PsiType lhsType = lhs.getType();
final PsiType rhsType = rhs.getType();
if (lhsType == null || rhsType == null) {
return false;
}
if ((PsiTypes.byteType().equals(lhsType) || PsiTypes.shortType().equals(lhsType) || PsiTypes.charType().equals(lhsType)) &&
(PsiTypes.byteType().equals(rhsType) || PsiTypes.shortType().equals(rhsType) || PsiTypes.charType().equals(rhsType))) {
return true;
}
if (isSafeOperand(lhs) && isSafeOperand(rhs)) return true;
LongRangeSet leftRange = CommonDataflow.getExpressionRange(lhs);
LongRangeSet rightRange = CommonDataflow.getExpressionRange(rhs);
if (leftRange != null && !leftRange.isEmpty() && rightRange != null && !rightRange.isEmpty()) {
if (!leftRange.subtractionMayOverflow(rightRange, JvmPsiRangeSetUtil.getLongRangeType(type))) return true;
}
return false;
}
private boolean isSafeOperand(PsiExpression operand) {
operand = PsiUtil.skipParenthesizedExprDown(operand);
if (operand instanceof PsiMethodCallExpression methodCallExpression) {
return methodMatcher.matches(methodCallExpression);
}
return ExpressionUtils.getArrayFromLengthExpression(operand) != null;
}
}
}