001////////////////////////////////////////////////////////////////////////////////
002// checkstyle: Checks Java source code for adherence to a set of rules.
003// Copyright (C) 2001-2019 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 * <p>
032 * Checks line wrapping with separators.
033 * The policy to verify is specified using the {@link WrapOption} class
034 * and defaults to {@link WrapOption#EOL}.
035 * </p>
036 * <p> By default the check will check the following separators:
037 *  {@link TokenTypes#DOT DOT},
038 *  {@link TokenTypes#COMMA COMMA},
039 * Other acceptable tokens are
040 *  {@link TokenTypes#SEMI SEMI},
041 *  {@link TokenTypes#ELLIPSIS ELLIPSIS},
042 *  {@link TokenTypes#AT AT},
043 *  {@link TokenTypes#LPAREN LPAREN},
044 *  {@link TokenTypes#RPAREN RPAREN},
045 *  {@link TokenTypes#ARRAY_DECLARATOR ARRAY_DECLARATOR},
046 *  {@link TokenTypes#RBRACK RBRACK},
047 * </p>
048 * <p>
049 * Code example for comma and dot at the new line:
050 * </p>
051 * <pre>
052 * s
053 *    .isEmpty();
054 * foo(i
055 *    ,s);
056 * </pre>
057 *  <p>
058 * An example of how to configure the check is:
059 * </p>
060 * <pre>
061 * &lt;module name="SeparatorWrap"/&gt;
062 * </pre>
063 * <p>
064 * Code example for comma and dot at the previous line:
065 * </p>
066 * <pre>
067 * s.
068 *    isEmpty();
069 * foo(i,
070 *    s);
071 * </pre>
072 * <p> An example of how to configure the check for comma at the
073 * new line is:
074 * </p>
075 * <pre>
076 * &lt;module name="SeparatorWrap"&gt;
077 *     &lt;property name="tokens" value="COMMA"/&gt;
078 *     &lt;property name="option" value="nl"/&gt;
079 * &lt;/module&gt;
080 * </pre>
081 *
082 */
083@StatelessCheck
084public class SeparatorWrapCheck
085    extends AbstractCheck {
086
087    /**
088     * A key is pointing to the warning message text in "messages.properties"
089     * file.
090     */
091    public static final String MSG_LINE_PREVIOUS = "line.previous";
092
093    /**
094     * A key is pointing to the warning message text in "messages.properties"
095     * file.
096     */
097    public static final String MSG_LINE_NEW = "line.new";
098
099    /** The policy to enforce. */
100    private WrapOption option = WrapOption.EOL;
101
102    /**
103     * Set the option to enforce.
104     * @param optionStr string to decode option from
105     * @throws IllegalArgumentException if unable to decode
106     */
107    public void setOption(String optionStr) {
108        option = WrapOption.valueOf(optionStr.trim().toUpperCase(Locale.ENGLISH));
109    }
110
111    @Override
112    public int[] getDefaultTokens() {
113        return new int[] {
114            TokenTypes.DOT,
115            TokenTypes.COMMA,
116        };
117    }
118
119    @Override
120    public int[] getAcceptableTokens() {
121        return new int[] {
122            TokenTypes.DOT,
123            TokenTypes.COMMA,
124            TokenTypes.SEMI,
125            TokenTypes.ELLIPSIS,
126            TokenTypes.AT,
127            TokenTypes.LPAREN,
128            TokenTypes.RPAREN,
129            TokenTypes.ARRAY_DECLARATOR,
130            TokenTypes.RBRACK,
131            TokenTypes.METHOD_REF,
132        };
133    }
134
135    @Override
136    public int[] getRequiredTokens() {
137        return CommonUtil.EMPTY_INT_ARRAY;
138    }
139
140    @Override
141    public void visitToken(DetailAST ast) {
142        final String text = ast.getText();
143        final int colNo = ast.getColumnNo();
144        final int lineNo = ast.getLineNo();
145        final String currentLine = getLines()[lineNo - 1];
146        final String substringAfterToken =
147                currentLine.substring(colNo + text.length()).trim();
148        final String substringBeforeToken =
149                currentLine.substring(0, colNo).trim();
150
151        if (option == WrapOption.EOL
152                && substringBeforeToken.isEmpty()) {
153            log(ast, MSG_LINE_PREVIOUS, text);
154        }
155        else if (option == WrapOption.NL
156                 && substringAfterToken.isEmpty()) {
157            log(ast, MSG_LINE_NEW, text);
158        }
159    }
160
161}