View Javadoc
1   ///////////////////////////////////////////////////////////////////////////////////////////////
2   // checkstyle: Checks Java source code and other text files for adherence to a set of rules.
3   // Copyright (C) 2001-2025 the original author or authors.
4   //
5   // This library is free software; you can redistribute it and/or
6   // modify it under the terms of the GNU Lesser General Public
7   // License as published by the Free Software Foundation; either
8   // version 2.1 of the License, or (at your option) any later version.
9   //
10  // This library is distributed in the hope that it will be useful,
11  // but WITHOUT ANY WARRANTY; without even the implied warranty of
12  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  // Lesser General Public License for more details.
14  //
15  // You should have received a copy of the GNU Lesser General Public
16  // License along with this library; if not, write to the Free Software
17  // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  ///////////////////////////////////////////////////////////////////////////////////////////////
19  
20  package com.puppycrawl.tools.checkstyle.checks;
21  
22  import java.io.File;
23  import java.util.regex.Pattern;
24  
25  import com.puppycrawl.tools.checkstyle.FileStatefulCheck;
26  import com.puppycrawl.tools.checkstyle.api.AbstractCheck;
27  import com.puppycrawl.tools.checkstyle.api.DetailAST;
28  import com.puppycrawl.tools.checkstyle.api.TokenTypes;
29  import com.puppycrawl.tools.checkstyle.utils.TokenUtil;
30  
31  /**
32   * <div>
33   * Checks that the outer type name and the file name match.
34   * For example, the class {@code Foo} must be in a file named {@code Foo.java}.
35   * </div>
36   *
37   * @since 5.3
38   */
39  @FileStatefulCheck
40  public class OuterTypeFilenameCheck extends AbstractCheck {
41  
42      /**
43       * A key is pointing to the warning message text in "messages.properties"
44       * file.
45       */
46      public static final String MSG_KEY = "type.file.mismatch";
47  
48      /** Pattern matching any file extension with dot included. */
49      private static final Pattern FILE_EXTENSION_PATTERN = Pattern.compile("\\.[^.]*$");
50  
51      /** Indicates whether the first token has been seen in the file. */
52      private boolean seenFirstToken;
53  
54      /** Current file name. */
55      private String fileName;
56  
57      /** If file has public type. */
58      private boolean hasPublic;
59  
60      /** Outer type with mismatched file name. */
61      private DetailAST wrongType;
62  
63      @Override
64      public int[] getDefaultTokens() {
65          return getRequiredTokens();
66      }
67  
68      @Override
69      public int[] getAcceptableTokens() {
70          return getRequiredTokens();
71      }
72  
73      @Override
74      public int[] getRequiredTokens() {
75          return new int[] {
76              TokenTypes.CLASS_DEF,
77              TokenTypes.INTERFACE_DEF,
78              TokenTypes.ENUM_DEF,
79              TokenTypes.ANNOTATION_DEF,
80              TokenTypes.RECORD_DEF,
81          };
82      }
83  
84      @Override
85      public void beginTree(DetailAST rootAST) {
86          fileName = getSourceFileName();
87          seenFirstToken = false;
88          hasPublic = false;
89          wrongType = null;
90      }
91  
92      @Override
93      public void visitToken(DetailAST ast) {
94          if (seenFirstToken) {
95              final DetailAST modifiers = ast.findFirstToken(TokenTypes.MODIFIERS);
96              if (modifiers.findFirstToken(TokenTypes.LITERAL_PUBLIC) != null
97                      && TokenUtil.isRootNode(ast.getParent())) {
98                  hasPublic = true;
99              }
100         }
101         else {
102             final String outerTypeName = ast.findFirstToken(TokenTypes.IDENT).getText();
103 
104             if (!fileName.equals(outerTypeName)) {
105                 wrongType = ast;
106             }
107         }
108         seenFirstToken = true;
109     }
110 
111     @Override
112     public void finishTree(DetailAST rootAST) {
113         if (!hasPublic && wrongType != null) {
114             log(wrongType, MSG_KEY);
115         }
116     }
117 
118     /**
119      * Get source file name.
120      *
121      * @return source file name.
122      */
123     private String getSourceFileName() {
124         String name = getFilePath();
125         name = name.substring(name.lastIndexOf(File.separatorChar) + 1);
126         return FILE_EXTENSION_PATTERN.matcher(name).replaceAll("");
127     }
128 
129 }