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

com.xenoamess.p3c.pmd.lang.java.rule.set.ClassCastExceptionWithToArrayRule Maven / Gradle / Ivy

There is a newer version: 2.2.1.0x
Show newest version
/*
 * Copyright 1999-2017 Alibaba Group.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.xenoamess.p3c.pmd.lang.java.rule.set;

import com.xenoamess.p3c.pmd.lang.java.rule.AbstractAliRule;
import net.sourceforge.pmd.lang.ast.Node;
import net.sourceforge.pmd.lang.java.ast.ASTClassOrInterfaceDeclaration;
import net.sourceforge.pmd.lang.java.ast.ASTPrimaryExpression;
import net.sourceforge.pmd.lang.java.ast.ASTPrimaryPrefix;
import net.sourceforge.pmd.lang.java.ast.ASTPrimarySuffix;
import org.jaxen.JaxenException;

import java.util.List;

/**
 * [Mandatory] Do not use toArray method without arguments. Since the return type is Object[], ClassCastException will
 * be thrown when casting it to a different array type。
 *
 * @author shengfang.gsf
 * @date 2016/12/13
 */
public class ClassCastExceptionWithToArrayRule extends AbstractAliRule {

    private static final String XPATH
            = "//CastExpression[Type/ReferenceType/ClassOrInterfaceType[@Image !=\"Object\"]]/PrimaryExpression";

    @Override
    public Object visit(ASTClassOrInterfaceDeclaration node, Object data) {
        if (node.isInterface()) {
            return data;
        }
        try {
            List nodes = node.findChildNodesWithXPath(XPATH);
            for (Node item : nodes) {
                if (!(item instanceof ASTPrimaryExpression)) {
                    continue;
                }
                ASTPrimaryExpression primaryExpression = (ASTPrimaryExpression) item;
                List primaryPrefixes =
                        primaryExpression.findChildrenOfType(ASTPrimaryPrefix.class);
                List primarySuffixes =
                        primaryExpression.findChildrenOfType(ASTPrimarySuffix.class);
                if (primaryPrefixes == null || primarySuffixes == null || primaryPrefixes.isEmpty()
                        || primarySuffixes.isEmpty()) {
                    continue;
                }
                ASTPrimaryPrefix prefix = primaryPrefixes.get(0);
                ASTPrimarySuffix suffix = primarySuffixes.get(0);
                if (prefix.getNumChildren() == 0) {
                    continue;
                }
                Node prefixChildNode = prefix.getChild(0);
                String childName = prefixChildNode.getImage();
                if (childName == null) {
                    continue;
                }
                if (childName.endsWith(".toArray") && suffix.getArgumentCount() == 0
                        && primarySuffixes.size() == 1) {
                    addViolationWithMessage(data, item,
                            "java.set.ClassCastExceptionWithToArrayRule.violation.msg",
                            new Object[]{childName});
                }
            }

        } catch (JaxenException e) {
            e.printStackTrace();
        }
        return super.visit(node, data);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy