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

org.sonar.java.bytecode.asm.AsmClass Maven / Gradle / Ivy

There is a newer version: 3.11
Show newest version
/*
 * SonarQube Java
 * Copyright (C) 2012 SonarSource
 * [email protected]
 *
 * This program 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 3 of the License, or (at your option) any later version.
 *
 * This program 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 program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.java.bytecode.asm;

import com.google.common.collect.Maps;
import org.sonar.java.bytecode.asm.AsmClassProvider.DETAIL_LEVEL;

import java.util.Collection;
import java.util.Map;
import java.util.Set;

public class AsmClass extends AsmResource {

  private final String internalName;
  private DETAIL_LEVEL level;
  private AsmClass superClass;
  private final Map methods = Maps.newHashMap();
  private final Map fields = Maps.newHashMap();

  public AsmClass(String internalName, DETAIL_LEVEL level) {
    this.internalName = internalName;
    setDetailLevel(level);
  }

  public AsmClass(String internalName) {
    this.internalName = internalName;
  }

  final void setDetailLevel(DETAIL_LEVEL level) {
    this.level = level;
  }

  DETAIL_LEVEL getDetailLevel() {
    return level;
  }

  public String getInternalName() {
    return internalName;
  }

  public String getDisplayName() {
    return getInternalName().replace('/', '.');
  }

  void addMethod(AsmMethod asmMethod) {
    methods.put(asmMethod.getKey(), asmMethod);
  }

  public Collection getMethods() {
    return methods.values();
  }

  public Collection getFields() {
    return fields.values();
  }

  void addField(AsmField field) {
    fields.put(field.getName(), field);
  }

  public AsmField getField(String fieldName) {
    return fields.get(fieldName);
  }

  AsmField getFieldOrCreateIt(String fieldName) {
    AsmField field = getField(fieldName);
    if (field != null) {
      return field;
    }
    field = new AsmField(this, fieldName);
    addField(field);
    return field;
  }

  public AsmMethod getMethod(String key) {
    return methods.get(key);
  }

  AsmMethod getMethodOrCreateIt(String key) {
    AsmMethod method = getMethod(key);
    if (method != null) {
      return method;
    }
    method = new AsmMethod(this, key);
    method.setBodyLoaded(false);
    addMethod(method);
    return method;
  }

  void setSuperClass(AsmClass superClass) {
    this.superClass = superClass;
    addEdge(new AsmEdge(this, superClass, SourceCodeEdgeUsage.EXTENDS));
  }

  public AsmClass getSuperClass() {
    return superClass;
  }

  void addInterface(AsmClass implementedInterface) {
    addEdge(new AsmEdge(this, implementedInterface, SourceCodeEdgeUsage.IMPLEMENTS));
  }

  Set getInterfaces() {
    return getImplementedInterfaces();
  }

  @Override
  public boolean equals(Object object) {
    if (this == object) {
      return true;
    }
    if (object instanceof AsmClass) {
      return internalName.equals(((AsmClass) object).internalName);
    }
    return false;
  }

  @Override
  public int hashCode() {
    return internalName.hashCode();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy