Class AnnotationStatistics
java.lang.Object
javax.annotation.processing.AbstractProcessor
org.checkerframework.javacutil.AbstractTypeProcessor
org.checkerframework.framework.source.SourceChecker
org.checkerframework.common.util.count.AnnotationStatistics
- All Implemented Interfaces:
- Processor,- OptionConfiguration
@SupportedOptions({"nolocations","annotations","annotationserror","annotationsummaryonly"})
@SupportedSourceVersion(RELEASE_8)
public class AnnotationStatistics
extends SourceChecker
An annotation processor for counting the annotations in a program and for listing the potential
 locations of annotations. To invoke it, use
 
javac -proc:only -processor org.checkerframework.common.util.count.AnnotationStatistics MyFile.java ...
By default, this utility displays annotation locations only, but not the annotations
 themselves. Further, the ouput includes all annotations (including @Override, etc.),
 which is not very useful.
 
The following options may be used to adjust the output:
- -Aannotations: prints the annotation name, the file that contains it, and whether it is in a signature or in a body
- -Anolocations: suppresses location output; only makes sense in conjunction with- -Aannotations
- -Aannotationsummaryonly: with both of the above, only outputs a summary
- -Aannotationserror: histogram is issued as a warning, not just printed
These use cases are not very useful, because they include all annotations including
 @Override, etc.
 
- Output the locations of annotations, but not the annotations themselves: normal invocation, as above
- Histogram of the locations of annotations, by location type: ... | sort | uniq -c
- Total annotation count: ... | wc.
- Count for only certain location types: use grep
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class org.checkerframework.framework.source.SourceCheckerSourceChecker.CheckerMessage
- 
Field SummaryFields inherited from class org.checkerframework.framework.source.SourceCheckeractiveOptions, currentRoot, DETAILS_SEPARATOR, elements, elementsWithSuppressedWarnings, immediateSubcheckers, javacErrored, messager, messagesProperties, messageStore, MSGS_FILE, OPTION_SEPARATOR, parentChecker, subcheckers, supportedOptions, SUPPRESS_ALL_MESSAGE_KEY, SUPPRESS_ALL_PREFIX, suppressWarningsPrefixesOfSubcheckers, treePathCacher, trees, types, UNNEEDED_SUPPRESSION_KEY, upstreamCheckerNames, useAllcheckersPrefix, visitorFields inherited from class javax.annotation.processing.AbstractProcessorprocessingEnv
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected SourceVisitor<?,?> Provides theSourceVisitorthat the checker should use to scan input source trees.Returns the AnnotationProvider (the type factory) associated with this.protected voidincrementCount(Name annoName) Increment the number of times annotation with nameannoNamehas appeared.voidA method to be called once all the classes are processed.Methods inherited from class org.checkerframework.framework.source.SourceCheckercreateSupportedLintOptions, expandCFOptions, fullMessageOf, getBooleanOption, getBooleanOption, getElementUtils, getExtraStubFiles, getImmediateSubcheckerClasses, getLintOption, getLintOption, getMessagesProperties, getOption, getOption, getOptionConfiguration, getOptions, getOptionsNoSubcheckers, getParentChecker, getPathToCompilationUnit, getProcessingEnvironment, getProperties, getRelatedClassName, getStandardSuppressWarningsPrefixes, getStringsOption, getStringsOption, getSubchecker, getSubCheckerIndex, getSubcheckers, getSupportedAnnotationTypes, getSupportedLintOptions, getSupportedOptions, getSupportedSourceVersion, getSuppressWarningsPrefixes, getSuppressWarningsPrefixesOfSubcheckers, getTreePathCacher, getTreeUtils, getTypeUtils, getUpstreamCheckerNames, getVisitor, hasOption, hasOptionNoSubcheckers, init, initChecker, instantiateSubcheckers, message, message, messageKeyMatches, printOrStoreMessage, printOrStoreMessage, printStats, printStoredMessages, processErrorMessageArg, report, reportError, reportWarning, setLintOption, setParentChecker, setRoot, shouldAddShutdownHook, shouldResolveReflection, shouldSkipDefs, shouldSkipDefs, shouldSkipDefs, shouldSkipFiles, shouldSkipUses, shouldSkipUses, shouldSuppressWarnings, shouldSuppressWarnings, shouldSuppressWarnings, shutdownHook, typeProcess, typeProcessingStart, useConservativeDefault, warnUnneededSuppressions, warnUnneededSuppressionsMethods inherited from class org.checkerframework.javacutil.AbstractTypeProcessorgetCompilerLog, processMethods inherited from class javax.annotation.processing.AbstractProcessorgetCompletions, isInitializedMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.checkerframework.framework.util.OptionConfigurationgetStringsOption, getStringsOption
- 
Constructor Details- 
AnnotationStatisticspublic AnnotationStatistics()Creates an AnnotationStatistics.
 
- 
- 
Method Details- 
typeProcessingOverpublic void typeProcessingOver()Description copied from class:AbstractTypeProcessorA method to be called once all the classes are processed.Subclasses may override this method to do any aggregate analysis (e.g. generate report, persistence) or resource deallocation. Method AbstractTypeProcessor.getCompilerLog()can be used to access the number of compiler errors.- Overrides:
- typeProcessingOverin class- SourceChecker
 
- 
incrementCountIncrement the number of times annotation with nameannoNamehas appeared.
- 
createSourceVisitorDescription copied from class:SourceCheckerProvides theSourceVisitorthat the checker should use to scan input source trees.- Specified by:
- createSourceVisitorin class- SourceChecker
- Returns:
- a SourceVisitorto use to scan source trees
 
- 
getAnnotationProviderDescription copied from class:SourceCheckerReturns the AnnotationProvider (the type factory) associated with this.- Overrides:
- getAnnotationProviderin class- SourceChecker
- Returns:
- the AnnotationProvider (the type factory) associated with this
 
 
-