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

src.main.java.com.mebigfatguy.fbcontrib.utils.XClassUtils Maven / Gradle / Ivy

Go to download

An auxiliary findbugs.sourceforge.net plugin for java bug detectors that fall outside the narrow scope of detectors to be packaged with the product itself.

The newest version!
/*
 * fb-contrib - Auxiliary detectors for Java programs
 * Copyright (C) 2009-2019 Jean-Noel Rouvignac
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package com.mebigfatguy.fbcontrib.utils;

import javax.annotation.Nullable;

import edu.umd.cs.findbugs.ba.XClass;
import edu.umd.cs.findbugs.ba.XMethod;
import edu.umd.cs.findbugs.classfile.CheckedAnalysisException;
import edu.umd.cs.findbugs.classfile.ClassDescriptor;
import edu.umd.cs.findbugs.classfile.DescriptorFactory;
import edu.umd.cs.findbugs.classfile.Global;

/**
 * Utility class for XClass and XMethod classes.
 */
public final class XClassUtils {

    /**
     * private to enforce the helper nature of this static class
     */
    private XClassUtils() {
    }

    /**
     * Returns an XClass object for the given
     * ClassDescriptor object.
     *
     * @param classDesc the class descriptor for which to find the XClass object
     * @return the class
     * @throws AssertionError if the analysis of the class failed
     */
    public static XClass getXClass(final ClassDescriptor classDesc) throws AssertionError {
        try {
            return Global.getAnalysisCache().getClassAnalysis(XClass.class, classDesc);
        } catch (CheckedAnalysisException e) {
            AssertionError ae = new AssertionError("Can't find ClassInfo for " + classDesc);
            ae.initCause(e);
            throw (ae);
        }
    }

    /**
     * Returns an XClass object for the given slashed class name.
     *
     * @param slashedClassName the class name for which to find the XClass object
     * @return the class
     * @throws AssertionError if the analysis of the class failed
     */
    public static XClass getXClass(String slashedClassName) {
        return getXClass(DescriptorFactory.createClassDescriptor(slashedClassName));
    }

    /**
     * Looks for the method up the class hierarchy.
     *
     * @param xClass     the class where to look for the method
     * @param methodName the name of the method to look for
     * @param methodSig  the signature of the method to look for
     * @return the method
     */
    @Nullable
    public static XMethod getXMethod(final XClass xClass, final String methodName, final String methodSig) {
        if (xClass == null) {
            return null;
        }

        XMethod xMethod = xClass.findMethod(methodName, methodSig, false);
        if (xMethod == null) {
            ClassDescriptor descriptor = xClass.getSuperclassDescriptor();
            if (descriptor != null) {
                final XClass superClass = getXClass(descriptor);
                xMethod = getXMethod(superClass, methodName, methodSig);
            }
        }
        return xMethod;
    }

    /**
     * Looks for the method up the class hierarchy.
     *
     * @param slashedClassName the class slashed name where to look for the method
     * @param methodName       the name of the method to look for
     * @param methodSig        the signature of the method to look for
     * @return the method
     */
    @Nullable
    public static XMethod getXMethod(String slashedClassName, String methodName, String methodSig) {
        final XClass xClass = getXClass(slashedClassName);
        return getXMethod(xClass, methodName, methodSig);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy