Open Source Repository

Home /beanshell/bsh-2.0b4 | Repository Home



bsh/TargetError.java
/*****************************************************************************
 *                                                                           *
 *  This file is part of the BeanShell Java Scripting distribution.          *
 *  Documentation and updates may be found at http://www.beanshell.org/      *
 *                                                                           *
 *  Sun Public License Notice:                                               *
 *                                                                           *
 *  The contents of this file are subject to the Sun Public License Version  *
 *  1.0 (the "License"); you may not use this file except in compliance with *
 *  the License. A copy of the License is available at http://www.sun.com    * 
 *                                                                           *
 *  The Original Code is BeanShell. The Initial Developer of the Original    *
 *  Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright     *
 *  (C) 2000.  All Rights Reserved.                                          *
 *                                                                           *
 *  GNU Public License Notice:                                               *
 *                                                                           *
 *  Alternatively, the contents of this file may be used under the terms of  *
 *  the GNU Lesser General Public License (the "LGPL"), in which case the    *
 *  provisions of LGPL are applicable instead of those above. If you wish to *
 *  allow use of your version of this file only under the  terms of the LGPL *
 *  and not to allow others to use your version of this file under the SPL,  *
 *  indicate your decision by deleting the provisions above and replace      *
 *  them with the notice and other provisions required by the LGPL.  If you  *
 *  do not delete the provisions above, a recipient may use your version of  *
 *  this file under either the SPL or the LGPL.                              *
 *                                                                           *
 *  Patrick Niemeyer ([email protected])                                           *
 *  Author of Learning Java, O'Reilly & Associates                           *
 *  http://www.pat.net/~pat/                                                 *
 *                                                                           *
 *****************************************************************************/


package bsh;

import java.lang.reflect.InvocationTargetException;

import java.io.PrintStream;

/**
  TargetError is an EvalError that wraps an exception thrown by the script  
  (or by code called from the script).  TargetErrors indicate exceptions 
  which can be caught within the script itself, whereas a general EvalError 
  indicates that the script cannot be evaluated further for some reason.
  
  If the exception is caught within the script it is automatically unwrapped,
  so the code looks like normal Java code.  If the TargetError is thrown
  from the eval() or interpreter.eval() method it may be caught and unwrapped
  to determine what exception was thrown.
*/
public class TargetError extends EvalError 
{
  Throwable target;
  boolean inNativeCode;

  public TargetError(
    String msg, Throwable t, SimpleNode node, CallStack callstack, 
    boolean inNativeCode )
  {
    supermsg, node, callstack );
    target = t;
    this.inNativeCode = inNativeCode;
  }

  public TargetErrorThrowable t, SimpleNode node, CallStack callstack )
  {
    this("TargetError", t, node, callstack, false);
  }

  public Throwable getTarget()
  {
    // check for easy mistake
    if(target instanceof InvocationTargetException)
      return((InvocationTargetException)target).getTargetException();
    else
      return target;
  }

  public String toString() 
  {
    return super.toString() 
      "\nTarget exception: " 
      printTargetErrortarget );
  }

    public void printStackTrace() { 
    printStackTracefalse, System.err );
  }

    public void printStackTracePrintStream out ) { 
    printStackTracefalse, out );
  }

    public void printStackTraceboolean debug, PrintStream out ) {
    if debug ) {
      super.printStackTraceout );
      out.println("--- Target Stack Trace ---");
    }
    target.printStackTraceout );
  }

  /**
    Generate a printable string showing the wrapped target exception.
    If the proxy mechanism is available, allow the extended print to
    check for UndeclaredThrowableException and print that embedded error.
  */
  public String printTargetErrorThrowable t 
  {
    String s = target.toString();

    if Capabilities.canGenerateInterfaces() )
      s += "\n" + xPrintTargetError);

    return s;
  }

  /**
    Extended form of print target error.
    This indirection is used to print UndeclaredThrowableExceptions 
    which are possible when the proxy mechanism is available.

    We are shielded from compile problems by using a bsh script.
    This is acceptable here because we're not in a critical path...
    Otherwise we'd need yet another dynamically loaded module just for this.
  */
  public String xPrintTargetErrorThrowable t 
  {
    String getTarget =
      "import java.lang.reflect.UndeclaredThrowableException;"+
      "String result=\"\";"+
      "while ( target instanceof UndeclaredThrowableException ) {"+
      "  target=target.getUndeclaredThrowable(); " +
      "  result+=\"Nested: \"+target.toString();" +
      "}"+
      "return result;";
    Interpreter i = new Interpreter();
    try {
      i.set("target", t);
      return (String)i.evalgetTarget );
    catch EvalError e ) {
      throw new InterpreterError("xprintarget: "+e.toString() );
    }
  }

  /**
    Return true if the TargetError was generated from native code.
    e.g. if the script called into a compiled java class which threw
    the excpetion.  We distinguish so that we can print the stack trace
    for the native code case... the stack trace would not be useful if
    the exception was generated by the script.  e.g. if the script
    explicitly threw an exception... (the stack trace would simply point
    to the bsh internals which generated the exception).
  */
  public boolean inNativeCode() { 
    return inNativeCode; 
  }
}