While exploring the new JDK 5 tool apt (annotation processing tool), I figured out how to write new source code that is compiled into my build tree along side my regular Java sources. Here is a trivial example.
First, I need an annotation processing factory (I ignore imports and such throughout):
public class MyAnnotationProcessorFactory implements AnnotationProcessorFactory { public CollectionsupportedOptions() { return Collections.emptySet(); } public Collection supportedAnnotationTypes() { return Collections.singleton( getClass().getPackage().getName() + ".*"); } public AnnotationProcessor getProcessorFor( final Set atds, final AnnotationProcessorEnvironment env) { return new MyAnnotationProcessor(atds, env); } }
Second is to have an annotation processor:
public class MyAnnotationProcessor implements AnnotationProcessor { private final Setatds; private final AnnotationProcessorEnvironment env; MyAnnotationProcessor(final Set atds, final AnnotationProcessorEnvironment env) { this.atds = atds; this.env = env; } public void process() { for (final AnnotationTypeDeclaration atd : atds) { for (final Declaration decl : env.getDeclarationsAnnotatedWith(atd)) { final String typeName = decl.getSimpleName() + "Example"; final String fullTypeName = getPackageName() + "." + typeName; try { final PrintWriter writer = env.getFiler().createSourceFile(fullTypeName); writer.println("package " + getPackageName() + ";"); writer.println("public class " + typeName + " {"); writer.println("}"); } catch (final IOException e) { throw new RuntimeException(fullTypeName, e); } } } } private String getPackageName() { return getClass().getPackage().getName(); } }
Last is to tell apt how to fit it all together (I'm using a Maven-style layout):
apt -cp target/classes -s target/gen-java -d target/gen-classes -target 1.5 -factorypath target/classes -factory MyAnnotationProcessorFactory src/java/AnnotatedExample
When I run the apt command, given suitable annotations in AnnotatedExample
, it pulls them out, instantiates my annotation processor via my factory, and hands them to process()
therein. The key is to use com.sun.mirror.apt.Filer
, a class in $JAVA_HOME/lib/tools.jar. There are no online javadocs that I have found yet. Here is what the JDK 1.5.0_01 sources say about the Filer interface:
This interface supports the creation of new files by an annotation processor. Files created in this way will be known to the annotation processing tool implementing this interface, better enabling the tool to manage them. Four kinds of files are distinguished: source files, class files, other text files, and other binary files. The latter two are collectively referred to as auxiliary files.
There are two distinguished locations (subtrees within the file system) where newly created files are placed: one for new source files, and one for new class files. (These might be specified on a tool's command line, for example, using flags such as -s and -d.) Auxiliary files may be created in either location.
During each run of an annotation processing tool, a file with a given pathname may be created only once. If that file already exists before the first attempt to create it, the old contents will be deleted. Any subsequent attempt to create the same file during a run will fail.
My next step is to glue velocity into my processor so I can use templates for writing the new Java sources.