src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacRoundEnvironment.java
author darcy
Wed, 25 Jul 2018 12:32:59 -0700
changeset 51194 766df90d6fb5
parent 47216 71c04702a3d5
child 52404 32408804acd4
permissions -rw-r--r--
8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith Reviewed-by: vromero, jlahoda
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
     2
 * Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3151
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3151
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3151
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3151
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3151
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javac.processing;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.lang.annotation.Annotation;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import javax.annotation.processing.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import javax.lang.model.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    34
import com.sun.tools.javac.util.DefinedBy;
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    35
import com.sun.tools.javac.util.DefinedBy.Api;
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    36
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Object providing state about a prior round of annotation processing.
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 *
3151
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
    40
 * <p>The methods in this class do not take type annotations into account,
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
    41
 * as target types, not java elements.
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
    42
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5841
diff changeset
    43
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * If you write code that depends on this, you do so at your own risk.
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 * deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
public class JavacRoundEnvironment implements RoundEnvironment {
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    // Default equals and hashCode methods are okay.
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    private final boolean processingOver;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    private final boolean errorRaised;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    private final ProcessingEnvironment processingEnv;
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
    54
    private final Elements eltUtils;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    // Caller must pass in an immutable set
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    private final Set<? extends Element> rootElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    JavacRoundEnvironment(boolean processingOver,
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
                          boolean errorRaised,
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
                          Set<? extends Element> rootElements,
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
                          ProcessingEnvironment processingEnv) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
        this.processingOver = processingOver;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        this.errorRaised = errorRaised;
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        this.rootElements = rootElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        this.processingEnv = processingEnv;
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
    67
        this.eltUtils = processingEnv.getElementUtils();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        return String.format("[errorRaised=%b, rootElements=%s, processingOver=%b]",
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
                             errorRaised,
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
                             rootElements,
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
                             processingOver);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    77
    @DefinedBy(Api.ANNOTATION_PROCESSING)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    public boolean processingOver() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        return processingOver;
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * Returns {@code true} if an error was raised in the prior round
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     * of processing; returns {@code false} otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * @return {@code true} if an error was raised in the prior round
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     * of processing; returns {@code false} otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     */
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    89
    @DefinedBy(Api.ANNOTATION_PROCESSING)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    public boolean errorRaised() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        return errorRaised;
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * Returns the type elements specified by the prior round.
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     * @return the types elements specified by the prior round, or an
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * empty set if there were none
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     */
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   100
    @DefinedBy(Api.ANNOTATION_PROCESSING)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    public Set<? extends Element> getRootElements() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        return rootElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * Returns the elements annotated with the given annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     * Only type elements <i>included</i> in this round of annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     * processing, or declarations of members, parameters, or type
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * parameters declared within those, are returned.  Included type
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 10192
diff changeset
   110
     * elements are {@linkplain #getRootElements specified
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     * types} and any types nested within them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * @param a  annotation type being requested
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     * @return the elements annotated with the given annotation type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     * or an empty set if there are none
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     */
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   117
    @DefinedBy(Api.ANNOTATION_PROCESSING)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    public Set<? extends Element> getElementsAnnotatedWith(TypeElement a) {
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   119
        throwIfNotAnnotation(a);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   120
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        Set<Element> result = Collections.emptySet();
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 23795
diff changeset
   122
        ElementScanner9<Set<Element>, TypeElement> scanner =
22441
05b907a2f359 8030049: RoundEnvironment.getElementsAnnotatedWith receives wrong elements
jlahoda
parents: 22163
diff changeset
   123
            new AnnotationSetScanner(result);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        for (Element element : rootElements)
22441
05b907a2f359 8030049: RoundEnvironment.getElementsAnnotatedWith receives wrong elements
jlahoda
parents: 22163
diff changeset
   126
            result = scanner.scan(element, a);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   131
    @DefinedBy(Api.ANNOTATION_PROCESSING)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   132
    public Set<? extends Element> getElementsAnnotatedWithAny(TypeElement... annotations) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   133
        // Don't bother to special-case annotations.length == 1 as
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   134
        // return getElementsAnnotatedWith(annotations[0]);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   135
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   136
        Set<TypeElement> annotationSet = new LinkedHashSet<>(annotations.length);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   137
        for (TypeElement annotation : annotations) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   138
            throwIfNotAnnotation(annotation);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   139
            annotationSet.add(annotation);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   140
        }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   141
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   142
        Set<Element> result = Collections.emptySet();
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   143
        ElementScanner9<Set<Element>, Set<TypeElement>> scanner =
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   144
            new AnnotationSetMultiScanner(result);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   145
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   146
        for (Element element : rootElements)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   147
            result = scanner.scan(element, annotationSet);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   148
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   149
        return result;
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   150
    }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   151
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    // Could be written as a local class inside getElementsAnnotatedWith
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    private class AnnotationSetScanner extends
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   154
        ElementScanningIncludingTypeParameters<Set<Element>, TypeElement> {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        // Insertion-order preserving set
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   156
        private Set<Element> annotatedElements = new LinkedHashSet<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
22441
05b907a2f359 8030049: RoundEnvironment.getElementsAnnotatedWith receives wrong elements
jlahoda
parents: 22163
diff changeset
   158
        AnnotationSetScanner(Set<Element> defaultSet) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            super(defaultSet);
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   162
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   163
        public Set<Element> scan(Element e, TypeElement annotation) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   164
            for (AnnotationMirror annotMirror :  eltUtils.getAllAnnotationMirrors(e)) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   165
                if (annotation.equals(mirrorAsElement(annotMirror))) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   166
                    annotatedElements.add(e);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   167
                    break;
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   168
                }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   169
            }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   170
            e.accept(this, annotation);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   171
            return annotatedElements;
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   172
        }
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   173
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   174
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   175
        public Set<Element> visitModule(ModuleElement e, TypeElement annotation) {
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   176
            // Do not scan a module
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   177
            return annotatedElements;
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   178
        }
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   179
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   180
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   181
        public Set<Element> visitPackage(PackageElement e, TypeElement annotation) {
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   182
            // Do not scan a package
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   183
            return annotatedElements;
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   184
        }
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   185
    }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   186
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   187
    // Could be written as a local class inside getElementsAnnotatedWithAny
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   188
    private class AnnotationSetMultiScanner extends
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   189
        ElementScanningIncludingTypeParameters<Set<Element>, Set<TypeElement>> {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   190
        // Insertion-order preserving set
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   191
        private Set<Element> annotatedElements = new LinkedHashSet<>();
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   192
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   193
        AnnotationSetMultiScanner(Set<Element> defaultSet) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   194
            super(defaultSet);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   195
        }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   196
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   197
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   198
        public Set<Element> scan(Element e, Set<TypeElement> annotations) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   199
            for (AnnotationMirror annotMirror : eltUtils.getAllAnnotationMirrors(e)) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   200
                if (annotations.contains(mirrorAsElement(annotMirror))) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   201
                    annotatedElements.add(e);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   202
                    break;
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   203
                }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   204
            }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   205
            e.accept(this, annotations);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   206
            return annotatedElements;
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   207
        }
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   208
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   209
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   210
        public Set<Element> visitModule(ModuleElement e, Set<TypeElement> annotations) {
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   211
            // Do not scan a module
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   212
            return annotatedElements;
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   213
        }
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   214
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   215
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   216
        public Set<Element> visitPackage(PackageElement e, Set<TypeElement> annotations) {
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   217
            // Do not scan a package
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   218
            return annotatedElements;
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   219
        }
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   220
    }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   221
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   222
    private static abstract class ElementScanningIncludingTypeParameters<R, P>
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   223
        extends ElementScanner9<R, P> {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   224
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   225
        protected ElementScanningIncludingTypeParameters(R defaultValue) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   226
            super(defaultValue);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   227
        }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   228
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   229
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   230
        public R visitType(TypeElement e, P p) {
18669
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   231
            // Type parameters are not considered to be enclosed by a type
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   232
            scan(e.getTypeParameters(), p);
23795
62509b72088e 8038080: annotation processors don't visit declaration parameter annotations
jfranck
parents: 22449
diff changeset
   233
            return super.visitType(e, p);
18669
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   234
        }
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   235
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   236
        @Override @DefinedBy(Api.LANGUAGE_MODEL)
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   237
        public R visitExecutable(ExecutableElement e, P p) {
18669
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   238
            // Type parameters are not considered to be enclosed by an executable
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   239
            scan(e.getTypeParameters(), p);
23795
62509b72088e 8038080: annotation processors don't visit declaration parameter annotations
jfranck
parents: 22449
diff changeset
   240
            return super.visitExecutable(e, p);
18669
99572d59c916 7162089: Add support for repeating annotations to javax.annotation.processing
darcy
parents: 14259
diff changeset
   241
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    /**
31751
ec251536a004 8080880: some docs cleanup for langtools
avstepan
parents: 26266
diff changeset
   245
     * {@inheritDoc}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     */
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   247
    @DefinedBy(Api.ANNOTATION_PROCESSING)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    public Set<? extends Element> getElementsAnnotatedWith(Class<? extends Annotation> a) {
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   249
        throwIfNotAnnotation(a);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
        String name = a.getCanonicalName();
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   251
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        if (name == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
            return Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        else {
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   255
            TypeElement annotationType = annotationToElement(a);
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   256
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
            if (annotationType == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
                return Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
                return getElementsAnnotatedWith(annotationType);
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
    }
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   263
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   264
    @DefinedBy(Api.ANNOTATION_PROCESSING)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   265
    public Set<? extends Element> getElementsAnnotatedWithAny(Set<Class<? extends Annotation>> annotations) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   266
        List<TypeElement> annotationsAsElements = new ArrayList<>(annotations.size());
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   267
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   268
        for (Class<? extends Annotation> annotation : annotations) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   269
            throwIfNotAnnotation(annotation);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   270
            String name = annotation.getCanonicalName();
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   271
            if (name == null)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   272
                continue;
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   273
            annotationsAsElements.add(annotationToElement(annotation));
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   274
        }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   275
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   276
        return getElementsAnnotatedWithAny(annotationsAsElements.toArray(new TypeElement[0]));
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   277
    }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   278
51194
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   279
    private TypeElement annotationToElement(Class<? extends Annotation> annotation) {
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   280
        // First, try an element lookup based on the annotation's
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   281
        // canonical name. If that fails or is ambiguous, try a lookup
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   282
        // using a particular module, perhaps an unnamed one. This
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   283
        // offers more compatibility for compiling in single-module
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   284
        // mode where the runtime module of an annotation type may
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   285
        // differ from the single module being compiled.
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   286
        String name = annotation.getCanonicalName();
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   287
        TypeElement annotationElement = eltUtils.getTypeElement(name);
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   288
        if (annotationElement != null)
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   289
            return annotationElement;
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   290
        else {
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   291
            String moduleName = Objects.requireNonNullElse(annotation.getModule().getName(), "");
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   292
            return eltUtils.getTypeElement(eltUtils.getModuleElement(moduleName), name);
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   293
        }
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   294
    }
766df90d6fb5 8190886: package-info handling in RoundEnvironment.getElementsAnnotatedWith
darcy
parents: 47216
diff changeset
   295
38606
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   296
    private Element mirrorAsElement(AnnotationMirror annotationMirror) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   297
        return annotationMirror.getAnnotationType().asElement();
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   298
    }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   299
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   300
    private static final String NOT_AN_ANNOTATION_TYPE =
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   301
        "The argument does not represent an annotation type: ";
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   302
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   303
    private void throwIfNotAnnotation(Class<? extends Annotation> a) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   304
        if (!a.isAnnotation())
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   305
            throw new IllegalArgumentException(NOT_AN_ANNOTATION_TYPE + a);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   306
    }
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   307
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   308
    private void throwIfNotAnnotation(TypeElement a) {
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   309
        if (a.getKind() != ElementKind.ANNOTATION_TYPE)
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   310
            throw new IllegalArgumentException(NOT_AN_ANNOTATION_TYPE + a);
6b708cd90241 8032230: Enhance javax.a.p.RoundEnvironment after repeating annotations
darcy
parents: 31751
diff changeset
   311
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
}