001/////////////////////////////////////////////////////////////////////////////////////////////// 002// checkstyle: Checks Java source code and other text files for adherence to a set of rules. 003// Copyright (C) 2001-2026 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.coding; 021 022import java.util.BitSet; 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; 028import com.puppycrawl.tools.checkstyle.utils.TokenUtil; 029 030/** 031 * <div> 032 * Detects double brace initialization. 033 * </div> 034 * 035 * <p> 036 * Rationale: Double brace initialization (set of 037 * <a href="https://docs.oracle.com/javase/specs/jls/se12/html/jls-8.html#jls-8.6"> 038 * Instance Initializers</a> in class body) may look cool, but it is considered as anti-pattern 039 * and should be avoided. 040 * This is also can lead to a hard-to-detect memory leak, if the anonymous class instance is 041 * returned outside and other object(s) hold reference to it. 042 * Created anonymous class is not static, it holds an implicit reference to the outer class 043 * instance. 044 * See this 045 * <a href="https://blog.jooq.org/dont-be-clever-the-double-curly-braces-anti-pattern/"> 046 * blog post</a> and 047 * <a href="https://www.baeldung.com/java-double-brace-initialization"> 048 * article</a> for more details. 049 * Check ignores any comments and semicolons in class body. 050 * </p> 051 * 052 * @since 8.30 053 */ 054@StatelessCheck 055public class AvoidDoubleBraceInitializationCheck extends AbstractCheck { 056 057 /** 058 * A key is pointing to the warning message text in "messages.properties" 059 * file. 060 */ 061 public static final String MSG_KEY = "avoid.double.brace.init"; 062 063 /** 064 * Set of token types that are ignored when checking class members. 065 */ 066 private static final BitSet IGNORED_TYPES = TokenUtil.asBitSet( 067 TokenTypes.INSTANCE_INIT, 068 TokenTypes.SEMI, 069 TokenTypes.LCURLY, 070 TokenTypes.RCURLY 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.OBJBLOCK}; 086 } 087 088 @Override 089 public void visitToken(DetailAST ast) { 090 if (ast.getParent().getType() == TokenTypes.LITERAL_NEW 091 && hasOnlyInitialization(ast)) { 092 log(ast, MSG_KEY); 093 } 094 } 095 096 /** 097 * Checks that block has at least one instance init block and no other class members. 098 * 099 * @param objBlock token to check 100 * @return true if there is at least one instance init block and no other class members, 101 * false otherwise 102 */ 103 private static boolean hasOnlyInitialization(DetailAST objBlock) { 104 final boolean hasInitBlock = objBlock.findFirstToken(TokenTypes.INSTANCE_INIT) != null; 105 return hasInitBlock 106 && TokenUtil.findFirstTokenByPredicate(objBlock, 107 AvoidDoubleBraceInitializationCheck::hasMember).isEmpty(); 108 } 109 110 /** 111 * Checks whether a token represents a class member other than initialization-related tokens. 112 * 113 * @param token the token to check 114 * @return true if the token represents a class member 115 */ 116 private static boolean hasMember(DetailAST token) { 117 return !IGNORED_TYPES.get(token.getType()); 118 } 119}