View Javadoc
1   ///////////////////////////////////////////////////////////////////////////////////////////////
2   // checkstyle: Checks Java source code and other text files for adherence to a set of rules.
3   // Copyright (C) 2001-2026 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.coding;
21  
22  import java.util.BitSet;
23  
24  import com.puppycrawl.tools.checkstyle.StatelessCheck;
25  import com.puppycrawl.tools.checkstyle.api.AbstractCheck;
26  import com.puppycrawl.tools.checkstyle.api.DetailAST;
27  import com.puppycrawl.tools.checkstyle.api.TokenTypes;
28  import com.puppycrawl.tools.checkstyle.utils.TokenUtil;
29  
30  /**
31   * <div>
32   * Detects double brace initialization.
33   * </div>
34   *
35   * <p>
36   * Rationale: Double brace initialization (set of
37   * <a href="https://docs.oracle.com/javase/specs/jls/se12/html/jls-8.html#jls-8.6">
38   * Instance Initializers</a> in class body) may look cool, but it is considered as anti-pattern
39   * and should be avoided.
40   * This is also can lead to a hard-to-detect memory leak, if the anonymous class instance is
41   * returned outside and other object(s) hold reference to it.
42   * Created anonymous class is not static, it holds an implicit reference to the outer class
43   * instance.
44   * See this
45   * <a href="https://blog.jooq.org/dont-be-clever-the-double-curly-braces-anti-pattern/">
46   * blog post</a> and
47   * <a href="https://www.baeldung.com/java-double-brace-initialization">
48   * article</a> for more details.
49   * Check ignores any comments and semicolons in class body.
50   * </p>
51   *
52   * @since 8.30
53   */
54  @StatelessCheck
55  public class AvoidDoubleBraceInitializationCheck extends AbstractCheck {
56  
57      /**
58       * A key is pointing to the warning message text in "messages.properties"
59       * file.
60       */
61      public static final String MSG_KEY = "avoid.double.brace.init";
62  
63      /**
64       * Set of token types that are ignored when checking class members.
65       */
66      private static final BitSet IGNORED_TYPES = TokenUtil.asBitSet(
67          TokenTypes.INSTANCE_INIT,
68          TokenTypes.SEMI,
69          TokenTypes.LCURLY,
70          TokenTypes.RCURLY
71      );
72  
73      @Override
74      public int[] getDefaultTokens() {
75          return getRequiredTokens();
76      }
77  
78      @Override
79      public int[] getAcceptableTokens() {
80          return getRequiredTokens();
81      }
82  
83      @Override
84      public int[] getRequiredTokens() {
85          return new int[] {TokenTypes.OBJBLOCK};
86      }
87  
88      @Override
89      public void visitToken(DetailAST ast) {
90          if (ast.getParent().getType() == TokenTypes.LITERAL_NEW
91              && hasOnlyInitialization(ast)) {
92              log(ast, MSG_KEY);
93          }
94      }
95  
96      /**
97       * Checks that block has at least one instance init block and no other class members.
98       *
99       * @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 }