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

edu.umd.cs.findbugs.ba.AbstractClassMember Maven / Gradle / Ivy

The newest version!
/*
 * Bytecode Analysis Framework
 * Copyright (C) 2005, University of Maryland
 *
 * 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 edu.umd.cs.findbugs.ba;

import edu.umd.cs.findbugs.util.ClassName;
import org.apache.bcel.Const;

import edu.umd.cs.findbugs.classfile.ClassDescriptor;
import edu.umd.cs.findbugs.classfile.DescriptorFactory;
import edu.umd.cs.findbugs.internalAnnotations.DottedClassName;

public abstract class AbstractClassMember implements ClassMember {
    private final @DottedClassName String className;

    private final String name;

    private final String signature;

    private final int accessFlags;

    private boolean resolved;

    private int cachedHashCode = 0;

    //    static int slashCountClass = 0;
    //    static int dottedCountClass = 0;
    //    static int slashCountSignature = 0;
    //    static int dottedCountSignature = 0;

    protected AbstractClassMember(@DottedClassName String className, String name, String signature, int accessFlags) {
        if (className.indexOf('.') >= 0) {
            // className = className.replace('.','/');
            //            dottedCountClass++;
        } else if (className.indexOf('/') >= 0) {
            assert false;
            //            slashCountClass++;
            className = ClassName.toDottedClassName(className);
        }

        if (signature.indexOf('.') >= 0) {
            assert false;
            signature = ClassName.toSlashedClassName(signature);
            //            dottedCountSignature++;
        }
        // else if (signature.indexOf('/') >= 0) {
        //     slashCountSignature++;
        // }
        this.className = className;
        this.name = name;
        this.signature = signature;
        this.accessFlags = accessFlags;
    }

    @Override
    @DottedClassName
    public String getClassName() {
        return className;
    }

    @Override
    public ClassDescriptor getClassDescriptor() {
        return DescriptorFactory.instance().getClassDescriptorForDottedClassName(className);
    }

    @Override
    public String getName() {
        return name;
    }

    @Override
    @DottedClassName
    public String getPackageName() {
        int lastDot = className.lastIndexOf('.');
        if (lastDot == -1) {
            return className;
        }
        return className.substring(0, lastDot);
    }

    @Override
    public String getSignature() {
        return signature;
    }

    public boolean isReferenceType() {
        return signature.startsWith("L") || signature.startsWith("[");
    }

    @Override
    public int getAccessFlags() {
        return accessFlags;
    }

    @Override
    public boolean isStatic() {
        return (accessFlags & Const.ACC_STATIC) != 0;
    }

    @Override
    public boolean isFinal() {
        return (accessFlags & Const.ACC_FINAL) != 0;
    }

    @Override
    public boolean isPublic() {
        return (accessFlags & Const.ACC_PUBLIC) != 0;
    }

    @Override
    public boolean isProtected() {
        return (accessFlags & Const.ACC_PROTECTED) != 0;
    }

    @Override
    public boolean isPrivate() {
        return (accessFlags & Const.ACC_PRIVATE) != 0;
    }

    // public int compareTo(ClassMember other) {
    // // This may be compared to any kind of PackageMember object.
    // // If the other object is a different kind of field,
    // // just compare class names.
    // if (this.getClass() != other.getClass())
    // return this.getClass().getName().compareTo(other.getClass().getName());
    //
    // int cmp;
    // cmp = className.compareTo(other.getClassName());
    // if (cmp != 0)
    // return cmp;
    // cmp = name.compareTo(other.getName());
    // if (cmp != 0)
    // return cmp;
    // return signature.compareTo(other.getSignature());
    // }

    // public int compareTo(FieldOrMethodName other) {
    //
    // int cmp = getClassDescriptor().compareTo(other.getClassDescriptor());
    // if (cmp != 0)
    // return cmp;
    // cmp = name.compareTo(other.getName());
    // if (cmp != 0)
    // return cmp;
    // cmp = signature.compareTo(other.getSignature());
    // if (cmp != 0)
    // return cmp;
    // return (this.isStatic() ? 1 : 0) - (other.isStatic() ? 1 : 0);
    // }
    // public int compareTo(Object other) {
    // return compareTo((FieldOrMethodName) other);
    // }
    @Override
    public boolean isResolved() {
        return resolved;
    }

    void markAsResolved() {
        resolved = true;
    }

    @Override
    public int hashCode() {
        if (cachedHashCode == 0) {
            cachedHashCode = className.hashCode() ^ name.hashCode() ^ signature.hashCode();
        }
        return cachedHashCode;
    }

    @Override
    public boolean equals(Object o) {
        if (o == null || this.getClass() != o.getClass()) {
            return false;
        }
        AbstractClassMember other = (AbstractClassMember) o;
        return className.equals(other.className) && name.equals(other.name) && signature.equals(other.signature);
    }

    @Override
    public String toString() {
        return className + "." + name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy