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

eu.rssw.antlr.profiler.Module Maven / Gradle / Ivy

There is a newer version: 2.28.2
Show newest version
/*
 * OpenEdge plugin for SonarQube
 * Copyright (c) 2015-2024 Riverside Software
 * contact AT riverside DASH software DOT fr
 * 
 * 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 eu.rssw.antlr.profiler;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class Module implements Comparable {
  private final int id;
  private final int crc;
  private final String name;
  private final String debugListingFile;
  private final Set lineData = new HashSet<>();

  public Module(int id, String name, String file, int crc) {
    this.id = id;
    this.name = name;
    this.debugListingFile = file;
    this.crc = crc;
  }

  public Module(int id, Module module) {
    this.id = id;
    this.name = module.getName();
    this.debugListingFile = module.getFile();
    this.crc = module.getCrc();
    this.lineData.addAll(module.getLineData());
  }

  public int getId() {
    return id;
  }

  public int getCrc() {
    return crc;
  }

  public String getName() {
    return name;
  }

  public Set getLineData() {
    return lineData;
  }

  /**
   * Renvoie le nom complet de la classe (au format package.souspaquet.classe), ou le nom de procédure avec
   * sous-répertoire et extension
   */
  public String getModuleObject() {
    // Up to 12.0 : name contains either file name or (internal procedure + file name)
    // Starting from 12.1: third entry (optional), callee name when using super:xxx() or methods not overidden in child
    // class
    if (name.indexOf(' ') > -1) {
      String tmp = name.substring(name.indexOf(' ') + 1);
      if (tmp.indexOf(' ') > -1)
        return tmp.substring(0, tmp.indexOf(' '));
      else
        return tmp;
    } else {
      return name;
    }
  }

  /**
   * Renvoie le nom de la procédure interne (ou de la méthode) de ce module si elle est définie.
   * 
   * Renvoie une chaine vide si module principal de la procédure, ou instanciation de classe
   */
  public String getProcName() {
    if (name.indexOf(' ') > -1) {
      return name.substring(0, name.indexOf(' '));
    } else {
      return "";
    }
  }

  public String getFile() {
    return debugListingFile;
  }

  public float getCumulativeTime() {
    float result = 0;
    for (LineData data : lineData) {
      result += data.getActualTime();
    }
    return result;
  }

  public void addLineSummary(LineData data) {
    if (data.getLineNumber() == 0)
      return;
    lineData.add(data);
  }

  public void addLineToCover(int lineNumber) {
    if (lineNumber == 0)
      return;
    lineData.add(new LineData(lineNumber, 0, 0, 0));
  }

  public List getLinesToCover() {
    List rslt = new ArrayList<>();
    for (LineData line : lineData) {
      rslt.add(line.getLineNumber());
    }
    Collections.sort(rslt);

    return rslt;
  }

  public List getCoveredLines() {
    List rslt = new ArrayList<>();
    for (LineData line : lineData) {
      if (line.getExecCount() > 0)
        rslt.add(line.getLineNumber());
    }
    Collections.sort(rslt);

    return rslt;
  }

  @Override
  public String toString() {
    return "Module " + id + " - " + name + " - " + debugListingFile + " - " + crc;
  }

  @Override
  public int compareTo(Module o) {
    return Integer.valueOf(id).compareTo(o.getId());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy