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.naming;
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.FullIdent;
028import com.puppycrawl.tools.checkstyle.api.TokenTypes;
029
030/**
031 * <div>
032 * Checks that package names conform to a specified pattern.
033 * </div>
034 *
035 * <p>
036 * The default value of {@code format} for module {@code PackageName} has been chosen to match
037 * the requirements in the
038 * <a href="https://docs.oracle.com/javase/specs/jls/se8/html/jls-6.html#jls-6.5.3">
039 * Java Language specification</a>
040 * and the Sun coding conventions. However, both underscores and uppercase letters are rather
041 * uncommon, so most configurations should probably assign value
042 * {@code ^[a-z]+(\.[a-z][a-z0-9]*)*$} to {@code format} for module {@code PackageName}.
043 * </p>
044 *
045 * @since 3.0
046 */
047@StatelessCheck
048public class PackageNameCheck
049    extends AbstractCheck {
050
051    /**
052     * A key is pointing to the warning message text in "messages.properties"
053     * file.
054     */
055    public static final String MSG_KEY = "name.invalidPattern";
056
057    /** Control the pattern to match valid identifiers. */
058    // Uppercase letters seem rather uncommon, but they're allowed in
059    // https://docs.oracle.com/javase/specs/
060    //  second_edition/html/packages.doc.html#40169
061    private Pattern format = Pattern.compile("^[a-z]+(\\.[a-zA-Z_]\\w*)*$");
062
063    /**
064     * Setter to control the pattern to match valid identifiers.
065     *
066     * @param pattern the new pattern
067     * @since 3.0
068     */
069    public void setFormat(Pattern pattern) {
070        format = pattern;
071    }
072
073    @Override
074    public int[] getDefaultTokens() {
075        return getRequiredTokens();
076    }
077
078    @Override
079    public int[] getAcceptableTokens() {
080        return getRequiredTokens();
081    }
082
083    @Override
084    public int[] getRequiredTokens() {
085        return new int[] {TokenTypes.PACKAGE_DEF};
086    }
087
088    @Override
089    public void visitToken(DetailAST ast) {
090        final DetailAST nameAST = ast.getLastChild().getPreviousSibling();
091        final FullIdent full = FullIdent.createFullIdent(nameAST);
092        if (!format.matcher(full.getText()).find()) {
093            log(full.getDetailAst(),
094                MSG_KEY,
095                full.getText(),
096                format.pattern());
097        }
098    }
099
100}