![JAR search and dependency download from the Maven repository](/logo.png)
org.codenarc.rule.unnecessary.UnnecessaryNullCheckBeforeInstanceOfRule.groovy Maven / Gradle / Ivy
/*
* Copyright 2012 the original author or authors.
*
* 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 org.codenarc.rule.unnecessary
import org.codehaus.groovy.ast.expr.BinaryExpression
import org.codenarc.rule.AbstractAstVisitor
import org.codenarc.rule.AbstractAstVisitorRule
import org.codenarc.util.AstUtil
/**
* There is no need to check for null before an instanceof; the instanceof keyword returns false when given a null argument.
*
* @author Hamlet D'Arcy
* @author Chris Mair
*/
class UnnecessaryNullCheckBeforeInstanceOfRule extends AbstractAstVisitorRule {
String name = 'UnnecessaryNullCheckBeforeInstanceOf'
int priority = 3
Class astVisitorClass = UnnecessaryNullCheckBeforeInstanceOfAstVisitor
}
class UnnecessaryNullCheckBeforeInstanceOfAstVisitor extends AbstractAstVisitor {
@Override
void visitBinaryExpression(BinaryExpression exp) {
if (exp.operation.text == '&&') {
if (AstUtil.isNotNullCheck(exp.leftExpression) || AstUtil.isNotNullCheck(exp.rightExpression)) {
if (AstUtil.isInstanceOfCheck(exp.leftExpression) || AstUtil.isInstanceOfCheck(exp.rightExpression)) {
addViolationIfTargetsMatch(exp)
}
}
}
super.visitBinaryExpression(exp)
}
private void addViolationIfTargetsMatch(BinaryExpression exp) {
def nullTarget = AstUtil.getNullComparisonTarget(exp.leftExpression) ?: AstUtil.getNullComparisonTarget(exp.rightExpression)
def instanceofTarget = AstUtil.getInstanceOfTarget(exp.leftExpression) ?: AstUtil.getInstanceOfTarget(exp.rightExpression)
if (nullTarget && instanceofTarget && nullTarget == instanceofTarget) {
def suggestion = AstUtil.isInstanceOfCheck(exp.leftExpression) ? exp.leftExpression.text : exp.rightExpression.text
addViolation(exp, "The condition $exp.text can be safely simplified to $suggestion")
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy