All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.puppycrawl.tools.checkstyle.checks.coding.IllegalTypeCheck Maven / Gradle / Ivy

Go to download

Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard

There is a newer version: 10.18.1
Show newest version
////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2016 the original author or authors.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
////////////////////////////////////////////////////////////////////////////////

package com.puppycrawl.tools.checkstyle.checks.coding;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.regex.Pattern;

import com.google.common.collect.Sets;
import com.puppycrawl.tools.checkstyle.api.AbstractCheck;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.FullIdent;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;
import com.puppycrawl.tools.checkstyle.utils.CheckUtils;
import com.puppycrawl.tools.checkstyle.utils.CommonUtils;
import com.puppycrawl.tools.checkstyle.utils.TokenUtils;

/**
 * Checks that particular class are never used as types in variable
 * declarations, return values or parameters.
 *
 * 

Rationale: * Helps reduce coupling on concrete classes. * *

Check has following properties: * *

format - Pattern for illegal class names. * *

legalAbstractClassNames - Abstract classes that may be used as types. * *

illegalClassNames - Classes that should not be used as types in variable declarations, return values or parameters. * It is possible to set illegal class names via short or * * canonical name. * Specifying illegal type invokes analyzing imports and Check puts violations at * corresponding declarations * (of variables, methods or parameters). This helps to avoid ambiguous cases, e.g.: * *

{@code java.awt.List} was set as illegal class name, then, code like: * *

{@code * import java.util.List;
* ...
* List list; //No violation here * } * *

will be ok. * *

validateAbstractClassNames - controls whether to validate abstract class names. * Default value is false *

* *

ignoredMethodNames - Methods that should not be checked. * *

memberModifiers - To check only methods and fields with only specified modifiers. * *

In most cases it's justified to put following classes to illegalClassNames: *

    *
  • GregorianCalendar
  • *
  • Hashtable
  • *
  • ArrayList
  • *
  • LinkedList
  • *
  • Vector
  • *
* *

as methods that are differ from interface methods are rear used, so in most cases user will * benefit from checking for them. *

* * @author Simon Harris * @author Aleksey Nesterenko * @author Andrei Selkin */ public final class IllegalTypeCheck extends AbstractCheck { /** * A key is pointing to the warning message text in "messages.properties" * file. */ public static final String MSG_KEY = "illegal.type"; /** Abstract classes legal by default. */ private static final String[] DEFAULT_LEGAL_ABSTRACT_NAMES = {}; /** Types illegal by default. */ private static final String[] DEFAULT_ILLEGAL_TYPES = { "HashSet", "HashMap", "LinkedHashMap", "LinkedHashSet", "TreeSet", "TreeMap", "java.util.HashSet", "java.util.HashMap", "java.util.LinkedHashMap", "java.util.LinkedHashSet", "java.util.TreeSet", "java.util.TreeMap", }; /** Default ignored method names. */ private static final String[] DEFAULT_IGNORED_METHOD_NAMES = { "getInitialContext", "getEnvironment", }; /** Illegal classes. */ private final Set illegalClassNames = Sets.newHashSet(); /** Legal abstract classes. */ private final Set legalAbstractClassNames = Sets.newHashSet(); /** Methods which should be ignored. */ private final Set ignoredMethodNames = Sets.newHashSet(); /** Check methods and fields with only corresponding modifiers. */ private List memberModifiers; /** The format string of the regexp. */ private String format = "^(.*[\\.])?Abstract.*$"; /** The regexp to match against. */ private Pattern regexp = Pattern.compile(format); /** * Controls whether to validate abstract class names. */ private boolean validateAbstractClassNames; /** Creates new instance of the check. */ public IllegalTypeCheck() { setIllegalClassNames(DEFAULT_ILLEGAL_TYPES); setLegalAbstractClassNames(DEFAULT_LEGAL_ABSTRACT_NAMES); setIgnoredMethodNames(DEFAULT_IGNORED_METHOD_NAMES); } /** * Set the format to the specified regular expression. * @param format a {@code String} value * @throws org.apache.commons.beanutils.ConversionException unable to parse format */ public void setFormat(String format) { this.format = format; regexp = CommonUtils.createPattern(format); } /** * Sets whether to validate abstract class names. * @param validateAbstractClassNames whether abstract class names must be ignored. */ public void setValidateAbstractClassNames(boolean validateAbstractClassNames) { this.validateAbstractClassNames = validateAbstractClassNames; } @Override public int[] getDefaultTokens() { return getAcceptableTokens(); } @Override public int[] getAcceptableTokens() { return new int[] { TokenTypes.VARIABLE_DEF, TokenTypes.PARAMETER_DEF, TokenTypes.METHOD_DEF, TokenTypes.IMPORT, }; } @Override public int[] getRequiredTokens() { return new int[] {TokenTypes.IMPORT}; } @Override public void visitToken(DetailAST ast) { switch (ast.getType()) { case TokenTypes.METHOD_DEF: if (isVerifiable(ast)) { visitMethodDef(ast); } break; case TokenTypes.VARIABLE_DEF: if (isVerifiable(ast)) { visitVariableDef(ast); } break; case TokenTypes.PARAMETER_DEF: visitParameterDef(ast); break; case TokenTypes.IMPORT: visitImport(ast); break; default: throw new IllegalStateException(ast.toString()); } } /** * Checks if current method's return type or variable's type is verifiable * according to memberModifiers option. * @param methodOrVariableDef METHOD_DEF or VARIABLE_DEF ast node. * @return true if member is verifiable according to memberModifiers option. */ private boolean isVerifiable(DetailAST methodOrVariableDef) { boolean result = true; if (memberModifiers != null) { final DetailAST modifiersAst = methodOrVariableDef .findFirstToken(TokenTypes.MODIFIERS); result = isContainVerifiableType(modifiersAst); } return result; } /** * Checks is modifiers contain verifiable type. * * @param modifiers * parent node for all modifiers * @return true if method or variable can be verified */ private boolean isContainVerifiableType(DetailAST modifiers) { boolean result = false; if (modifiers.getFirstChild() != null) { for (DetailAST modifier = modifiers.getFirstChild(); modifier != null; modifier = modifier.getNextSibling()) { if (memberModifiers.contains(modifier.getType())) { result = true; } } } return result; } /** * Checks return type of a given method. * @param methodDef method for check. */ private void visitMethodDef(DetailAST methodDef) { if (isCheckedMethod(methodDef)) { checkClassName(methodDef); } } /** * Checks type of parameters. * @param parameterDef parameter list for check. */ private void visitParameterDef(DetailAST parameterDef) { final DetailAST grandParentAST = parameterDef.getParent().getParent(); if (grandParentAST.getType() == TokenTypes.METHOD_DEF && isCheckedMethod(grandParentAST)) { checkClassName(parameterDef); } } /** * Checks type of given variable. * @param variableDef variable to check. */ private void visitVariableDef(DetailAST variableDef) { checkClassName(variableDef); } /** * Checks imported type (as static and star imports are not supported by Check, * only type is in the consideration).
* If this type is illegal due to Check's options - puts violation on it. * @param importAst {@link TokenTypes#IMPORT Import} */ private void visitImport(DetailAST importAst) { if (!isStarImport(importAst)) { final String canonicalName = getImportedTypeCanonicalName(importAst); extendIllegalClassNamesWithShortName(canonicalName); } } /** * Checks if current import is star import. E.g.: *

* {@code * import java.util.*; * } *

* @param importAst {@link TokenTypes#IMPORT Import} * @return true if it is star import */ private static boolean isStarImport(DetailAST importAst) { boolean result = false; DetailAST toVisit = importAst; while (toVisit != null) { toVisit = getNextSubTreeNode(toVisit, importAst); if (toVisit != null && toVisit.getType() == TokenTypes.STAR) { result = true; break; } } return result; } /** * Checks type of given method, parameter or variable. * @param ast node to check. */ private void checkClassName(DetailAST ast) { final DetailAST type = ast.findFirstToken(TokenTypes.TYPE); final FullIdent ident = CheckUtils.createFullType(type); if (isMatchingClassName(ident.getText())) { log(ident.getLineNo(), ident.getColumnNo(), MSG_KEY, ident.getText()); } } /** * @param className class name to check. * @return true if given class name is one of illegal classes * or if it matches to abstract class names pattern. */ private boolean isMatchingClassName(String className) { final String shortName = className.substring(className.lastIndexOf('.') + 1); return illegalClassNames.contains(className) || illegalClassNames.contains(shortName) || validateAbstractClassNames && !legalAbstractClassNames.contains(className) && regexp.matcher(className).find(); } /** * Extends illegal class names set via imported short type name. * @param canonicalName * * Canonical name of imported type. */ private void extendIllegalClassNamesWithShortName(String canonicalName) { if (illegalClassNames.contains(canonicalName)) { final String shortName = canonicalName .substring(canonicalName.lastIndexOf('.') + 1); illegalClassNames.add(shortName); } } /** * Gets imported type's * * canonical name. * @param importAst {@link TokenTypes#IMPORT Import} * @return Imported canonical type's name. */ private static String getImportedTypeCanonicalName(DetailAST importAst) { final StringBuilder canonicalNameBuilder = new StringBuilder(); DetailAST toVisit = importAst; while (toVisit != null) { toVisit = getNextSubTreeNode(toVisit, importAst); if (toVisit != null && toVisit.getType() == TokenTypes.IDENT) { canonicalNameBuilder.append(toVisit.getText()); final DetailAST nextSubTreeNode = getNextSubTreeNode(toVisit, importAst); if (nextSubTreeNode.getType() != TokenTypes.SEMI) { canonicalNameBuilder.append('.'); } } } return canonicalNameBuilder.toString(); } /** * Gets the next node of a syntactical tree (child of a current node or * sibling of a current node, or sibling of a parent of a current node). * @param currentNodeAst Current node in considering * @param subTreeRootAst SubTree root * @return Current node after bypassing, if current node reached the root of a subtree * method returns null */ private static DetailAST getNextSubTreeNode(DetailAST currentNodeAst, DetailAST subTreeRootAst) { DetailAST currentNode = currentNodeAst; DetailAST toVisitAst = currentNode.getFirstChild(); while (toVisitAst == null) { toVisitAst = currentNode.getNextSibling(); if (toVisitAst == null) { if (currentNode.getParent().equals(subTreeRootAst)) { break; } currentNode = currentNode.getParent(); } } return toVisitAst; } /** * @param ast method def to check. * @return true if we should check this method. */ private boolean isCheckedMethod(DetailAST ast) { final String methodName = ast.findFirstToken(TokenTypes.IDENT).getText(); return !ignoredMethodNames.contains(methodName); } /** * Set the list of illegal variable types. * @param classNames array of illegal variable types */ public void setIllegalClassNames(String... classNames) { illegalClassNames.clear(); Collections.addAll(illegalClassNames, classNames); } /** * Set the list of ignore method names. * @param methodNames array of ignored method names */ public void setIgnoredMethodNames(String... methodNames) { ignoredMethodNames.clear(); Collections.addAll(ignoredMethodNames, methodNames); } /** * Set the list of legal abstract class names. * @param classNames array of legal abstract class names */ public void setLegalAbstractClassNames(String... classNames) { legalAbstractClassNames.clear(); Collections.addAll(legalAbstractClassNames, classNames); } /** * Set the list of member modifiers (of methods and fields) which should be checked. * @param modifiers String contains modifiers. */ public void setMemberModifiers(String modifiers) { final List modifiersList = new ArrayList<>(); for (String modifier : modifiers.split(",")) { modifiersList.add(TokenUtils.getTokenId(modifier.trim())); } memberModifiers = modifiersList; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy