use of javax.lang.model.element.TypeElement in project buck by facebook.
the class MoreElements method findAnnotation.
@Nullable
private static AnnotationMirror findAnnotation(CharSequence name, Element element) {
for (AnnotationMirror annotationMirror : element.getAnnotationMirrors()) {
DeclaredType annotationType = annotationMirror.getAnnotationType();
TypeElement annotationTypeElement = (TypeElement) annotationType.asElement();
if (annotationTypeElement.getQualifiedName().contentEquals(name)) {
return annotationMirror;
}
}
return null;
}
use of javax.lang.model.element.TypeElement in project buck by facebook.
the class TypeElementsReader method addTypeElements.
private void addTypeElements(Element rootElement, Map<Path, TypeElement> typeElements) {
if (!rootElement.getKind().isClass() && !rootElement.getKind().isInterface()) {
return;
}
TypeElement typeElement = (TypeElement) rootElement;
typeElements.put(getRelativePath(typeElement), typeElement);
for (Element enclosed : typeElement.getEnclosedElements()) {
addTypeElements(enclosed, typeElements);
}
}
use of javax.lang.model.element.TypeElement in project buck by facebook.
the class TypeElementsReader method visitClass.
@Override
public void visitClass(Path relativePath, ClassVisitor cv) throws IOException {
TypeElement typeElement = Preconditions.checkNotNull(allTypes.get().get(relativePath));
new ClassVisitorDriverFromElement(targetVersion, elements).driveVisitor(typeElement, cv);
}
use of javax.lang.model.element.TypeElement in project buck by facebook.
the class InterfaceValidator method validate.
public void validate(List<? extends CompilationUnitTree> compilationUnits) {
try (BuckTracing.TraceSection trace = BUCK_TRACING.traceSection("buck.abi.validate")) {
new InterfaceTypeAndConstantReferenceFinder(trees, new InterfaceTypeAndConstantReferenceFinder.Listener() {
private final Set<Element> importedTypes = new HashSet<>();
@Override
public void onTypeImported(TypeElement type) {
importedTypes.add(type);
}
@Override
public void onTypeReferenceFound(TypeElement referencedType, TreePath path, Element enclosingElement) {
PackageElement enclosingPackage = getPackageElement(enclosingElement);
if (typeWillBeAvailable(referencedType) || referenceIsLegalForMissingTypes(path, enclosingPackage, referencedType)) {
// All good!
return;
}
String minimalQualifiedName = findMinimalQualifiedName(path, enclosingPackage, referencedType);
// TODO(jkeljo): Clearer message
trees.printMessage(messageKind, String.format("Must qualify the name: %s", minimalQualifiedName), path.getLeaf(), path.getCompilationUnit());
}
@Override
public void onConstantReferenceFound(VariableElement constant, TreePath path, Element enclosingElement) {
TypeElement constantEnclosingType = (TypeElement) constant.getEnclosingElement();
if (typeWillBeAvailable(constantEnclosingType)) {
// All good!
return;
}
// TODO(jkeljo): Clearer message
trees.printMessage(messageKind, String.format("Must inline the constant value: %s", constant.getConstantValue()), path.getLeaf(), path.getCompilationUnit());
}
private boolean typeWillBeAvailable(TypeElement type) {
return isCompiledInCurrentRun(type) || isOnBootClasspath(type);
}
private boolean isCompiledInCurrentRun(TypeElement typeElement) {
return trees.getPath(typeElement) != null;
}
private boolean isOnBootClasspath(TypeElement typeElement) {
return bootClasspathOracle.isOnBootClasspath(elements.getBinaryName(typeElement).toString());
}
private boolean referenceIsLegalForMissingTypes(TreePath path, PackageElement enclosingPackage, TypeElement referencedTypeElement) {
return isImported(referencedTypeElement) || isTopLevelTypeInPackage(referencedTypeElement, enclosingPackage) || isFullyQualified(path, referencedTypeElement);
}
private boolean isImported(TypeElement referencedTypeElement) {
return importedTypes.contains(referencedTypeElement);
}
private boolean isTopLevelTypeInPackage(TypeElement referencedTypeElement, PackageElement enclosingPackage) {
return enclosingPackage == referencedTypeElement.getEnclosingElement();
}
private boolean isFullyQualified(TreePath path, TypeElement referencedTypeElement) {
return referencedTypeElement.getQualifiedName().contentEquals(TreeBackedTrees.treeToName(path.getLeaf()));
}
private String findMinimalQualifiedName(TreePath path, PackageElement enclosingPackage, TypeElement typeElement) {
List<QualifiedNameable> enclosingElements = new ArrayList<>();
QualifiedNameable walker = typeElement;
while (walker.getKind() != ElementKind.PACKAGE && !referenceIsLegalForMissingTypes(path, enclosingPackage, (TypeElement) walker)) {
enclosingElements.add(walker);
walker = (QualifiedNameable) walker.getEnclosingElement();
}
enclosingElements.add(walker);
StringBuilder resultBuilder = new StringBuilder();
for (int i = enclosingElements.size() - 1; i >= 0; i--) {
QualifiedNameable element = enclosingElements.get(i);
if (element.getKind() == ElementKind.PACKAGE) {
resultBuilder.append(element.getQualifiedName());
} else {
resultBuilder.append(element.getSimpleName());
}
if (i > 0) {
resultBuilder.append(".");
}
}
return resultBuilder.toString();
}
}).findReferences(compilationUnits);
}
}
use of javax.lang.model.element.TypeElement in project buck by facebook.
the class MoreElements method isSourceRetention.
public static boolean isSourceRetention(AnnotationMirror annotation) {
DeclaredType annotationType = annotation.getAnnotationType();
TypeElement annotationTypeElement = (TypeElement) annotationType.asElement();
AnnotationMirror retentionAnnotation = findAnnotation("java.lang.annotation.Retention", annotationTypeElement);
if (retentionAnnotation == null) {
return false;
}
VariableElement retentionPolicy = (VariableElement) Preconditions.checkNotNull(findAnnotationValue(retentionAnnotation, "value"));
return retentionPolicy.getSimpleName().contentEquals("SOURCE");
}
Aggregations