com.liferay.source.formatter.checkstyle.checks.UnusedParameterCheck Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library 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 2.1 of the License, or (at your option)
* any later version.
*
* This library 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.
*/
package com.liferay.source.formatter.checkstyle.checks;
import com.liferay.source.formatter.checkstyle.util.DetailASTUtil;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;
import java.util.List;
/**
* @author Hugo Huijser
*/
public class UnusedParameterCheck extends BaseCheck {
@Override
public int[] getDefaultTokens() {
return new int[] {
TokenTypes.CLASS_DEF, TokenTypes.ENUM_DEF, TokenTypes.INTERFACE_DEF
};
}
@Override
protected void doVisitToken(DetailAST detailAST) {
DetailAST parentAST = detailAST.getParent();
if (parentAST != null) {
return;
}
List constructorsAndMethodsASTList =
DetailASTUtil.getAllChildTokens(
detailAST, true, TokenTypes.CTOR_DEF, TokenTypes.METHOD_DEF);
for (DetailAST constructorOrMethodAST : constructorsAndMethodsASTList) {
_checkUnusedParameters(detailAST, constructorOrMethodAST);
}
}
private void _checkUnusedParameters(
DetailAST classAST, DetailAST detailAST) {
DetailAST modifiersAST = detailAST.findFirstToken(TokenTypes.MODIFIERS);
if (!modifiersAST.branchContains(TokenTypes.LITERAL_PRIVATE)) {
return;
}
DetailAST nameAST = detailAST.findFirstToken(TokenTypes.IDENT);
String name = nameAST.getText();
if (name.equals("readObject") || name.equals("writeObject")) {
return;
}
List parameterNames = DetailASTUtil.getParameterNames(
detailAST);
if (parameterNames.isEmpty()) {
return;
}
DetailAST statementsAST = detailAST.findFirstToken(TokenTypes.SLIST);
List allIdentsAST = DetailASTUtil.getAllChildTokens(
statementsAST, true, TokenTypes.IDENT);
parameterNameLoop:
for (String parameterName :
DetailASTUtil.getParameterNames(detailAST)) {
for (DetailAST identAST : allIdentsAST) {
if (parameterName.equals(identAST.getText())) {
continue parameterNameLoop;
}
}
if (!_isReferencedMethod(classAST, detailAST)) {
log(
detailAST.getLineNo(), _MSG_UNUSED_PARAMETER,
parameterName);
}
}
}
private boolean _isReferencedMethod(
DetailAST classAST, DetailAST detailAST) {
List methodReferenceASTList =
DetailASTUtil.getAllChildTokens(
classAST, true, TokenTypes.METHOD_REF);
if (methodReferenceASTList.isEmpty()) {
return false;
}
DetailAST nameAST = detailAST.findFirstToken(TokenTypes.IDENT);
String name = nameAST.getText();
for (DetailAST methodReferenceAST : methodReferenceASTList) {
for (DetailAST identAST :
DetailASTUtil.getAllChildTokens(
methodReferenceAST, true, TokenTypes.IDENT)) {
if (name.equals(identAST.getText())) {
return true;
}
}
}
return false;
}
private static final String _MSG_UNUSED_PARAMETER = "parameter.unused";
}