org.codenarc.rule.unnecessary.UnnecessaryPackageReferenceRule.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CodeNarc Show documentation
Show all versions of CodeNarc Show documentation
The CodeNarc project provides a static analysis tool for Groovy code.
/*
* 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 static org.codenarc.util.AstUtil.AUTO_IMPORTED_CLASSES
import static org.codenarc.util.AstUtil.AUTO_IMPORTED_PACKAGES
import org.codehaus.groovy.ast.ClassNode
import org.codehaus.groovy.ast.FieldNode
import org.codehaus.groovy.ast.MethodNode
import org.codenarc.rule.AbstractAstVisitor
import org.codenarc.rule.AbstractAstVisitorRule
import org.codenarc.util.GroovyVersion
import org.codenarc.util.ImportUtil
import org.codehaus.groovy.ast.expr.*
/**
* Checks for explicit package reference for classes that Groovy imports by default, such as java.lang.String,
* java.util.Map and groovy.lang.Closure, as well as classes that were explicitly imported.
*
* @author Chris Mair
*/
class UnnecessaryPackageReferenceRule extends AbstractAstVisitorRule {
String name = 'UnnecessaryPackageReference'
int priority = 3
Class astVisitorClass = UnnecessaryPackageReferenceAstVisitor
}
class UnnecessaryPackageReferenceAstVisitor extends AbstractAstVisitor {
private static final IGNORE_SUPERCLASS_NAMES = ['java.lang.Object', 'java.lang.Enum', 'groovy.lang.Script']
private final List importedClassNames = []
private final List starImportPackageNames = []
// TODO Only ignore java.util.Object superclass if it was not explicitly specified
@Override
protected void visitClassEx(ClassNode node) {
initializeImportNames()
def superClassName = node.superClass.name
if (!IGNORE_SUPERCLASS_NAMES.contains(superClassName) && !(GroovyVersion.groovy1_8_OrGreater && node.isScript() && node.name == 'None')) {
checkType(superClassName, node)
}
node.interfaces.each { interfaceNode ->
checkType(interfaceNode.name, node)
}
super.visitClassEx(node)
}
@Override
void visitField(FieldNode node) {
checkTypeIfNotDynamicallyTyped(node)
super.visitField(node)
}
@Override
void visitConstructorCallExpression(ConstructorCallExpression node) {
if (isFirstVisit(node) && !node.superCall && !node.isThisCall()) {
checkType(node.type.name, node)
}
super.visitConstructorCallExpression(node)
}
@Override
void visitVariableExpression(VariableExpression expression) {
if (isNotAutoBoxed(expression)) {
checkTypeIfNotDynamicallyTyped(expression)
}
super.visitVariableExpression(expression)
}
@Override
void visitMethodEx(MethodNode node) {
if (!node.isDynamicReturnType()) { // ignore 'def' which resolves to java.lang.Object
checkType(node.returnType.name, node)
}
node.parameters.each { parameter ->
checkTypeIfNotDynamicallyTyped(parameter)
}
super.visitMethodEx(node)
}
@Override
void visitClosureExpression(ClosureExpression expression) {
expression.parameters.each { parameter ->
checkTypeIfNotDynamicallyTyped(parameter)
}
super.visitClosureExpression(expression)
}
@Override
void visitClassExpression(ClassExpression expression) {
checkType(expression.type.name, expression)
super.visitClassExpression(expression)
}
@Override
void visitPropertyExpression(PropertyExpression expression) {
checkType(expression.text, expression)
}
@Override
void visitCastExpression(CastExpression expression) {
if (isFirstVisit(expression)) {
checkType(expression.type.name, expression)
}
super.visitCastExpression(expression)
}
//--------------------------------------------------------------------------
// Helper Methods
//--------------------------------------------------------------------------
private initializeImportNames() {
sourceCode.ast.imports.each { importNode ->
importedClassNames << importNode.className
}
sourceCode.ast.starImports.each { importNode ->
starImportPackageNames << ImportUtil.packageNameForImport(importNode)
}
}
private void checkTypeIfNotDynamicallyTyped(node) {
if (!node.isDynamicTyped()) { // ignore 'def' which resolves to java.lang.Object
checkType(node.type.name, node)
}
}
private void checkType(String typeName, node) {
if (typeName in AUTO_IMPORTED_CLASSES || parentPackageName(typeName) in AUTO_IMPORTED_PACKAGES) {
addViolation(node, "Specifying the package name is not necessary for $typeName")
}
if (typeName in importedClassNames || parentPackageName(typeName) in starImportPackageNames) {
addViolation(node, "The $typeName class was explicitly imported, so specifying the package name is not necessary")
}
}
private String parentPackageName(String typeName) {
if (typeName.contains('.')) {
def lastPeriod = typeName.lastIndexOf('.')
return typeName[0..lastPeriod - 1]
}
null
}
private boolean isNotAutoBoxed(VariableExpression expression) {
return expression.type.name == expression.originType.name
}
}