001/////////////////////////////////////////////////////////////////////////////////////////////// 002// checkstyle: Checks Java source code and other text files for adherence to a set of rules. 003// Copyright (C) 2001-2025 the original author or authors. 004// 005// This library is free software; you can redistribute it and/or 006// modify it under the terms of the GNU Lesser General Public 007// License as published by the Free Software Foundation; either 008// version 2.1 of the License, or (at your option) any later version. 009// 010// This library is distributed in the hope that it will be useful, 011// but WITHOUT ANY WARRANTY; without even the implied warranty of 012// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 013// Lesser General Public License for more details. 014// 015// You should have received a copy of the GNU Lesser General Public 016// License along with this library; if not, write to the Free Software 017// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 018/////////////////////////////////////////////////////////////////////////////////////////////// 019 020package com.puppycrawl.tools.checkstyle.checks.whitespace; 021 022import java.util.Locale; 023 024import com.puppycrawl.tools.checkstyle.StatelessCheck; 025import com.puppycrawl.tools.checkstyle.api.AbstractCheck; 026import com.puppycrawl.tools.checkstyle.api.DetailAST; 027import com.puppycrawl.tools.checkstyle.api.TokenTypes; 028import com.puppycrawl.tools.checkstyle.utils.CommonUtil; 029 030/** 031 * <div> 032 * Checks the padding of an empty for iterator; that is whether a white 033 * space is required at an empty for iterator, or such white space is 034 * forbidden. No check occurs if there is a line wrap at the iterator, as in 035 * </div> 036 * <div class="wrapper"><pre class="prettyprint"><code class="language-java"> 037 * for (Iterator foo = very.long.line.iterator(); 038 * foo.hasNext(); 039 * ) 040 * </code></pre></div> 041 * 042 * @since 3.0 043 */ 044@StatelessCheck 045public class EmptyForIteratorPadCheck 046 extends AbstractCheck { 047 048 /** 049 * A key is pointing to the warning message text in "messages.properties" 050 * file. 051 */ 052 public static final String MSG_WS_FOLLOWED = "ws.followed"; 053 054 /** 055 * A key is pointing to the warning message text in "messages.properties" 056 * file. 057 */ 058 public static final String MSG_WS_NOT_FOLLOWED = "ws.notFollowed"; 059 060 /** Semicolon literal. */ 061 private static final String SEMICOLON = ";"; 062 063 /** Specify policy on how to pad an empty for iterator. */ 064 private PadOption option = PadOption.NOSPACE; 065 066 /** 067 * Setter to specify policy on how to pad an empty for iterator. 068 * 069 * @param optionStr string to decode option from 070 * @throws IllegalArgumentException if unable to decode 071 * @since 3.0 072 */ 073 public void setOption(String optionStr) { 074 option = PadOption.valueOf(optionStr.trim().toUpperCase(Locale.ENGLISH)); 075 } 076 077 @Override 078 public int[] getDefaultTokens() { 079 return getRequiredTokens(); 080 } 081 082 @Override 083 public int[] getAcceptableTokens() { 084 return getRequiredTokens(); 085 } 086 087 @Override 088 public int[] getRequiredTokens() { 089 return new int[] {TokenTypes.FOR_ITERATOR}; 090 } 091 092 @Override 093 public void visitToken(DetailAST ast) { 094 if (!ast.hasChildren()) { 095 // empty for iterator. test pad after semi. 096 final DetailAST semi = ast.getPreviousSibling(); 097 final int[] line = getLineCodePoints(semi.getLineNo() - 1); 098 final int after = semi.getColumnNo() + 1; 099 // don't check if at end of line 100 if (after < line.length) { 101 if (option == PadOption.NOSPACE 102 && CommonUtil.isCodePointWhitespace(line, after)) { 103 log(ast, MSG_WS_FOLLOWED, SEMICOLON); 104 } 105 else if (option == PadOption.SPACE 106 && !CommonUtil.isCodePointWhitespace(line, after)) { 107 log(ast, MSG_WS_NOT_FOLLOWED, SEMICOLON); 108 } 109 } 110 } 111 } 112 113}