This task uses the AspectJ post-1.1 compiler ajc. The AspectJ compiler can be used like Javac to compile Java sources, but it can also compile AspectJ sources or weave binary aspects with Java bytecode. It can run in normal "batch" mode or in an "incremental" mode, where it only recompiles files it has to revisit. For more information on ajc, see The ajc Command-line Reference. Unlike Javac or the Javac Ant task, this task always compiles the specified files since aspects can apply to other (updated) files. For a workaround, see Avoiding clean compiles.
Beyond the normal ajc compiler options, this task also supports an experimental option for an incremental "tag" file, and it can copy resources from source directories or input jars to the output jar or directory.
This task is named iajc to avoid conflict with the 1.0 task ajc.
The following tables list the supported parameters. For any parameter specified as a Path, a single path can be specified directly as an attribute, multiple paths can be specified using a nested element of the same name, and a common path can be reused by defining it as a global and passing the id to the corresponding {name}ref attribute. See Path below for more details.
Most attributes and nested elements are optional.
The compiler requires that the same version of
aspectjrt.jar
be specified on the classpath, and that some sources be
be specified
(using one or more of
sourceroots
,
injars
,
inpath
,
argfiles
, and/or
srcdir
(with patterns)).
When in incremental mode, only
sourceroots
may be specified.
Boolean parameters default to false
unless otherwise stated.
AjcTask (iajc) options for specifying sources
Attribute | Description |
---|---|
argfiles, argfilesRef (Path) | An argument file contains a list of arguments read by the compiler. Each line is read into one element of the argument array and may include another argfile by reference. |
sourceRoots, sourceRootsRef (Path) | Directories containing source files (ending with .java or .aj) to compile. |
srcdir (Path) | Base directory of sources to compile, assuming there are nested matches. This approach uses the Ant process for matching .java files and is not compatible with incremental mode. Unless using filters to limit the sources included, use sourceroots instead. |
injars, injarsRef (Path) | Deprecated - use inpath instead. Read .class files for bytecode weaving from zip files (only). |
inpath, inpathRef (Path) | Read .class files for bytecode weaving from directories or zip files (like classpath). |
classpath, classpathRef (Path) |
The classpath used by the sources being compiled.
When compiling aspects, include the same version of the
|
bootclasspath, bootclasspathRef (Path) | The bootclasspath specifies types to use instead of the invoking VM's when seeking types during compilation. |
extDirs, extDirsRef (Path) | The extension directories to use instead of those in the invoking VM when seeking types during compilation. |
aspectPath, aspectPathRef (Path) |
Similar to classpath, aspectpath contains read-only,
binary aspect libraries that are woven into sources
but not included in the output.
|
AjcTask (iajc) options for specifying output
Attribute | Description |
---|---|
destDir |
The directory in which to place the generated class files.
Only one of |
outJar |
The zip file in which to place the generated output class files.
Only one of |
copyInjars | (Deprecated/ignored; ajc does this.) If true, copy all non-.class files from input jar(s) to the output jar or destination directory after the compile (or incremental compile) completes. In forked mode, this copies only after the process completes, not after incremental compiles. |
sourceRootCopyFilter |
When set, copy all files from the sourceroot directories to the output jar
or destination directory except those specified in the filter pattern.
The pattern should be compatible with an Ant fileset excludes filter;
when using this, most developers pass
|
inpathDirCopyFilter |
When set, copy all files from the inpath directories
to the output jar or destination directory except those
specified in the filter pattern. The pattern should be
compatible with an Ant fileset excludes filter; when
using this, most developers pass
|
AjcTask (iajc) options for specifying compiler behavior
Attribute | Description |
---|---|
fork |
Run process in another VM.
This gets the forking classpath either explicitly
from a |
forkclasspath, forkclasspathRef (Path) | Specify the classpath to use for the compiler when forking. |
maxmem | The maximum memory to use for the new VM when fork is true. Values should have the same form as accepted by the VM, e.g., "128m". |
incremental |
incremental mode: Build once, then recompile only required source
files when user provides input.
Requires that source files be specified only using
|
tagfile |
incremental mode: Build once, then recompile only required source
files when the tag file is updated, finally exiting when tag file
is deleted.
Requires that source files be specified only using
|
X | Set experimental option(s), using comma-separated list of accepted options Options should not contain the leading X. Some commonly-used experimental options have their own entries. The other permitted ones (currently) are serializableAspects, incrementalFile, lazyTjp, reweavable, notReweavable, noInline, terminateAfterCompilation, ajruntimelevel:1.2, and ajruntimelevel:1.5. Of these, some were deprecated in AspectJ 5 (reweavable, terminateAfterCompilation, etc.). |
XterminateAfterCompilation | Terminates before the weaving process, dumping out unfinished class files. |
AjcTask (iajc) options for specifying compiler side-effects and messages
Attribute | Description |
---|---|
emacssym |
If true, emit |
crossref |
If true, emit |
verbose | If true, log compiler verbose messages as Project.INFO during the compile. |
logCommand | If true, log compiler command elements as Project.INFO (rather than the usual Project.VERBOSE level). |
Xlistfileargs | If true, emit list of file arguments during the compile (but behaves now like verbose). |
version | If true, do not compile - just print AspectJ version. |
help | If true, just print help for the command-line compiler. |
Xlintwarnings |
Same as |
Xlint |
Specify default level of all language usage messages to one of
[ |
XlintFile |
Specify property file containing |
failonerror |
If true, throw BuildException to halt build if there
are any compiler errors.
If false, continue notwithstanding compile errors.
Defaults to |
messageHolderClass |
Specify a class to use as the message holder for the compile process.
The entry must be a fully-qualified name of a class resolveable from
the task classpath complying with the
|
showWeaveInfo |
If true, emit weaver messages.
Defaults to |
AjcTask (iajc) options for specifying Eclipse compiler options
Attribute | Description |
---|---|
nowarn |
If true, same as |
deprecation |
If true, same as |
warn |
One or more comma-separated warning specifications from
[ |
debug |
If true, same as |
debugLevel |
One or more comma-separated debug specifications from
[ |
PreserveAllLocals | If true, code gen preserves all local variables (for debug purposes). |
noimporterror | If true, emit no errors for unresolved imports. |
referenceinfo | If true, compute reference info. |
log | File to log compiler messages to. |
encoding | Default source encoding format (per-file encoding not supported in Ant tasks). |
proceedOnError | If true, keep compiling after errors encountered, dumping class files with problem methods. |
progress | If true, emit progress (requires log). |
time | If true, display speed information. |
target |
Specify target class file format as one of
[ |
source |
Set source compliance level to one of
[ |
source |
Set source assertion mode to one of
[ |
This task forms an implicit FileSet and supports all attributes of
<fileset>
(dir becomes srcdir) as well as
the nested
<include>
,
<exclude>
, and
<patternset>
elements.
These can be used to specify source files.
However, it is better to use sourceroots
to specify source directories unless using filters to exclude
some files from compilation.
Some parameters are path-like structures containing one or more
elements; these are
sourceroots
,
argfiles
,
injars
,
inpath
,
classpath
,
bootclasspath
,
forkclasspath
, and
aspectpath
.
In all cases, these may be specified as nested elements, something
like this:
<iajc {attributes..} /> <{name}> <pathelement path="{first-location}"/> <pathelement path="{second-location}"/> ... <{name}> ... </iajc>
As with other Path-like structures, they may be defined elsewhere and specified using the refid attribute:
<path id="aspect.path"> <pathelement path="${home}/lib/persist.jar"/> <pathelement path="${home}/lib/trace.jar"/> </path> ... <iajc {attributes..} /> <aspectpath refid="aspect.path"/> ... </iajc>
The task also supports an attribute {name}ref
for each such parameter. E.g., for aspectpath
:
<iajc {attributes..} aspectpathref="aspect.path"/>
A minimal build script defines the task and runs it, specifying the sources:
<project name="simple-example" default="compile" > <taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties"> <classpath> <pathelement location="${home.dir}/tools/aspectj/lib/aspectjtools.jar"/> </classpath> </taskdef> <target name="compile" > <iajc sourceroots="${home.dir}/ec/project/src" classpath="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/> </target> </project>
Below is script with most everything in it. The compile process...
Runs in incremental mode, recompiling when the user hits return;
Reads all the source files from two directories;
Reads binary .class files from input jar and directory;
Uses a binary aspect library for persistence;
Outputs to an application jar; and
Copies resources from the source directories and binary input jar and directories to the application jar.
When this target is built, the compiler will build once and then wait for input from the user. Messages are printed as usual. When the user has quit, then this runs the application.
<target name="build-test" > <iajc outjar="${home.dir}/output/application.jar" sourceRootCopyFilter="**/CVS/*,**/*.java" inpathDirCopyFilter="**/CVS/*,**/*.java,**/*.class" incremental="true" > <sourceroots> <pathelement location="${home.dir}/ec/project/src"/> <pathelement location="${home.dir}/ec/project/testsrc"/> </sourceroots> <inpath> <pathelement location="${home.dir}/build/module.jar"/> <pathelement location="${home.dir}/build/binary-input"/> </inpath> <aspectpath> <pathelement location="${home.dir}/ec/int/persist.jar"/> </aspectpath> <classpath> <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/> </classpath> </iajc> <java classname="org.smart.app.Main"> <classpath> <pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/> <pathelement location="${home.dir}/ec/int/persist.jar"/> <pathelement location="${home.dir}/output/application.jar"/> </classpath> </java> </target>
For an example of a build script, see ../examples/build.xml.
Unlike javac, the ajc compiler always processes all input because new aspects can apply to updated classes and vice-versa. However, in the case where no files have been updated, there is no reason to recompile sources. One way to implement that is with an explicit dependency check using the uptodate task:
<target name="check.aspects.jar"> <uptodate property="build.unnecessary" targetfile="${aspects.module-jar}" > <srcfiles dir="${src1}" includes="**/*.aj"/> <srcfiles dir="${src2}/" includes="**/*.aj"/> </uptodate> </target> <target name="compile.aspects" depends="prepare,check.aspects.jar" unless="build.unnecessary"> <iajc ...
When using this technique, be careful to verify that binary input jars are themselves up-to-date after they would have been modified by any build commands.
Users may specify a message holder to which the compiler will pass all messages as they are generated. This will override all of the normal message printing, but does not prevent the task from failing if exceptions were thrown or if failonerror is true and the compiler detected errors in the sources.
Handling messages programmatically could be useful when using the compiler to verify code. If aspects consist of declare [error|warning], then the compiler can act to detect invariants in the code being processed. For code to compare expected and actual messages, see the AspectJ testing module (which is not included in the binary distribution).