langtools/src/share/classes/com/sun/tools/javac/processing/JavacRoundEnvironment.java
author jjg
Thu, 10 Jun 2010 16:08:01 -0700
changeset 5847 1908176fd6e3
parent 5841 7a8448425bb7
child 7681 1f0819a3341f
permissions -rw-r--r--
6944312: Potential rebranding issues in openjdk/langtools repository sources Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3151
diff changeset
     2
 * Copyright (c) 2005, 2009, 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 com.sun.tools.javac.tree.JCTree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import javax.annotation.processing.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import javax.lang.model.type.DeclaredType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import javax.lang.model.type.TypeMirror;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import javax.lang.model.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
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;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    // Caller must pass in an immutable set
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    private final Set<? extends Element> rootElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    JavacRoundEnvironment(boolean processingOver,
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
                          boolean errorRaised,
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
                          Set<? extends Element> rootElements,
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
                          ProcessingEnvironment processingEnv) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        this.processingOver = processingOver;
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
        this.errorRaised = errorRaised;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        this.rootElements = rootElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        this.processingEnv = processingEnv;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
        return String.format("[errorRaised=%b, rootElements=%s, processingOver=%b]",
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
                             errorRaised,
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
                             rootElements,
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
                             processingOver);
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    public boolean processingOver() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        return processingOver;
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     * Returns {@code true} if an error was raised in the prior round
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
     * of processing; returns {@code false} otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * @return {@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
    public boolean errorRaised() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        return errorRaised;
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * Returns the type elements specified by the prior round.
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     * @return the types elements specified by the prior round, or an
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     * empty set if there were none
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    public Set<? extends Element> getRootElements() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        return rootElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    private static final String NOT_AN_ANNOTATION_TYPE =
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        "The argument does not represent an annotation type: ";
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * Returns the elements annotated with the given annotation type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * Only type elements <i>included</i> in this round of annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * processing, or declarations of members, parameters, or type
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     * parameters declared within those, are returned.  Included type
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     * elements are {@linkplain #getSpecifiedTypeElements specified
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * types} and any types nested within them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     * @param a  annotation type being requested
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     * @return the elements annotated with the given annotation type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * or an empty set if there are none
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    public Set<? extends Element> getElementsAnnotatedWith(TypeElement a) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
        Set<Element> result = Collections.emptySet();
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 1264
diff changeset
   117
        Types typeUtil = processingEnv.getTypeUtils();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        if (a.getKind() != ElementKind.ANNOTATION_TYPE)
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            throw new IllegalArgumentException(NOT_AN_ANNOTATION_TYPE + a);
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        DeclaredType annotationTypeElement;
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
        TypeMirror tm = a.asType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        if ( tm instanceof DeclaredType )
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            annotationTypeElement = (DeclaredType) a.asType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
            throw new AssertionError("Bad implementation type for " + tm);
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
   128
        ElementScanner7<Set<Element>, DeclaredType> scanner =
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 1264
diff changeset
   129
            new AnnotationSetScanner(result, typeUtil);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        for (Element element : rootElements)
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            result = scanner.scan(element, annotationTypeElement);
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    // Could be written as a local class inside getElementsAnnotatedWith
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    private class AnnotationSetScanner extends
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
   139
        ElementScanner7<Set<Element>, DeclaredType> {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
        // Insertion-order preserving set
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        Set<Element> annotatedElements = new LinkedHashSet<Element>();
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 1264
diff changeset
   142
        Types typeUtil;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 1264
diff changeset
   144
        AnnotationSetScanner(Set<Element> defaultSet, Types typeUtil) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
            super(defaultSet);
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 1264
diff changeset
   146
            this.typeUtil = typeUtil;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        public Set<Element> scan(Element e, DeclaredType p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
            java.util.List<? extends AnnotationMirror> annotationMirrors =
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
                processingEnv.getElementUtils().getAllAnnotationMirrors(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
            for (AnnotationMirror annotationMirror : annotationMirrors) {
2215
dd8663d971d1 6498938: Faulty comparison of TypeMirror objects in getElementsAnnotatedWith implementation
darcy
parents: 1264
diff changeset
   154
                if (typeUtil.isSameType(annotationMirror.getAnnotationType(), p))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
                    annotatedElements.add(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
            e.accept(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
            return annotatedElements;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     * {@inheritdoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    public Set<? extends Element> getElementsAnnotatedWith(Class<? extends Annotation> a) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        if (!a.isAnnotation())
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            throw new IllegalArgumentException(NOT_AN_ANNOTATION_TYPE + a);
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
        String name = a.getCanonicalName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
        if (name == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
            return Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            TypeElement annotationType = processingEnv.getElementUtils().getTypeElement(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            if (annotationType == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
                return Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
                return getElementsAnnotatedWith(annotationType);
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
}