public abstract class ProcessingUnit
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected GroovyClassLoader |
classLoader
The ClassLoader to use during processing
|
protected CompilerConfiguration |
configuration
Configuration and other settings that control processing
|
protected ErrorCollector |
errorCollector
a helper to share errors and report them
|
protected int |
phase
The current phase
|
protected boolean |
phaseComplete
Set true if phase is finished
|
Constructor and Description |
---|
ProcessingUnit(CompilerConfiguration configuration,
GroovyClassLoader classLoader,
ErrorCollector er)
Initialize the ProcessingUnit to the empty state.
|
Modifier and Type | Method and Description |
---|---|
void |
completePhase()
Marks the current phase complete and processes any
errors.
|
void |
configure(CompilerConfiguration configuration)
Reconfigures the ProcessingUnit.
|
GroovyClassLoader |
getClassLoader()
Returns the class loader in use by this ProcessingUnit.
|
CompilerConfiguration |
getConfiguration() |
ErrorCollector |
getErrorCollector()
Errors found during the compilation should be reported through the ErrorCollector.
|
int |
getPhase()
Returns the current phase.
|
java.lang.String |
getPhaseDescription()
Returns the description for the current phase.
|
void |
gotoPhase(int phase)
Wraps up any pending operations for the current phase
and switches to the next phase.
|
void |
nextPhase()
A synonym for
gotoPhase( phase + 1 ) . |
void |
setClassLoader(GroovyClassLoader loader)
Sets the class loader for use by this ProcessingUnit.
|
void |
setConfiguration(CompilerConfiguration configuration) |
protected int phase
protected boolean phaseComplete
protected CompilerConfiguration configuration
protected GroovyClassLoader classLoader
protected ErrorCollector errorCollector
public ProcessingUnit(CompilerConfiguration configuration, GroovyClassLoader classLoader, ErrorCollector er)
public void configure(CompilerConfiguration configuration)
public CompilerConfiguration getConfiguration()
public void setConfiguration(CompilerConfiguration configuration)
public GroovyClassLoader getClassLoader()
public void setClassLoader(GroovyClassLoader loader)
public int getPhase()
public java.lang.String getPhaseDescription()
public ErrorCollector getErrorCollector()
public void completePhase() throws CompilationFailedException
CompilationFailedException
public void nextPhase() throws CompilationFailedException
gotoPhase( phase + 1 )
.CompilationFailedException
public void gotoPhase(int phase) throws CompilationFailedException
CompilationFailedException