Class ExternalAnnotationDecorator
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.ExternalAnnotationDecorator
- All Implemented Interfaces:
IBinaryInfo,IBinaryType,IDependent,IElementInfo,IGenericType
A decorator for
IBinaryType that allows external annotations to be attached. This can be used to change the
result of enrichWithExternalAnnotationsFor(org.aspectj.org.eclipse.jdt.internal.compiler.env.ITypeAnnotationWalker, java.lang.Object, org.aspectj.org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment) or getExternalAnnotationStatus().-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceAuxiliary interface forgetAnnotationZipFile(String, ZipFileProducer). -
Field Summary
Fields inherited from interface org.aspectj.org.eclipse.jdt.internal.compiler.env.IBinaryType
NoField, NoInterface, NoMethod, NoNestedTypeFields inherited from interface org.aspectj.org.eclipse.jdt.internal.compiler.env.IDependent
JAR_FILE_ENTRY_SEPARATOR -
Constructor Summary
ConstructorsConstructorDescriptionExternalAnnotationDecorator(IBinaryType toDecorate, boolean isFromSource) ExternalAnnotationDecorator(IBinaryType toDecorate, ExternalAnnotationProvider externalAnnotationProvider) -
Method Summary
Modifier and TypeMethodDescriptionstatic IBinaryTypecreate(IBinaryType toDecorate, String basePath, String qualifiedBinaryTypeName, ZipFile zipFile) Possibly wrap the provided binary type in a ClassWithExternalAnnotations to which a fresh provider for external annotations is associated.enrichWithExternalAnnotationsFor(ITypeAnnotationWalker walker, Object member, LookupEnvironment environment) Answer a type annotation walker that takes into consideration also external annotations.static ExternalAnnotationProviderexternalAnnotationProvider(String basePath, String qualifiedBinaryTypeName, ZipFile zipFile) Creates an external annotation provider for external annotations using the given basePath, which is either a directory holding .eea text files, or a zip file of entries of the same format.Answer the runtime visible and invisible annotations for this type or null if none.static ZipFilegetAnnotationZipFile(String basePath, ExternalAnnotationDecorator.ZipFileProducer producer) Returns the zip file containing external annotations, if any.char[]Answer the enclosing method (including method selector and method descriptor), or null if none.char[]Answer the resolved name of the enclosing type in the class file format as specified in section 4.2 of the Java 2 VM spec or null if the receiver is a top level type.Answer whether a provider for external annotations is associated with this binary type.Answer the receiver's fields or null if the array is empty.char[]Answer the file name which defines the type.char[]Answer the receiver's ClassSignature, which describes the type parameters, super class, and super interfaces as specified in section "4.7.9.1 Signatures" of the Java SE 8 VM spec.char[][]Answer the resolved names of the receiver's interfaces in the class file format as specified in section 4.2 of the Java 2 VM spec or null if the array is empty.Answer the receiver's nested types or null if the array is empty.Answer the receiver's methods or null if the array is empty.char[][][]Answer the list of missing type names which were referenced from the problem classfile.intAnswer an int whose bits are set according the access constants defined by the VM spec.char[]Answer the module to which this type belongs.char[]getName()Answer the resolved name of the type in the class file format as specified in section 4.2 of the Java 2 VM spec.char[][]Answer the unresolved names of the receiver's permitted subtypes in the class file format as specified in section 4.2 of the Java 2 VM spec or null if the array is empty.Answer the receiver's record components or null if the array is empty.char[]Answer the simple name of the type in the class file.char[]Answer the resolved name of the receiver's superclass in the class file format as specified in section 4.2 of the Java 2 VM spec or null if it does not have one.longAnswer the tagbits set according to the bits for annotations.Answer the runtime visible and invisible type annotations for this type or null if none.getURI()booleanAnswer true if the receiver is an anonymous class.booleanAnswer whether the receiver contains the resolved binary form or the unresolved source form of the type.booleanisLocal()Answer true if the receiver is a local class.booleanisMember()Answer true if the receiver is a member class.booleanisRecord()Answer true if the receiver is a record.char[]Answer the source file attribute, or null if none.
-
Constructor Details
-
ExternalAnnotationDecorator
public ExternalAnnotationDecorator(IBinaryType toDecorate, ExternalAnnotationProvider externalAnnotationProvider) -
ExternalAnnotationDecorator
-
-
Method Details
-
getFileName
public char[] getFileName()Description copied from interface:IDependentAnswer the file name which defines the type. The path part (optional) must be separated from the actual file proper name by a separator suitable for the type (java.io.File.separator for example), e.g. "c:\\source\\com\\p\\X.java" or "/com/p/Y.java". The path to the zip or jar file (optional) must be separated from the actual path part by JAR_FILE_ENTRY_SEPARATOR, e.g. "c:\\lib\\some.jar|/com/p/X.class" or "/lib/some.zip|/com/q/Y.class". The proper file name includes the suffix extension (e.g. ".java") e.g. "c:/org/eclipse/jdt/internal/compileri/env/IDependent.java" Return null if no file defines the type.- Specified by:
getFileNamein interfaceIDependent
-
isBinaryType
public boolean isBinaryType()Description copied from interface:IGenericTypeAnswer whether the receiver contains the resolved binary form or the unresolved source form of the type.- Specified by:
isBinaryTypein interfaceIGenericType
-
getAnnotations
Description copied from interface:IBinaryTypeAnswer the runtime visible and invisible annotations for this type or null if none.- Specified by:
getAnnotationsin interfaceIBinaryType
-
getTypeAnnotations
Description copied from interface:IBinaryTypeAnswer the runtime visible and invisible type annotations for this type or null if none.- Specified by:
getTypeAnnotationsin interfaceIBinaryType
-
getEnclosingMethod
public char[] getEnclosingMethod()Description copied from interface:IBinaryTypeAnswer the enclosing method (including method selector and method descriptor), or null if none. For example, "foo()Ljava/lang/Object;V"- Specified by:
getEnclosingMethodin interfaceIBinaryType
-
getEnclosingTypeName
public char[] getEnclosingTypeName()Description copied from interface:IBinaryTypeAnswer the resolved name of the enclosing type in the class file format as specified in section 4.2 of the Java 2 VM spec or null if the receiver is a top level type. For example, java.lang.String is java/lang/String.- Specified by:
getEnclosingTypeNamein interfaceIBinaryType
-
getFields
Description copied from interface:IBinaryTypeAnswer the receiver's fields or null if the array is empty.- Specified by:
getFieldsin interfaceIBinaryType
-
getRecordComponents
Description copied from interface:IBinaryTypeAnswer the receiver's record components or null if the array is empty.- Specified by:
getRecordComponentsin interfaceIBinaryType
-
getGenericSignature
public char[] getGenericSignature()Description copied from interface:IBinaryTypeAnswer the receiver's ClassSignature, which describes the type parameters, super class, and super interfaces as specified in section "4.7.9.1 Signatures" of the Java SE 8 VM spec. Returns null if none.- Specified by:
getGenericSignaturein interfaceIBinaryType- Returns:
- the receiver's signature, null if none
-
getInterfaceNames
public char[][] getInterfaceNames()Description copied from interface:IBinaryTypeAnswer the resolved names of the receiver's interfaces in the class file format as specified in section 4.2 of the Java 2 VM spec or null if the array is empty. For example, java.lang.String is java/lang/String.- Specified by:
getInterfaceNamesin interfaceIBinaryType
-
getMemberTypes
Description copied from interface:IBinaryTypeAnswer the receiver's nested types or null if the array is empty. This nested type info is extracted from the inner class attributes. Ask the name environment to find a member type using its compound name.- Specified by:
getMemberTypesin interfaceIBinaryType
-
getMethods
Description copied from interface:IBinaryTypeAnswer the receiver's methods or null if the array is empty.- Specified by:
getMethodsin interfaceIBinaryType
-
getMissingTypeNames
public char[][][] getMissingTypeNames()Description copied from interface:IBinaryTypeAnswer the list of missing type names which were referenced from the problem classfile. This list is encoded via an extra attribute.- Specified by:
getMissingTypeNamesin interfaceIBinaryType
-
getName
public char[] getName()Description copied from interface:IBinaryTypeAnswer the resolved name of the type in the class file format as specified in section 4.2 of the Java 2 VM spec. For example, java.lang.String is java/lang/String.- Specified by:
getNamein interfaceIBinaryType
-
getSourceName
public char[] getSourceName()Description copied from interface:IBinaryTypeAnswer the simple name of the type in the class file. For member A$B, will answer B. For anonymous will answer null.- Specified by:
getSourceNamein interfaceIBinaryType
-
getSuperclassName
public char[] getSuperclassName()Description copied from interface:IBinaryTypeAnswer the resolved name of the receiver's superclass in the class file format as specified in section 4.2 of the Java 2 VM spec or null if it does not have one. For example, java.lang.String is java/lang/String.- Specified by:
getSuperclassNamein interfaceIBinaryType
-
getPermittedSubtypesNames
public char[][] getPermittedSubtypesNames()Description copied from interface:IBinaryTypeAnswer the unresolved names of the receiver's permitted subtypes in the class file format as specified in section 4.2 of the Java 2 VM spec or null if the array is empty. For example, java.lang.String is java/lang/String.- Specified by:
getPermittedSubtypesNamesin interfaceIBinaryType
-
getTagBits
public long getTagBits()Description copied from interface:IBinaryTypeAnswer the tagbits set according to the bits for annotations.- Specified by:
getTagBitsin interfaceIBinaryType
-
isAnonymous
public boolean isAnonymous()Description copied from interface:IBinaryTypeAnswer true if the receiver is an anonymous class. false otherwise- Specified by:
isAnonymousin interfaceIBinaryType
-
isLocal
public boolean isLocal()Description copied from interface:IBinaryTypeAnswer true if the receiver is a local class. false otherwise- Specified by:
isLocalin interfaceIBinaryType
-
isRecord
public boolean isRecord()Description copied from interface:IBinaryTypeAnswer true if the receiver is a record. false otherwise- Specified by:
isRecordin interfaceIBinaryType
-
isMember
public boolean isMember()Description copied from interface:IBinaryTypeAnswer true if the receiver is a member class. false otherwise- Specified by:
isMemberin interfaceIBinaryType
-
sourceFileName
public char[] sourceFileName()Description copied from interface:IBinaryTypeAnswer the source file attribute, or null if none. For example, "String.java"- Specified by:
sourceFileNamein interfaceIBinaryType
-
getModifiers
public int getModifiers()Description copied from interface:IGenericTypeAnswer an int whose bits are set according the access constants defined by the VM spec. NOTE 1: We have added AccDeprecated and AccSynthetic. NOTE 2: If the receiver represents a member type, the modifiers are extracted from its inner class attributes.- Specified by:
getModifiersin interfaceIGenericType
-
getModule
public char[] getModule()Description copied from interface:IBinaryTypeAnswer the module to which this type belongs.nullif the type is associated to the unnamed module.- Specified by:
getModulein interfaceIBinaryType- Returns:
- the module name or
null
-
getAnnotationZipFile
public static ZipFile getAnnotationZipFile(String basePath, ExternalAnnotationDecorator.ZipFileProducer producer) throws IOException Returns the zip file containing external annotations, if any. Returns null if there are no external annotations or if the basePath refers to a directory.- Parameters:
basePath- resolved filesystem path of either directory or zip fileproducer- an optional helper to produce the zipFile when needed.- Returns:
- the client provided zip file; or else a fresh new zip file, to let clients cache it, if desired; or null to signal that basePath is not a zip file, but a directory.
- Throws:
IOException- any unexpected errors during file access. File not found while accessing an individual file if basePath is a directory is expected, and simply answered with null. If basePath is neither a directory nor a zip file, this is unexpected.
-
externalAnnotationProvider
public static ExternalAnnotationProvider externalAnnotationProvider(String basePath, String qualifiedBinaryTypeName, ZipFile zipFile) throws IOException Creates an external annotation provider for external annotations using the given basePath, which is either a directory holding .eea text files, or a zip file of entries of the same format.- Parameters:
basePath- resolved filesystem path of either directory or zip filequalifiedBinaryTypeName- slash-separated type namezipFile- an existing zip file for the same basePath, or null.- Returns:
- the annotation provider or null if there are no external annotations.
- Throws:
IOException- any unexpected errors during file access. File not found while accessing an individual file if basePath is a directory is expected, and simply answered with null. If basePath is neither a directory nor a zip file, this is unexpected.
-
create
public static IBinaryType create(IBinaryType toDecorate, String basePath, String qualifiedBinaryTypeName, ZipFile zipFile) throws IOException Possibly wrap the provided binary type in a ClassWithExternalAnnotations to which a fresh provider for external annotations is associated. This provider is constructed using the given basePath, which is either a directory holding .eea text files, or a zip file of entries of the same format. If no such provider could be constructed, then the original binary type is returned unchanged.- Parameters:
toDecorate- the binary type to wrap, if neededbasePath- resolved filesystem path of either directory or zip filequalifiedBinaryTypeName- slash-separated type namezipFile- an existing zip file for the same basePath, or null.- Returns:
- either a fresh ClassWithExternalAnnotations or the original binary type unchanged.
- Throws:
IOException- any unexpected errors during file access. File not found while accessing an individual file if basePath is a directory is expected, and simply handled by not setting up an external annotation provider. If basePath is neither a directory nor a zip file, this is unexpected, resulting in an exception.
-
enrichWithExternalAnnotationsFor
public ITypeAnnotationWalker enrichWithExternalAnnotationsFor(ITypeAnnotationWalker walker, Object member, LookupEnvironment environment) Description copied from interface:IBinaryTypeAnswer a type annotation walker that takes into consideration also external annotations.- Specified by:
enrichWithExternalAnnotationsForin interfaceIBinaryType- Parameters:
walker- previous walker, may be empty, otherwise it will be returned unchangedmember- if either a IBinaryField or a IBinaryMethod is provided, answer a walker specifically for that memberenvironment- for use by the walker- Returns:
- either a matching walker with data from external annotations or the walker provided via argument 'walker'.
-
getExternalAnnotationStatus
Description copied from interface:IBinaryTypeAnswer whether a provider for external annotations is associated with this binary type.- Specified by:
getExternalAnnotationStatusin interfaceIBinaryType
-
getURI
- Specified by:
getURIin interfaceIBinaryType
-