org.codenarc.rule.groovyism.ClosureAsLastMethodParameterRule.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 2011 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.groovyism
import org.codehaus.groovy.ast.expr.ClosureExpression
import org.codehaus.groovy.ast.expr.Expression
import org.codehaus.groovy.ast.expr.MethodCallExpression
import org.codenarc.rule.AbstractAstVisitorRule
import org.codenarc.rule.AbstractMethodCallExpressionVisitor
import org.codenarc.util.AstUtil
import org.codenarc.util.WildcardPattern
/**
* If a method is called and the last parameter is an inline closure it can be declared outside of the method call brackets.
*
* @author Marcin Erdmann
* @author Chris Mair
*/
class ClosureAsLastMethodParameterRule extends AbstractAstVisitorRule {
String name = 'ClosureAsLastMethodParameter'
int priority = 3
Class astVisitorClass = ClosureAsLastMethodParameterAstVisitor
String ignoreCallsToMethodNames = ''
}
class ClosureAsLastMethodParameterAstVisitor extends AbstractMethodCallExpressionVisitor {
@Override
void visitMethodCallExpression(MethodCallExpression call) {
def arguments = AstUtil.getMethodArguments(call)
if (arguments && isClosure(arguments.last())) {
def lastArgument = arguments.last()
boolean isViolation = lastArgument.lastLineNumber < call.arguments.lastLineNumber ||
(lastArgument.lastLineNumber == call.arguments.lastLineNumber && lastArgument.lastColumnNumber < call.arguments.lastColumnNumber)
if (isViolation && isNotIgnoredMethodName(call)) {
addViolation(call, "The last parameter to the '$call.methodAsString' method call is a closure and can appear outside the parenthesis")
}
}
}
private boolean isClosure(Expression expression) {
return expression.getClass() == ClosureExpression
}
private boolean isNotIgnoredMethodName(MethodCallExpression methodCallExpression) {
!(new WildcardPattern(rule.ignoreCallsToMethodNames, false).matches(methodCallExpression.method.text))
}
}