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;
021
022import java.util.regex.Pattern;
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;
028
029/**
030 * <div>
031 * Checks for {@code TODO:} comments. Actually it is a generic
032 * <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/regex/Pattern.html">
033 * pattern</a> matcher on Java comments. To check for other patterns
034 * in Java comments, set the {@code format} property.
035 * </div>
036 *
037 * <p>
038 * Notes:
039 * Using {@code TODO:} comments is a great way to keep track of tasks that need to be done.
040 * Having them reported by Checkstyle makes it very hard to forget about them.
041 * </p>
042 *
043 * @since 3.0
044 */
045@StatelessCheck
046public class TodoCommentCheck
047        extends AbstractCheck {
048
049    /**
050     * A key is pointing to the warning message text in "messages.properties"
051     * file.
052     */
053    public static final String MSG_KEY = "todo.match";
054
055    /**
056     * Specify pattern to match comments against.
057     */
058    private Pattern format = Pattern.compile("TODO:");
059
060    @Override
061    public boolean isCommentNodesRequired() {
062        return true;
063    }
064
065    /**
066     * Setter to specify pattern to match comments against.
067     *
068     * @param pattern
069     *        pattern of 'todo' comment.
070     * @since 3.0
071     */
072    public void setFormat(Pattern pattern) {
073        format = pattern;
074    }
075
076    @Override
077    public int[] getDefaultTokens() {
078        return getRequiredTokens();
079    }
080
081    @Override
082    public int[] getAcceptableTokens() {
083        return getRequiredTokens();
084    }
085
086    @Override
087    public int[] getRequiredTokens() {
088        return new int[] {TokenTypes.COMMENT_CONTENT };
089    }
090
091    @Override
092    public void visitToken(DetailAST ast) {
093        final String[] lines = ast.getText().split("\n");
094
095        for (String line : lines) {
096            if (format.matcher(line).find()) {
097                log(ast, MSG_KEY, format.pattern());
098            }
099        }
100    }
101
102}