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