Go to file
Travis Burtrum 174eda3bde
moparisthebest/aptIn16/pipeline/head This commit looks good Szczegóły
Abandon travis-ci for jenkins
2020-11-26 19:54:59 -05:00
.ci Abandon travis-ci for jenkins 2020-11-26 19:54:59 -05:00
apt-mirror-api [maven-release-plugin] prepare for next development iteration 2014-04-21 10:49:05 -04:00
apt-processor [maven-release-plugin] prepare for next development iteration 2014-04-21 10:49:05 -04:00
core Handle 1.8+ Modifier.DEFAULT as PUBLIC for old code 2019-07-11 01:24:54 -04:00
extra Initial Commit, version 0.1 2012-09-07 14:10:35 -04:00
netui-compiler [maven-release-plugin] prepare for next development iteration 2014-04-21 10:49:05 -04:00
netui-compiler-test Ready poms for sync with maven central via oss.sonatype.org 2012-10-30 12:58:58 -04:00
.gitignore Ready poms for sync with maven central via oss.sonatype.org 2012-10-30 12:58:58 -04:00
license.txt Added extra licensing info 2012-09-10 13:07:57 -04:00
pom.xml [maven-release-plugin] prepare for next development iteration 2014-04-21 10:49:05 -04:00
readme.md Abandon travis-ci for jenkins 2020-11-26 19:54:59 -05:00

readme.md

aptIn16

Build Status

aptIn16 is an implementation of the Annotation Processing Tool (apt) com.sun.mirror.* classes allowing classes implementing them to run as Java 1.6 annotation processors inside of javac (JSR 269). This is orders of magnitude faster than apt. It can be used by anyone who currently relies on apt but would like to switch to the newer/faster javac.

In short, it implements com.sun.mirror using javax.annotation.processing and javax.lang.model in the background.

On my companies rather large project using apache beehive annotation processors, compilation of a single module (currently almost 800 .java files, only 300 or so using annotations) using apt took 13 minutes, that same module, using the same beehive processing code, running inside of aptIn16 takes about 45 seconds to compile now, and the output is identical.

Also apt was deprecated in JDK 7, and will disappear in JDK 8 (JEP 117), so you might as well switch sooner than later!

Notes

  1. Not every method in com.sun.mirror.* has been implemented, basically just the bare minimum to get apache beehive to work, so if you use something different, you may need to implement another method or two. All the non-implemented methods are marked with 'todos' and, if you turn on certain static final booleans in Debug, will print out the method name when called and the class calling it. This is very useful for debugging as I haven't found a good way of debugging processors running inside of javac. If you do implement other methods, or make improvements, please send the code my way so everyone can benefit.

  2. This currently only works with a sun/oracle compiler, this is because Java 6 annotation processors don't have a concept of SourcePosition, which is needed by apt, so I have to use the com.sun.source.tree to get this info. All of the sun-specific code is in com.moparisthebest.mirror.util.ConvertSourcePosition, so if you know how to implement this for eclipse or another compiler, please let me know or do so and send me patches.

  3. The onlyvery hacky part of this is that apt gave the entire command line sent to javac as options to the processor, where as Java 6 style annotation processors only get the options specifically meant for annotation processors, and processors like apache beehive rely on some of these options, the hardest to get of which is -sourcepath, which I can get decently on Java 6, but have to really hack it to get in Java 7. Sun compilers put the arguments in an System property, but there are no delimiters that tells you where one argument begins or ends, so that's a complete hack to try to parse it as well. Basically I try to do my best and not halt program execution if something goes wrong. Please tell me a better way to handle this.

  4. Currently, to use this with your own processors, look at the very simple netui-compiler for examples. apt-processor is a project that should auto-discover and run all apt-style processors automatically, but it isn't quite finished and doesn't currently work with beehive.

Licensing

Yes, the project is licensed under the GNU/GPLv3, but that shouldn't affect anyone, even those writing propietary code, as your classes don't link to any of this code. It's simply another tool you run over your code to process it. It would be similar to gcc, just because you use it to compile your programs, doesn't mean your programs must now be under the GNU/GPL. If you think you have an issue with this, let me know and I'm sure we can work it out.

Contributing

  1. Fork it. (Alternatively, if you really can't use github/git, email me a patch.)
  2. Create a branch (git checkout -b my_aptIn16)
  3. Commit your changes (git commit -am "Implemented method X")
  4. Push to the branch (git push origin my_aptIn16)
  5. Open a Pull Request
  6. Enjoy a refreshing beverage and wait