Class EvaluationContextWrapper
- All Implemented Interfaces:
IEvaluationContext
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEvaluationContextWrapper(EvaluationContext context, JavaProject project) Creates a new wrapper around the given infrastructure evaluation context and project. -
Method Summary
Modifier and TypeMethodDescriptionReturns the global variables declared in this evaluation context.protected voidChecks to ensure that there is a previously built state.voidcodeComplete(String codeSnippet, int position, CompletionRequestor requestor) Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor.voidcodeComplete(String codeSnippet, int position, CompletionRequestor requestor, WorkingCopyOwner owner) Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor.voidcodeComplete(String codeSnippet, int position, CompletionRequestor requestor, WorkingCopyOwner owner, org.eclipse.core.runtime.IProgressMonitor monitor) Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor.voidcodeComplete(String codeSnippet, int position, CompletionRequestor requestor, org.eclipse.core.runtime.IProgressMonitor monitor) Performs a code completion at the given position in the given code snippet, reporting results to the given completion requestor.voidcodeComplete(String codeSnippet, int position, ICodeCompletionRequestor requestor) Deprecated.- use codeComplete(String, int, ICompletionRequestor) insteadvoidcodeComplete(String codeSnippet, int position, ICompletionRequestor requestor) Deprecated.voidcodeComplete(String codeSnippet, int position, ICompletionRequestor requestor, WorkingCopyOwner owner) Deprecated.codeSelect(String codeSnippet, int offset, int length) Resolves and returns a collection of Java elements corresponding to the source code at the given positions in the given code snippet.codeSelect(String codeSnippet, int offset, int length, WorkingCopyOwner owner) Resolves and returns a collection of Java elements corresponding to the source code at the given positions in the given code snippet.voiddeleteVariable(IGlobalVariable variable) Deletes the given variable from this evaluation context.voidevaluateCodeSnippet(String codeSnippet, String[] localVariableTypeNames, String[] localVariableNames, int[] localVariableModifiers, IType declaringType, boolean isStatic, boolean isConstructorCall, ICodeSnippetRequestor requestor, org.eclipse.core.runtime.IProgressMonitor progressMonitor) Evaluates the given code snippet in the context of a suspended thread.voidevaluateCodeSnippet(String codeSnippet, ICodeSnippetRequestor requestor, org.eclipse.core.runtime.IProgressMonitor progressMonitor) Evaluates the given code snippet.voidevaluateVariable(IGlobalVariable variable, ICodeSnippetRequestor requestor, org.eclipse.core.runtime.IProgressMonitor progressMonitor) Evaluates the given global variable.protected INameEnvironmentReturns a name environment for the last built state.String[]Returns the import declarations for this evaluation context.Returns the infrastructure evaluation context.protected IRequestorReturns a new infrastructure evaluation requestor instance.Returns the name of the package in which code snippets are to be compiled and run.protected IProblemFactoryReturns the problem factory to be used during evaluation.Returns the Java project this evaluation context was created for.char[]protected voidHandles an install exception by throwing a Java Model exception.newVariable(String typeName, String name, String initializer) Creates a new global variable with the given name, type, and initializer.voidsetImports(String[] imports) Sets the import declarations for this evaluation context.voidsetPackageName(String packageName) Sets the dot-separated name of the package in which code snippets are to be compiled and run.voidvalidateImports(ICodeSnippetRequestor requestor) Validates this evaluation context's import declarations.
-
Field Details
-
context
-
project
-
-
Constructor Details
-
EvaluationContextWrapper
Creates a new wrapper around the given infrastructure evaluation context and project.
-
-
Method Details
-
allVariables
Description copied from interface:IEvaluationContextReturns the global variables declared in this evaluation context. The variables are maintained in the order they are created in.- Specified by:
allVariablesin interfaceIEvaluationContext- Returns:
- the list of global variables
- See Also:
-
checkBuilderState
protected void checkBuilderState()Checks to ensure that there is a previously built state. -
codeComplete
public void codeComplete(String codeSnippet, int position, ICompletionRequestor requestor) throws JavaModelException Deprecated.Description copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor.Note that code completion does not involve evaluation.
- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completions- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeComplete
public void codeComplete(String codeSnippet, int position, ICompletionRequestor requestor, WorkingCopyOwner owner) throws JavaModelException Deprecated.Description copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor. It considers types in the working copies with the given owner first. In other words, the owner's working copies will take precedence over their original compilation units in the workspace.Note that if a working copy is empty, it will be as if the original compilation unit had been deleted.
Note that code completion does not involve evaluation.
- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completionsowner- the owner of working copies that take precedence over their original compilation units- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeComplete
public void codeComplete(String codeSnippet, int position, CompletionRequestor requestor) throws JavaModelException Description copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor.Note that code completion does not involve evaluation.
- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completions- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeComplete
public void codeComplete(String codeSnippet, int position, CompletionRequestor requestor, org.eclipse.core.runtime.IProgressMonitor monitor) throws JavaModelException Description copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor.Note that code completion does not involve evaluation.
If
IProgressMonitoris notnullthen some proposals which can be very long to compute are proposed. To avoid that the code assist operation take too much time aIProgressMonitorwhich automatically cancel the code assist operation when a specified amount of time is reached could be used.new IProgressMonitor() { private final static int TIMEOUT = 500; //ms private long endTime; public void beginTask(String name, int totalWork) { fEndTime= System.currentTimeMillis() + TIMEOUT; } public boolean isCanceled() { return endTime <= System.currentTimeMillis(); } ... };- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completionsmonitor- the progress monitor used to report progress- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeComplete
public void codeComplete(String codeSnippet, int position, CompletionRequestor requestor, WorkingCopyOwner owner) throws JavaModelException Description copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor. It considers types in the working copies with the given owner first. In other words, the owner's working copies will take precedence over their original compilation units in the workspace.Note that if a working copy is empty, it will be as if the original compilation unit had been deleted.
Note that code completion does not involve evaluation.
- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completionsowner- the owner of working copies that take precedence over their original compilation units- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeComplete
public void codeComplete(String codeSnippet, int position, CompletionRequestor requestor, WorkingCopyOwner owner, org.eclipse.core.runtime.IProgressMonitor monitor) throws JavaModelException Description copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor. It considers types in the working copies with the given owner first. In other words, the owner's working copies will take precedence over their original compilation units in the workspace.Note that if a working copy is empty, it will be as if the original compilation unit had been deleted.
Note that code completion does not involve evaluation.
If
IProgressMonitoris notnullthen some proposals which can be very long to compute are proposed. To avoid that the code assist operation take too much time aIProgressMonitorwhich automatically cancel the code assist operation when a specified amount of time is reached could be used.new IProgressMonitor() { private final static int TIMEOUT = 500; //ms private long endTime; public void beginTask(String name, int totalWork) { fEndTime= System.currentTimeMillis() + TIMEOUT; } public boolean isCanceled() { return endTime <= System.currentTimeMillis(); } ... };- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completionsowner- the owner of working copies that take precedence over their original compilation unitsmonitor- the progress monitor used to report progress- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeSelect
public IJavaElement[] codeSelect(String codeSnippet, int offset, int length) throws JavaModelException Description copied from interface:IEvaluationContextResolves and returns a collection of Java elements corresponding to the source code at the given positions in the given code snippet.Note that code select does not involve evaluation, and problems are never reported.
- Specified by:
codeSelectin interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to resolve inoffset- the position in the code snippet of the first character of the code to resolvelength- the length of the selected code to resolve- Returns:
- the (possibly empty) list of selection Java elements
- Throws:
JavaModelException- if code resolve could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
codeSelect
public IJavaElement[] codeSelect(String codeSnippet, int offset, int length, WorkingCopyOwner owner) throws JavaModelException Description copied from interface:IEvaluationContextResolves and returns a collection of Java elements corresponding to the source code at the given positions in the given code snippet. It considers types in the working copies with the given owner first. In other words, the owner's working copies will take precedence over their original compilation units in the workspace.Note that if a working copy is empty, it will be as if the original compilation unit had been deleted.
Note that code select does not involve evaluation, and problems are never reported.
- Specified by:
codeSelectin interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to resolve inoffset- the position in the code snippet of the first character of the code to resolvelength- the length of the selected code to resolveowner- the owner of working copies that take precedence over their original compilation units- Returns:
- the (possibly empty) list of selection Java elements
- Throws:
JavaModelException- if code resolve could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-
deleteVariable
Description copied from interface:IEvaluationContextDeletes the given variable from this evaluation context. Does nothing if the given variable has already been deleted.- Specified by:
deleteVariablein interfaceIEvaluationContext- Parameters:
variable- the global variable- See Also:
-
evaluateCodeSnippet
public void evaluateCodeSnippet(String codeSnippet, String[] localVariableTypeNames, String[] localVariableNames, int[] localVariableModifiers, IType declaringType, boolean isStatic, boolean isConstructorCall, ICodeSnippetRequestor requestor, org.eclipse.core.runtime.IProgressMonitor progressMonitor) throws JavaModelException Description copied from interface:IEvaluationContextEvaluates the given code snippet in the context of a suspended thread. The code snippet is compiled along with this context's package declaration, imports, and global variables. The given requestor'sacceptProblemmethod is called for each compilation problem that is detected. Then the resulting class files are handed to the given requestor'sacceptClassFilesmethod to deploy and run.The requestor is expected to:
- send the class files to the target VM,
- load them (starting with the code snippet class),
- create a new instance of the code snippet class,
- run the method
run()of the code snippet, - retrieve the values of the local variables,
- retrieve the returned value of the code snippet
This method is long-running; progress and cancellation are provided by the given progress monitor.
- Specified by:
evaluateCodeSnippetin interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippetlocalVariableTypeNames- the dot-separated fully qualified names of the types of the local variables.localVariableNames- the names of the local variables as they are declared in the user's code.localVariableModifiers- the modifiers of the local variables (default modifier or final modifier).declaringType- the type in which the code snippet is evaluated.isStatic- whether the code snippet is evaluated in a static member of the declaring type.isConstructorCall- whether the code snippet is evaluated in a constructor of the declaring type.requestor- the code snippet requestorprogressMonitor- a progress monitor- Throws:
JavaModelException- if a runtime problem occurred or if this context's project has no build state- See Also:
-
evaluateCodeSnippet
public void evaluateCodeSnippet(String codeSnippet, ICodeSnippetRequestor requestor, org.eclipse.core.runtime.IProgressMonitor progressMonitor) throws JavaModelException Description copied from interface:IEvaluationContextEvaluates the given code snippet. The code snippet is compiled along with this context's package declaration, imports, and global variables. The given requestor'sacceptProblemmethod is called for each compilation problem that is detected. Then the resulting class files are handed to the given requestor'sacceptClassFilesmethod to deploy and run. The requestor is also responsible for getting the result back.This method is long-running; progress and cancellation are provided by the given progress monitor.
- Specified by:
evaluateCodeSnippetin interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippetrequestor- the code snippet requestorprogressMonitor- a progress monitor- Throws:
JavaModelException- if a runtime problem occurred or if this context's project has no build state- See Also:
-
evaluateVariable
public void evaluateVariable(IGlobalVariable variable, ICodeSnippetRequestor requestor, org.eclipse.core.runtime.IProgressMonitor progressMonitor) throws JavaModelException Description copied from interface:IEvaluationContextEvaluates the given global variable. During this operation, this context's package declaration, imports, and all its declared variables are verified. The given requestor'sacceptProblemmethod will be called for each problem that is detected.This method is long-running; progress and cancellation are provided by the given progress monitor.
- Specified by:
evaluateVariablein interfaceIEvaluationContext- Parameters:
variable- the global variablerequestor- the code snippet requestorprogressMonitor- a progress monitor- Throws:
JavaModelException- if a runtime problem occurred or if this context's project has no build state- See Also:
-
getBuildNameEnvironment
Returns a name environment for the last built state. -
getVarClassName
public char[] getVarClassName() -
getImports
Description copied from interface:IEvaluationContextReturns the import declarations for this evaluation context. Returns and empty list if there are no imports (the default if the imports have never been set). The syntax for the import corresponds to a fully qualified type name, or to an on-demand package name as defined by ImportDeclaration (JLS2 7.5). For example,"java.util.Hashtable"or"java.util.*".- Specified by:
getImportsin interfaceIEvaluationContext- Returns:
- the list of import names
- See Also:
-
getInfrastructureEvaluationContext
Returns the infrastructure evaluation context. -
getInfrastructureEvaluationRequestor
Returns a new infrastructure evaluation requestor instance. -
getPackageName
Description copied from interface:IEvaluationContextReturns the name of the package in which code snippets are to be compiled and run. Returns an empty string for the default package (the default if the package name has never been set). For example,"com.example.myapp".- Specified by:
getPackageNamein interfaceIEvaluationContext- Returns:
- the dot-separated package name, or the empty string indicating the default package
- See Also:
-
getProblemFactory
Returns the problem factory to be used during evaluation. -
getProject
Description copied from interface:IEvaluationContextReturns the Java project this evaluation context was created for.- Specified by:
getProjectin interfaceIEvaluationContext- Returns:
- the Java project
- See Also:
-
handleInstallException
Handles an install exception by throwing a Java Model exception.- Throws:
JavaModelException
-
newVariable
Description copied from interface:IEvaluationContextCreates a new global variable with the given name, type, and initializer.The
typeNameandinitializerare interpreted in the context of this context's package and import declarations.The syntax for a type name corresponds to Type in Field Declaration (JLS2 8.3).
- Specified by:
newVariablein interfaceIEvaluationContext- Parameters:
typeName- the type namename- the name of the global variableinitializer- the initializer expression, ornullif the variable is not initialized- Returns:
- a new global variable with the given name, type, and initializer
- See Also:
-
setImports
Description copied from interface:IEvaluationContextSets the import declarations for this evaluation context. An empty list indicates there are no imports. The syntax for the import corresponds to a fully qualified type name, or to an on-demand package name as defined by ImportDeclaration (JLS2 7.5). For example,"java.util.Hashtable"or"java.util.*".- Specified by:
setImportsin interfaceIEvaluationContext- Parameters:
imports- the list of import names- See Also:
-
setPackageName
Description copied from interface:IEvaluationContextSets the dot-separated name of the package in which code snippets are to be compiled and run. For example,"com.example.myapp".- Specified by:
setPackageNamein interfaceIEvaluationContext- Parameters:
packageName- the dot-separated package name, or the empty string indicating the default package- See Also:
-
validateImports
Description copied from interface:IEvaluationContextValidates this evaluation context's import declarations. The given requestor'sacceptProblemmethod is called for each problem that is detected.- Specified by:
validateImportsin interfaceIEvaluationContext- Parameters:
requestor- the code snippet requestor- See Also:
-
codeComplete
public void codeComplete(String codeSnippet, int position, ICodeCompletionRequestor requestor) throws JavaModelException Deprecated.- use codeComplete(String, int, ICompletionRequestor) insteadDescription copied from interface:IEvaluationContextPerforms a code completion at the given position in the given code snippet, reporting results to the given completion requestor.Note that code completion does not involve evaluation.
- Specified by:
codeCompletein interfaceIEvaluationContext- Parameters:
codeSnippet- the code snippet to complete inposition- the character position in the code snippet to complete at, or -1 indicating the beginning of the snippetrequestor- the code completion requestor capable of accepting all possible types of completions- Throws:
JavaModelException- if code completion could not be performed. Reasons include:- The position specified is less than -1 or is greater than the snippet's length (INDEX_OUT_OF_BOUNDS)
- See Also:
-