001////////////////////////////////////////////////////////////////////////////////
002// checkstyle: Checks Java source code for adherence to a set of rules.
003// Copyright (C) 2001-2018 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.indentation;
021
022import java.lang.reflect.Constructor;
023import java.util.HashMap;
024import java.util.Map;
025import java.util.Set;
026
027import com.puppycrawl.tools.checkstyle.api.DetailAST;
028import com.puppycrawl.tools.checkstyle.api.TokenTypes;
029import com.puppycrawl.tools.checkstyle.utils.CommonUtils;
030
031/**
032 * Factory for handlers. Looks up constructor via reflection.
033 *
034 * @author jrichard
035 */
036public class HandlerFactory {
037
038    /**
039     * Registered handlers.
040     */
041    private final Map<Integer, Constructor<?>> typeHandlers = new HashMap<>();
042
043    /** Cache for created method call handlers. */
044    private final Map<DetailAST, AbstractExpressionHandler> createdHandlers = new HashMap<>();
045
046    /** Creates a HandlerFactory. */
047    public HandlerFactory() {
048        register(TokenTypes.CASE_GROUP, CaseHandler.class);
049        register(TokenTypes.LITERAL_SWITCH, SwitchHandler.class);
050        register(TokenTypes.SLIST, SlistHandler.class);
051        register(TokenTypes.PACKAGE_DEF, PackageDefHandler.class);
052        register(TokenTypes.LITERAL_ELSE, ElseHandler.class);
053        register(TokenTypes.LITERAL_IF, IfHandler.class);
054        register(TokenTypes.LITERAL_TRY, TryHandler.class);
055        register(TokenTypes.LITERAL_CATCH, CatchHandler.class);
056        register(TokenTypes.LITERAL_FINALLY, FinallyHandler.class);
057        register(TokenTypes.LITERAL_DO, DoWhileHandler.class);
058        register(TokenTypes.LITERAL_WHILE, WhileHandler.class);
059        register(TokenTypes.LITERAL_FOR, ForHandler.class);
060        register(TokenTypes.METHOD_DEF, MethodDefHandler.class);
061        register(TokenTypes.CTOR_DEF, MethodDefHandler.class);
062        register(TokenTypes.CLASS_DEF, ClassDefHandler.class);
063        register(TokenTypes.ENUM_DEF, ClassDefHandler.class);
064        register(TokenTypes.OBJBLOCK, ObjectBlockHandler.class);
065        register(TokenTypes.INTERFACE_DEF, ClassDefHandler.class);
066        register(TokenTypes.IMPORT, ImportHandler.class);
067        register(TokenTypes.ARRAY_INIT, ArrayInitHandler.class);
068        register(TokenTypes.METHOD_CALL, MethodCallHandler.class);
069        register(TokenTypes.CTOR_CALL, MethodCallHandler.class);
070        register(TokenTypes.LABELED_STAT, LabelHandler.class);
071        register(TokenTypes.STATIC_INIT, StaticInitHandler.class);
072        register(TokenTypes.INSTANCE_INIT, SlistHandler.class);
073        register(TokenTypes.VARIABLE_DEF, MemberDefHandler.class);
074        register(TokenTypes.LITERAL_NEW, NewHandler.class);
075        register(TokenTypes.INDEX_OP, IndexHandler.class);
076        register(TokenTypes.LITERAL_SYNCHRONIZED, SynchronizedHandler.class);
077        register(TokenTypes.LAMBDA, LambdaHandler.class);
078        register(TokenTypes.ANNOTATION_DEF, ClassDefHandler.class);
079        register(TokenTypes.ANNOTATION_FIELD_DEF, MethodDefHandler.class);
080    }
081
082    /**
083     * Registers a handler.
084     *
085     * @param type
086     *                type from TokenTypes
087     * @param handlerClass
088     *                the handler to register
089     * @param <T> type of the handler class object.
090     */
091    private <T> void register(int type, Class<T> handlerClass) {
092        final Constructor<T> ctor = CommonUtils.getConstructor(handlerClass,
093                IndentationCheck.class,
094                // current AST
095                DetailAST.class,
096                // parent
097                AbstractExpressionHandler.class
098        );
099        typeHandlers.put(type, ctor);
100    }
101
102    /**
103     * Returns true if this type (form TokenTypes) is handled.
104     *
105     * @param type type from TokenTypes
106     * @return true if handler is registered, false otherwise
107     */
108    public boolean isHandledType(int type) {
109        final Set<Integer> typeSet = typeHandlers.keySet();
110        return typeSet.contains(type);
111    }
112
113    /**
114     * Gets list of registered handler types.
115     *
116     * @return int[] of TokenType types
117     */
118    public int[] getHandledTypes() {
119        final Set<Integer> typeSet = typeHandlers.keySet();
120        final int[] types = new int[typeSet.size()];
121        int index = 0;
122        for (final Integer val : typeSet) {
123            types[index] = val;
124            index++;
125        }
126
127        return types;
128    }
129
130    /**
131     * Get the handler for an AST.
132     *
133     * @param indentCheck   the indentation check
134     * @param ast           ast to handle
135     * @param parent        the handler parent of this AST
136     *
137     * @return the ExpressionHandler for ast
138     */
139    public AbstractExpressionHandler getHandler(IndentationCheck indentCheck,
140        DetailAST ast, AbstractExpressionHandler parent) {
141        final AbstractExpressionHandler resultHandler;
142        final AbstractExpressionHandler handler =
143            createdHandlers.get(ast);
144        if (handler != null) {
145            resultHandler = handler;
146        }
147        else if (ast.getType() == TokenTypes.METHOD_CALL) {
148            resultHandler = createMethodCallHandler(indentCheck, ast, parent);
149        }
150        else {
151            final Constructor<?> handlerCtor = typeHandlers.get(ast.getType());
152            resultHandler = (AbstractExpressionHandler) CommonUtils.invokeConstructor(
153                handlerCtor, indentCheck, ast, parent);
154        }
155        return resultHandler;
156    }
157
158    /**
159     * Create new instance of handler for METHOD_CALL.
160     *
161     * @param indentCheck   the indentation check
162     * @param ast           ast to handle
163     * @param parent        the handler parent of this AST
164     *
165     * @return new instance.
166     */
167    private AbstractExpressionHandler createMethodCallHandler(IndentationCheck indentCheck,
168        DetailAST ast, AbstractExpressionHandler parent) {
169        DetailAST astNode = ast.getFirstChild();
170        while (astNode.getType() == TokenTypes.DOT) {
171            astNode = astNode.getFirstChild();
172        }
173        AbstractExpressionHandler theParent = parent;
174        if (isHandledType(astNode.getType())) {
175            theParent = getHandler(indentCheck, astNode, theParent);
176            createdHandlers.put(astNode, theParent);
177        }
178        return new MethodCallHandler(indentCheck, ast, theParent);
179    }
180
181    /** Clears cache of created handlers. */
182    public void clearCreatedHandlers() {
183        createdHandlers.clear();
184    }
185
186}