Package org.eclipse.jdt.debug.eval
Interface IEvaluationEngine
- All Known Subinterfaces:
IAstEvaluationEngine
,IClassFileEvaluationEngine
public interface IEvaluationEngine
An evaluation engine performs an evaluation of a code snippet or expression
in a specified thread of a debug target. An evaluation engine is associated
with a specific debug target and Java project on creation.
- Since:
- 2.0
- See Also:
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Disposes this evaluation engine.void
evaluate
(String snippet, IJavaObject thisContext, IJavaThread thread, IEvaluationListener listener, int evaluationDetail, boolean hitBreakpoints) Asynchronously evaluates the given snippet in the context of the specified type, reporting the result back to the given listener.void
evaluate
(String snippet, IJavaStackFrame frame, IEvaluationListener listener, int evaluationDetail, boolean hitBreakpoints) Asynchronously evaluates the given snippet in the context of the specified stack frame, reporting the result back to the given listener.Returns the debug target for which evaluations are executed.Returns the Java project in which expressions are compiled.
-
Method Details
-
evaluate
void evaluate(String snippet, IJavaStackFrame frame, IEvaluationListener listener, int evaluationDetail, boolean hitBreakpoints) throws org.eclipse.debug.core.DebugException Asynchronously evaluates the given snippet in the context of the specified stack frame, reporting the result back to the given listener. The snippet is evaluated in the context of the Java project this evaluation engine was created on. If the snippet is determined to be a valid expression, the expression is evaluated in the thread associated with the given stack frame. The thread is resumed from the location at which it is currently suspended to perform the evaluation. When the evaluation completes, the thread will be suspended at this original location. The thread runs the evaluation with the given evaluation detail (@see IJavaThread#runEvaluation(IEvaluationRunnable, IProgressMonitor, int)). Compilation and runtime errors are reported in the evaluation result.- Parameters:
snippet
- code snippet to evaluateframe
- the stack frame context in which to run the evaluation.listener
- the listener that will receive notification when/if the evaluation completesevaluationDetail
- one ofDebugEvent.EVALUATION
orDebugEvent.EVALUATION_IMPLICIT
hitBreakpoints
- whether or not breakpoints should be honored in the evaluation thread during the evaluation. Iffalse
, breakpoints hit in the evaluation thread will be ignored.- Throws:
org.eclipse.debug.core.DebugException
- if this method fails. Reasons include:- Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.
- The associated thread is not currently suspended
- The stack frame is not contained in the debug target associated with this evaluation engine
- The associated thread is suspended in the middle of an evaluation that has not completed. It is not possible to perform nested evaluations
-
evaluate
void evaluate(String snippet, IJavaObject thisContext, IJavaThread thread, IEvaluationListener listener, int evaluationDetail, boolean hitBreakpoints) throws org.eclipse.debug.core.DebugException Asynchronously evaluates the given snippet in the context of the specified type, reporting the result back to the given listener. The snippet is evaluated in the context of the Java project this evaluation engine was created on. If the snippet is determined to be a valid expression, the expression is evaluated in the thread associated with the given stack frame. The thread is resumed from the location at which it is currently suspended to perform the evaluation. When the evaluation completes, the thread will be suspended at this original location. The thread runs the evaluation with the given evaluation detail (@see IJavaThread#runEvaluation(IEvaluationRunnable, IProgressMonitor, int)). Compilation and runtime errors are reported in the evaluation result.- Parameters:
snippet
- code snippet to evaluatethisContext
- the 'this' context for the evaluationthread
- the thread in which to run the evaluation, which must be suspendedlistener
- the listener that will receive notification when/if the evaluation completesevaluationDetail
- one ofDebugEvent.EVALUATION
orDebugEvent.EVALUATION_IMPLICIT
hitBreakpoints
- whether or not breakpoints should be honored in the evaluation thread during the evaluation. Iffalse
, breakpoints hit in the evaluation thread will be ignored.- Throws:
org.eclipse.debug.core.DebugException
- if this method fails. Reasons include:- Failure communicating with the VM. The DebugException's status code contains the underlying exception responsible for the failure.
- The associated thread is not currently suspended
- The specified thread is not contained in the debug target associated with this evaluation engine
- The associated thread is suspended in the middle of an evaluation that has not completed. It is not possible to perform nested evaluations
-
getJavaProject
IJavaProject getJavaProject()Returns the Java project in which expressions are compiled.- Returns:
- Java project context
-
getDebugTarget
IJavaDebugTarget getDebugTarget()Returns the debug target for which evaluations are executed.- Returns:
- Java debug target
-
dispose
void dispose()Disposes this evaluation engine. This causes the evaluation engine to cleanup any resources (such as threads) that it maintains. Clients should call this method when they are finished performing evaluations with this engine. This engine must not be used to perform evaluations after it has been disposed.
-