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.CodePointUtil;
029import com.puppycrawl.tools.checkstyle.utils.CommonUtil;
030
031/**
032 * <div>
033 * Checks the padding of an empty for initializer; that is whether a white
034 * space is required at an empty for initializer, or such white space is
035 * forbidden. No check occurs if there is a line wrap at the initializer, as in
036 * </div>
037 * <div class="wrapper"><pre class="prettyprint"><code class="language-java">
038 * for (
039 *     ; i &lt; j; i++, j--)
040 *  </code></pre></div>
041 *
042 * @since 3.4
043 */
044@StatelessCheck
045public class EmptyForInitializerPadCheck
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_PRECEDED = "ws.preceded";
053
054    /**
055     * A key is pointing to the warning message text in "messages.properties"
056     * file.
057     */
058    public static final String MSG_NOT_PRECEDED = "ws.notPreceded";
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.4
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_INIT};
090    }
091
092    @Override
093    public void visitToken(DetailAST ast) {
094        if (!ast.hasChildren()) {
095            final int lineIdx = ast.getLineNo() - 1;
096            final int[] line = getLineCodePoints(lineIdx);
097            final int before = ast.getColumnNo() - 1;
098            // don't check if semi at beginning of line
099            if (ast.getColumnNo() > 0 && !CodePointUtil.hasWhitespaceBefore(before, line)) {
100                if (option == PadOption.NOSPACE
101                    && CommonUtil.isCodePointWhitespace(line, before)) {
102                    log(ast, MSG_PRECEDED, SEMICOLON);
103                }
104                else if (option == PadOption.SPACE
105                         && !CommonUtil.isCodePointWhitespace(line, before)) {
106                    log(ast, MSG_NOT_PRECEDED, SEMICOLON);
107                }
108            }
109        }
110    }
111
112}