Package bytecodeparser

Source Code of bytecodeparser.Context

/*
*  Copyright (C) 2011 Stephane Godbillon
*  This file is part of BytecodeParser. See the README file in the root
*  directory of this project.
*
*  BytecodeParser 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.

*  BytecodeParser 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 BytecodeParser.  If not, see <http://www.gnu.org/licenses/>.
*/
package bytecodeparser;

import java.util.Map;

import javassist.CtBehavior;
import javassist.NotFoundException;
import javassist.bytecode.ExceptionTable;
import bytecodeparser.analysis.LocalVariable;

/**
* A context for parsing bytecode.
* @author Stephane Godbillon
*
*/
public class Context {
  /**
   * The behavior which bytecode is being parsed.
   */
  public final CtBehavior behavior;
  /**
   * The bytecode iterator used for parsing.
   */
  public final MultiMarkerCodeIterator iterator;
  /**
   * The local variables of the behavior.
   */
  public final Map<Integer, LocalVariable> localVariables;
  /**
   * The exception handlers, from the ExceptionTable attribute.
   */
  public final int[] exceptionHandlers;
 
  public Context(CtBehavior behavior, MultiMarkerCodeIterator iterator, Map<Integer, LocalVariable> localVariables) {
    this.behavior = behavior;
    this.iterator = iterator;
    this.localVariables = localVariables;
    ExceptionTable exceptionTable = this.behavior.getMethodInfo().getCodeAttribute().getExceptionTable();
   
    if(exceptionTable != null) {
      this.exceptionHandlers = new int[exceptionTable.size()];
      for(int i = 0; i < exceptionTable.size(); i++) {
        exceptionHandlers[i] = exceptionTable.handlerPc(i);
      }
    } else {
      this.exceptionHandlers = new int[0];
    }
  }
 
  public Context(CtBehavior behavior, MultiMarkerCodeIterator iterator) {
    this(behavior, iterator, findLocalVariables(behavior));
  }
 
  public Context(CtBehavior behavior) {
    this(behavior, new MultiMarkerCodeIterator(behavior.getMethodInfo().getCodeAttribute()), findLocalVariables(behavior));
  }
 
  /**
   * States if the given index is a start of an exception handler.
   * @param index
   */
  public boolean isStartOfExceptionHandler(int index) {
    for(int i = 0; i < exceptionHandlers.length; i++)
      if(exceptionHandlers[i] == index)
        return true;
    return false;
  }
 
  private static Map<Integer, LocalVariable> findLocalVariables(CtBehavior behavior) {
    try {
      return LocalVariable.findVariables(behavior);
    } catch (NotFoundException e) {
      throw new RuntimeException("Error while retrieving the behavior's local variables!", e);
    }
  }
}
TOP

Related Classes of bytecodeparser.Context

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.