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

soot.AbstractTrap Maven / Gradle / Ivy

package soot;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1997 - 1999 Raja Vallee-Rai
 * %%
 * 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 2.1 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 General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

/**
 * Partial implementation of trap (exception catcher), used within Body classes.
 */
@SuppressWarnings("serial")
public class AbstractTrap implements Trap, Serializable {
  /** The exception being caught. */
  protected transient SootClass exception;

  /** The first unit being trapped. */
  protected UnitBox beginUnitBox;

  /** The unit just before the last unit being trapped. */
  protected UnitBox endUnitBox;

  /** The unit to which execution flows after the caught exception is triggered. */
  protected UnitBox handlerUnitBox;

  /** The list of unitBoxes referred to in this Trap (begin, end and handler. */
  protected List unitBoxes;

  private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    in.defaultReadObject();
    exception = Scene.v().getSootClass((String) in.readObject());
  }

  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeObject(exception.getName());
  }

  /** Creates an AbstractTrap with the given exception, handler, begin and end units. */
  protected AbstractTrap(SootClass exception, UnitBox beginUnitBox, UnitBox endUnitBox, UnitBox handlerUnitBox) {
    this.exception = exception;
    this.beginUnitBox = beginUnitBox;
    this.endUnitBox = endUnitBox;
    this.handlerUnitBox = handlerUnitBox;
    this.unitBoxes = Collections.unmodifiableList(Arrays.asList(beginUnitBox, endUnitBox, handlerUnitBox));
  }

  public Unit getBeginUnit() {
    return beginUnitBox.getUnit();
  }

  public Unit getEndUnit() {
    return endUnitBox.getUnit();
  }

  public Unit getHandlerUnit() {
    return handlerUnitBox.getUnit();
  }

  public UnitBox getHandlerUnitBox() {
    return handlerUnitBox;
  }

  public UnitBox getBeginUnitBox() {
    return beginUnitBox;
  }

  public UnitBox getEndUnitBox() {
    return endUnitBox;
  }

  public List getUnitBoxes() {
    return unitBoxes;
  }

  public void clearUnitBoxes() {
    for (UnitBox box : getUnitBoxes()) {
      box.setUnit(null);
    }
  }

  public SootClass getException() {
    return exception;
  }

  public void setBeginUnit(Unit beginUnit) {
    beginUnitBox.setUnit(beginUnit);
  }

  public void setEndUnit(Unit endUnit) {
    endUnitBox.setUnit(endUnit);
  }

  public void setHandlerUnit(Unit handlerUnit) {
    handlerUnitBox.setUnit(handlerUnit);
  }

  public void setException(SootClass exception) {
    this.exception = exception;
  }

  public Object clone() {
    throw new RuntimeException();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy