org.sonar.java.ast.visitors.MethodHelper Maven / Gradle / Ivy
/*
* Sonar Java
* Copyright (C) 2012 SonarSource
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.java.ast.visitors;
import com.google.common.base.Preconditions;
import com.sonar.sslr.api.AstNode;
import com.sonar.sslr.squid.SquidAstVisitor;
import org.sonar.java.ast.api.JavaKeyword;
import org.sonar.java.ast.api.JavaTokenType;
import org.sonar.java.ast.parser.JavaGrammar;
import org.sonar.sslr.parser.LexerlessGrammar;
import java.util.Collections;
import java.util.List;
public class MethodHelper {
private final AstNode astNode;
public MethodHelper(AstNode astNode) {
this.astNode = astNode;
}
public static void subscribe(SquidAstVisitor visitor) {
visitor.subscribeTo(
JavaGrammar.METHOD_DECLARATOR_REST,
JavaGrammar.VOID_METHOD_DECLARATOR_REST,
JavaGrammar.CONSTRUCTOR_DECLARATOR_REST,
JavaGrammar.INTERFACE_METHOD_DECLARATOR_REST,
JavaGrammar.VOID_INTERFACE_METHOD_DECLARATORS_REST,
JavaGrammar.ANNOTATION_METHOD_REST);
}
public boolean isPublic() {
final AstNode node;
if (astNode.is(JavaGrammar.METHOD_DECLARATOR_REST, JavaGrammar.VOID_METHOD_DECLARATOR_REST, JavaGrammar.CONSTRUCTOR_DECLARATOR_REST)) {
node = astNode.getFirstAncestor(JavaGrammar.CLASS_BODY_DECLARATION);
} else if (astNode.is(JavaGrammar.INTERFACE_METHOD_DECLARATOR_REST, JavaGrammar.VOID_INTERFACE_METHOD_DECLARATORS_REST)) {
node = astNode.getFirstAncestor(JavaGrammar.INTERFACE_BODY_DECLARATION);
} else if (astNode.is(JavaGrammar.ANNOTATION_METHOD_REST)) {
node = astNode.getFirstAncestor(JavaGrammar.ANNOTATION_TYPE_ELEMENT_DECLARATION);
} else {
throw new IllegalStateException();
}
for (AstNode modifierNode : node.getChildren(JavaGrammar.MODIFIER)) {
if (modifierNode.getChild(0).is(JavaKeyword.PUBLIC)) {
return true;
}
}
return false;
}
public boolean isConstructor() {
return astNode.is(JavaGrammar.CONSTRUCTOR_DECLARATOR_REST);
}
public AstNode getReturnType() {
final AstNode typeNode = getName().getPreviousAstNode();
Preconditions.checkState(typeNode.is(JavaKeyword.VOID, JavaGrammar.TYPE));
return typeNode;
}
public AstNode getName() {
final AstNode methodNameNode;
if (astNode.is(JavaGrammar.INTERFACE_METHOD_DECLARATOR_REST, JavaGrammar.ANNOTATION_METHOD_REST)) {
methodNameNode = astNode.getPreviousAstNode();
} else {
methodNameNode = astNode.getPreviousSibling();
}
Preconditions.checkState(methodNameNode.is(JavaTokenType.IDENTIFIER));
return methodNameNode;
}
public List getParameters() {
AstNode node = astNode.getFirstChild(JavaGrammar.FORMAL_PARAMETERS);
if (node == null) {
// in case of annotationMethodRest
return Collections.emptyList();
}
// TODO try to avoid usage of "getDescendants" by refactoring grammar rule "formalParameterDecls"
return node.getDescendants(JavaGrammar.FORMAL_PARAMETER_DECLS);
}
public boolean hasParameters() {
return getParameters().size() > 0;
}
public List getStatements() {
AstNode node = astNode.getFirstChild(JavaGrammar.METHOD_BODY);
if (node == null) {
return Collections.emptyList();
}
return node.getFirstChild(JavaGrammar.BLOCK).getFirstChild(JavaGrammar.BLOCK_STATEMENTS).getChildren();
}
}