When extending AbstractProcessor, there is a possibility to override init(...), but there is no "opposite" method, which would be called after all rounds were processed.

This is a problem: when you have to append information collected during each round to same file, you just can't ever close the file, because you never get to know when the last round was. So, the file is never closed and remains empty.

Using a shutdown hook doesn't work either, the hook is never called.

Any ideas?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

The Processor.process method includes an argument of type RoundEnvironment. Perhaps the RoundEnvironment.processingOver method can be of help.

link|improve this answer
It seems to be what I was looking for! Thanks! – java.is.for.desktop Mar 3 at 20:18
feedback

As per my understanding you are complaining that java API doesn't has proper method to identify the end of annotation processing.

like isLast()

How ever in the following example they have used AbstractProcessor without any trouble.

http://www.zdnetasia.com/writing-and-processing-custom-annotations-part-3-39362483.htm

Could you please explain how this example differs from your case? so that others will understand in much better way.

link|improve this answer
Hmm, perhaps my understanding of processor rounds is wrong. Perhaps an additional round is only performed when new sources were generated. (In that case I only had to "count rounds") Currently, can't find information about that. – java.is.for.desktop Nov 10 '10 at 13:52
@java.is.for.desktop are you saying that this above mentioned tutorial implementation and yours are different? – Dinesh Nov 11 '10 at 5:33
This was not the point of my comment. Since in my use case I am not interested in continue to annotation-process source files which were generated in the round before, I commented that my previous understanding of processing rounds might be wrong, and I just need one round. – java.is.for.desktop Nov 11 '10 at 8:50
@java.is.for.desktop Ok. You hav answered it certainly – Dinesh Nov 11 '10 at 12:41
feedback

It seems that my understanding of "rounds" in the context of annotation processing were wrong:

As stated here,

[...] On each round, a processor may be asked to process a subset of the annotations found on the source and class files produced by a prior round. The inputs to the first round of processing are the initial inputs to a run of the tool; these initial inputs can be regarded as the output of a virtual zeroth round of processing. [...]

Since in my use case I am either not producing any new class files, or I produce them but don't need to process them, it should be enought just to "count" rounds and do actual work only in the first one (and doing clean up work, such as closing files, at the end of it).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.