001//////////////////////////////////////////////////////////////////////////////// 002// checkstyle: Checks Java source code for adherence to a set of rules. 003// Copyright (C) 2001-2018 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 * <p> 031 * A check for 'TODO:' comments. To check for other patterns in Java comments, set 032 * property format. 033 * </p> 034 * <p> 035 * An example of how to configure the check is: 036 * </p> 037 * 038 * <pre> 039 * <module name="TodoComment"/> 040 * </pre> 041 * <p> 042 * An example of how to configure the check for comments that contain 043 * {@code TODO} or {@code FIXME}is: 044 * </p> 045 * 046 * <pre> 047 * <module name="TodoComment"> 048 * <property name="format" value="(TODO)|(FIXME)"/> 049 * </module> 050 * </pre> 051 */ 052@StatelessCheck 053public class TodoCommentCheck 054 extends AbstractCheck { 055 056 /** 057 * A key is pointing to the warning message text in "messages.properties" 058 * file. 059 */ 060 public static final String MSG_KEY = "todo.match"; 061 062 /** 063 * Regular expression pattern compiled from format. 064 */ 065 private Pattern format = Pattern.compile("TODO:"); 066 067 @Override 068 public boolean isCommentNodesRequired() { 069 return true; 070 } 071 072 /** 073 * Setter for 'todo' comment pattern. 074 * @param pattern 075 * pattern of 'todo' comment. 076 */ 077 public void setFormat(Pattern pattern) { 078 format = pattern; 079 } 080 081 @Override 082 public int[] getDefaultTokens() { 083 return getRequiredTokens(); 084 } 085 086 @Override 087 public int[] getAcceptableTokens() { 088 return getRequiredTokens(); 089 } 090 091 @Override 092 public int[] getRequiredTokens() { 093 return new int[] {TokenTypes.COMMENT_CONTENT }; 094 } 095 096 @Override 097 public void visitToken(DetailAST ast) { 098 final String[] lines = ast.getText().split("\n"); 099 100 for (int i = 0; i < lines.length; i++) { 101 if (format.matcher(lines[i]).find()) { 102 log(ast.getLineNo() + i, MSG_KEY, format.pattern()); 103 } 104 } 105 } 106 107}