All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck Maven / Gradle / Ivy

Go to download

Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard

There is a newer version: 10.18.1
Show newest version
////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2019 the original author or authors.
//
// 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.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
////////////////////////////////////////////////////////////////////////////////

package com.puppycrawl.tools.checkstyle.checks.blocks;

import java.util.Locale;

import com.puppycrawl.tools.checkstyle.StatelessCheck;
import com.puppycrawl.tools.checkstyle.api.AbstractCheck;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;
import com.puppycrawl.tools.checkstyle.utils.CommonUtil;

/**
 * 

* Checks for empty blocks. This check does not validate sequential blocks. *

*

* Sequential blocks won't be checked. Also, no violations for fallthrough: *

*
 * switch (a) {
 *   case 1:                          // no violation
 *   case 2:                          // no violation
 *   case 3: someMethod(); { }        // no violation
 *   default: break;
 * }
 * 
*

* This check processes LITERAL_CASE and LITERAL_DEFAULT separately. * So, if tokens=LITERAL_DEFAULT, following code will not trigger any violation, * as the empty block belongs to LITERAL_CASE: *

*

* Configuration: *

*
 * <module name="EmptyBlock">
 *   <property name="tokens" value="LITERAL_DEFAULT"/>
 * </module>
 * 
*

* Result: *

*
 * switch (a) {
 *   default:        // no violation for "default:" as empty block belong to "case 1:"
 *   case 1: { }
 * }
 * 
* *

* To configure the check: *

*
 * <module name="EmptyBlock"/>
 * 
*

* To configure the check for the {@code text} policy and only {@code try} blocks: *

*
 * <module name="EmptyBlock">
 *   <property name="option" value="text"/>
 *   <property name="tokens" value="LITERAL_TRY"/>
 * </module>
 * 
* * @since 3.0 */ @StatelessCheck public class EmptyBlockCheck extends AbstractCheck { /** * A key is pointing to the warning message text in "messages.properties" * file. */ public static final String MSG_KEY_BLOCK_NO_STATEMENT = "block.noStatement"; /** * A key is pointing to the warning message text in "messages.properties" * file. */ public static final String MSG_KEY_BLOCK_EMPTY = "block.empty"; /** Specify the policy on block contents. */ private BlockOption option = BlockOption.STATEMENT; /** * Setter to specify the policy on block contents. * @param optionStr string to decode option from * @throws IllegalArgumentException if unable to decode */ public void setOption(String optionStr) { option = BlockOption.valueOf(optionStr.trim().toUpperCase(Locale.ENGLISH)); } @Override public int[] getDefaultTokens() { return new int[] { TokenTypes.LITERAL_WHILE, TokenTypes.LITERAL_TRY, TokenTypes.LITERAL_FINALLY, TokenTypes.LITERAL_DO, TokenTypes.LITERAL_IF, TokenTypes.LITERAL_ELSE, TokenTypes.LITERAL_FOR, TokenTypes.INSTANCE_INIT, TokenTypes.STATIC_INIT, TokenTypes.LITERAL_SWITCH, TokenTypes.LITERAL_SYNCHRONIZED, }; } @Override public int[] getAcceptableTokens() { return new int[] { TokenTypes.LITERAL_WHILE, TokenTypes.LITERAL_TRY, TokenTypes.LITERAL_CATCH, TokenTypes.LITERAL_FINALLY, TokenTypes.LITERAL_DO, TokenTypes.LITERAL_IF, TokenTypes.LITERAL_ELSE, TokenTypes.LITERAL_FOR, TokenTypes.INSTANCE_INIT, TokenTypes.STATIC_INIT, TokenTypes.LITERAL_SWITCH, TokenTypes.LITERAL_SYNCHRONIZED, TokenTypes.LITERAL_CASE, TokenTypes.LITERAL_DEFAULT, TokenTypes.ARRAY_INIT, }; } @Override public int[] getRequiredTokens() { return CommonUtil.EMPTY_INT_ARRAY; } @Override public void visitToken(DetailAST ast) { final DetailAST leftCurly = findLeftCurly(ast); if (leftCurly != null) { if (option == BlockOption.STATEMENT) { final boolean emptyBlock; if (leftCurly.getType() == TokenTypes.LCURLY) { emptyBlock = leftCurly.getNextSibling().getType() != TokenTypes.CASE_GROUP; } else { emptyBlock = leftCurly.getChildCount() <= 1; } if (emptyBlock) { log(leftCurly, MSG_KEY_BLOCK_NO_STATEMENT, ast.getText()); } } else if (!hasText(leftCurly)) { log(leftCurly, MSG_KEY_BLOCK_EMPTY, ast.getText()); } } } /** * Checks if SLIST token contains any text. * @param slistAST a {@code DetailAST} value * @return whether the SLIST token contains any text. */ private boolean hasText(final DetailAST slistAST) { final DetailAST rightCurly = slistAST.findFirstToken(TokenTypes.RCURLY); final DetailAST rcurlyAST; if (rightCurly == null) { rcurlyAST = slistAST.getParent().findFirstToken(TokenTypes.RCURLY); } else { rcurlyAST = rightCurly; } final int slistLineNo = slistAST.getLineNo(); final int slistColNo = slistAST.getColumnNo(); final int rcurlyLineNo = rcurlyAST.getLineNo(); final int rcurlyColNo = rcurlyAST.getColumnNo(); final String[] lines = getLines(); boolean returnValue = false; if (slistLineNo == rcurlyLineNo) { // Handle braces on the same line final String txt = lines[slistLineNo - 1] .substring(slistColNo + 1, rcurlyColNo); if (!CommonUtil.isBlank(txt)) { returnValue = true; } } else { final String firstLine = lines[slistLineNo - 1].substring(slistColNo + 1); final String lastLine = lines[rcurlyLineNo - 1].substring(0, rcurlyColNo); // check if all lines are also only whitespace returnValue = !(CommonUtil.isBlank(firstLine) && CommonUtil.isBlank(lastLine)) || !checkIsAllLinesAreWhitespace(lines, slistLineNo, rcurlyLineNo); } return returnValue; } /** * Checks is all lines in array contain whitespaces only. * * @param lines * array of lines * @param lineFrom * check from this line number * @param lineTo * check to this line numbers * @return true if lines contain only whitespaces */ private static boolean checkIsAllLinesAreWhitespace(String[] lines, int lineFrom, int lineTo) { boolean result = true; for (int i = lineFrom; i < lineTo - 1; i++) { if (!CommonUtil.isBlank(lines[i])) { result = false; break; } } return result; } /** * Calculates the left curly corresponding to the block to be checked. * * @param ast a {@code DetailAST} value * @return the left curly corresponding to the block to be checked */ private static DetailAST findLeftCurly(DetailAST ast) { final DetailAST leftCurly; final DetailAST slistAST = ast.findFirstToken(TokenTypes.SLIST); if ((ast.getType() == TokenTypes.LITERAL_CASE || ast.getType() == TokenTypes.LITERAL_DEFAULT) && ast.getNextSibling() != null && ast.getNextSibling().getFirstChild() != null && ast.getNextSibling().getFirstChild().getType() == TokenTypes.SLIST) { leftCurly = ast.getNextSibling().getFirstChild(); } else if (slistAST == null) { leftCurly = ast.findFirstToken(TokenTypes.LCURLY); } else { leftCurly = slistAST; } return leftCurly; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy