org.codenarc.rule.convention.NoDefRule.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 2014 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.convention
import org.codehaus.groovy.ast.MethodNode
import org.codehaus.groovy.ast.Parameter
import org.codehaus.groovy.ast.Variable
import org.codehaus.groovy.ast.expr.ArgumentListExpression
import org.codehaus.groovy.ast.expr.DeclarationExpression
import org.codenarc.rule.AbstractAstVisitor
import org.codenarc.rule.AbstractAstVisitorRule
import java.util.regex.Pattern
/**
* Def keyword is overused and should be replaced with specific type.
*
* The excludeRegex
property optionally specifies regex
* to find text which could occur immediately after def.
*
* @author Dominik Przybysz
*/
class NoDefRule extends AbstractAstVisitorRule {
public static final String MESSAGE = 'def for declaration should not be used'
public static final String MESSAGE_DEF_RETURN = 'def for method return type should not be used'
public static final String MESSAGE_DEF_PARAMETER = 'def for method parameter type should not be used'
String name = 'NoDef'
int priority = 3
Pattern excludeFilter
Class astVisitorClass = NoDefAstVisitor
void setExcludeRegex(String excludeRegex) {
this.excludeFilter = excludeRegex ? ~/$excludeRegex/ : null
}
}
class NoDefAstVisitor extends AbstractAstVisitor {
private static final Pattern CONTAINS_WHITESPACE_PATTERN = ~/.*\s+.*/
@Override
void visitDeclarationExpression(DeclarationExpression expression) {
def leftExpression = expression.getLeftExpression()
if (leftExpression instanceof ArgumentListExpression) {
boolean hasNonExcluded = leftExpression.expressions.find { expr -> dynamicTypedAndNotExcludedVariable(expr) }
if (hasNonExcluded) {
addViolation(expression, NoDefRule.MESSAGE)
}
}
else {
if (dynamicTypedAndNotExcludedVariable(expression.variableExpression)) {
addViolation(leftExpression, NoDefRule.MESSAGE)
}
}
super.visitDeclarationExpression(expression)
}
@Override
protected void visitConstructorOrMethod(MethodNode node, boolean isConstructor) {
if (methodExcluded(node)) {
return
}
if (node.isDynamicReturnType()) {
addViolation(node, NoDefRule.MESSAGE_DEF_RETURN)
}
visitParameters(node.getParameters())
super.visitConstructorOrMethod(node, isConstructor)
}
private void visitParameters(Parameter[] parameters) {
if (parameters) {
parameters.each { Parameter param ->
if (dynamicTypedAndNotExcludedVariable(param)) {
addViolation(param, NoDefRule.MESSAGE_DEF_PARAMETER)
}
}
}
}
private Pattern getMatcherPattern() {
return rule.excludeFilter
}
private boolean methodExcluded(MethodNode node) {
return node.isDynamicReturnType() && methodExcluded(matcherPattern, node.name)
}
private static boolean methodExcluded(Pattern pattern, String text) {
matches(CONTAINS_WHITESPACE_PATTERN, text) || matches(pattern, "${text}()")
}
private boolean dynamicTypedAndNotExcludedVariable(Variable variableExpression) {
return variableExpression.isDynamicTyped() && variableNotExcluded(matcherPattern, variableExpression.name)
}
private static boolean variableNotExcluded(Pattern pattern, String text) {
!matches(pattern, text)
}
private static boolean matches(Pattern pattern, String text) {
pattern && pattern.matcher(text).matches()
}
}