langtools/src/share/classes/com/sun/tools/javac/code/Attribute.java
author briangoetz
Wed, 18 Dec 2013 16:05:18 -0500
changeset 22163 3651128c74eb
parent 21041 99f5e5e97425
child 23798 ca0f80391182
permissions -rw-r--r--
8030244: Update langtools to use Diamond Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
     2
 * Copyright (c) 2003, 2013, 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: 3149
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: 3149
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: 3149
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3149
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3149
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.code;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.LinkedHashMap;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.Map;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import javax.lang.model.element.AnnotationMirror;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import javax.lang.model.element.AnnotationValue;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import javax.lang.model.element.AnnotationValueVisitor;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import javax.lang.model.type.DeclaredType;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
/** An annotation value.
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    39
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    40
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
public abstract class Attribute implements AnnotationValue {
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    /** The type of the annotation element. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    public Type type;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    public Attribute(Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
        this.type = type;
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    public abstract void accept(Visitor v);
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    public Object getValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
        throw new UnsupportedOperationException();
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        throw new UnsupportedOperationException();
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
    63
    public boolean isSynthesized() {
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
    64
        return false;
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
    65
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21041
diff changeset
    67
    public TypeAnnotationPosition getPosition() { return null; }
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
    68
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    /** The value for an annotation element of primitive type or String. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    public static class Constant extends Attribute {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        public final Object value;
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
        public void accept(Visitor v) { v.visitConstant(this); }
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        public Constant(Type type, Object value) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            super(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            this.value = value;
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            return Constants.format(value, type);
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        public Object getValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
            return Constants.decode(value, type);
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
        public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
            if (value instanceof String)
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
                return v.visitString((String) value, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            if (value instanceof Integer) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
                int i = (Integer) value;
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 17578
diff changeset
    88
                switch (type.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
                case BOOLEAN:   return v.visitBoolean(i != 0, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
                case CHAR:      return v.visitChar((char) i, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
                case BYTE:      return v.visitByte((byte) i, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
                case SHORT:     return v.visitShort((short) i, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
                case INT:       return v.visitInt(i, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
            }
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 17578
diff changeset
    96
            switch (type.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
            case LONG:          return v.visitLong((Long) value, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
            case FLOAT:         return v.visitFloat((Float) value, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
            case DOUBLE:        return v.visitDouble((Double) value, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            throw new AssertionError("Bad annotation element value: " + value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    /** The value for an annotation element of type java.lang.Class,
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     *  represented as a ClassSymbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    public static class Class extends Attribute {
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   109
        public final Type classType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        public void accept(Visitor v) { v.visitClass(this); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
        public Class(Types types, Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
            super(makeClassType(types, type));
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   113
            this.classType = type;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        static Type makeClassType(Types types, Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
            Type arg = type.isPrimitive()
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
                ? types.boxedClass(type).type
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
                : types.erasure(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            return new Type.ClassType(types.syms.classType.getEnclosingType(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
                                      List.of(arg),
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
                                      types.syms.classType.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        public String toString() {
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   124
            return classType + ".class";
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        public Type getValue() {
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   127
            return classType;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   130
            return v.visitType(classType, p);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    /** A compound annotation element value, the type of which is an
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     *  attribute interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    public static class Compound extends Attribute implements AnnotationMirror {
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        /** The attributes values, as pairs.  Each pair contains a
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
         *  reference to the accessing method in the attribute interface
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
         *  and the value to be returned when that method is called to
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
         *  access this attribute.
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        public final List<Pair<MethodSymbol,Attribute>> values;
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   144
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   145
        private boolean synthesized = false;
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   146
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   147
        @Override
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   148
        public boolean isSynthesized() {
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   149
            return synthesized;
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   150
        }
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   151
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   152
        public void setSynthesized(boolean synthesized) {
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   153
            this.synthesized = synthesized;
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   154
        }
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14359
diff changeset
   155
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        public Compound(Type type,
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
                        List<Pair<MethodSymbol,Attribute>> values) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
            super(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            this.values = values;
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        public void accept(Visitor v) { v.visitCompound(this); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
         * Returns a string representation of this annotation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
         * String is of one of the forms:
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
         *     @com.example.foo(name1=val1, name2=val2)
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
         *     @com.example.foo(val)
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
         *     @com.example.foo
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
         * Omit parens for marker annotations, and omit "value=" when allowed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
            StringBuilder buf = new StringBuilder();
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            buf.append("@");
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            buf.append(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            int len = values.length();
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            if (len > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
                buf.append('(');
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
                boolean first = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
                for (Pair<MethodSymbol, Attribute> value : values) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
                    if (!first) buf.append(", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
                    first = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
                    Name name = value.fst.name;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 1206
diff changeset
   184
                    if (len > 1 || name != name.table.names.value) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
                        buf.append(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
                        buf.append('=');
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
                    buf.append(value.snd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
                buf.append(')');
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            return buf.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        public Attribute member(Name member) {
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   196
            Pair<MethodSymbol,Attribute> res = getElemPair(member);
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   197
            return res == null ? null : res.snd;
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   198
        }
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   199
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   200
        private Pair<MethodSymbol, Attribute> getElemPair(Name member) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            for (Pair<MethodSymbol,Attribute> pair : values)
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   202
                if (pair.fst.name == member) return pair;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        public Attribute.Compound getValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
            return v.visitAnnotation(this, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        public DeclaredType getAnnotationType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
            return (DeclaredType) type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   218
        @Override
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   219
        public TypeAnnotationPosition getPosition() {
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   220
            if (values.size() != 0) {
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   221
                Name valueName = values.head.fst.name.table.names.value;
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   222
                Pair<MethodSymbol, Attribute> res = getElemPair(valueName);
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   223
                    return res == null ? null : res.snd.getPosition();
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   224
            }
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   225
            return null;
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   226
        }
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   227
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        public Map<MethodSymbol, Attribute> getElementValues() {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 21041
diff changeset
   229
            Map<MethodSymbol, Attribute> valmap = new LinkedHashMap<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            for (Pair<MethodSymbol, Attribute> value : values)
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
                valmap.put(value.fst, value.snd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            return valmap;
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   236
    public static class TypeCompound extends Compound {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   237
        public TypeAnnotationPosition position;
21041
99f5e5e97425 8026564: import changes from type-annotations forest
jjg
parents: 21010
diff changeset
   238
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   239
        public TypeCompound(Compound compound,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   240
                TypeAnnotationPosition position) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   241
            this(compound.type, compound.values, position);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   242
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   243
        public TypeCompound(Type type,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   244
                List<Pair<MethodSymbol, Attribute>> values,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   245
                TypeAnnotationPosition position) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   246
            super(type, values);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   247
            this.position = position;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   248
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   249
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   250
        @Override
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   251
        public TypeAnnotationPosition getPosition() {
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   252
            if (hasUnknownPosition()) {
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   253
                position = super.getPosition();
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   254
            }
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   255
            return position;
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   256
        }
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   257
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   258
        public boolean hasUnknownPosition() {
21041
99f5e5e97425 8026564: import changes from type-annotations forest
jjg
parents: 21010
diff changeset
   259
            return position.type == TargetType.UNKNOWN;
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   260
        }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   261
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   262
        public boolean isContainerTypeCompound() {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   263
            if (isSynthesized() && values.size() == 1)
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   264
                return getFirstEmbeddedTC() != null;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   265
            return false;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   266
        }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   267
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   268
        private TypeCompound getFirstEmbeddedTC() {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   269
            if (values.size() == 1) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   270
                Pair<MethodSymbol, Attribute> val = values.get(0);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   271
                if (val.fst.getSimpleName().contentEquals("value")
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   272
                        && val.snd instanceof Array) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   273
                    Array arr = (Array) val.snd;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   274
                    if (arr.values.length != 0
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   275
                            && arr.values[0] instanceof Attribute.TypeCompound)
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   276
                        return (Attribute.TypeCompound) arr.values[0];
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   277
                }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   278
            }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   279
            return null;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   280
        }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   281
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   282
        public boolean tryFixPosition() {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   283
            if (!isContainerTypeCompound())
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   284
                return false;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   285
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   286
            TypeCompound from = getFirstEmbeddedTC();
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   287
            if (from != null && from.position != null &&
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   288
                    from.position.type != TargetType.UNKNOWN) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   289
                position = from.position;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   290
                return true;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   291
            }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   292
            return false;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   293
        }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   294
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   295
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
    /** The value for an annotation element of an array type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
    public static class Array extends Attribute {
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
        public final Attribute[] values;
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
        public Array(Type type, Attribute[] values) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            super(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
            this.values = values;
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
        }
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   304
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   305
        public Array(Type type, List<Attribute> values) {
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   306
            super(type);
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   307
            this.values = values.toArray(new Attribute[values.size()]);
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   308
        }
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 8032
diff changeset
   309
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
        public void accept(Visitor v) { v.visitArray(this); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
            StringBuilder buf = new StringBuilder();
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
            buf.append('{');
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            boolean first = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
            for (Attribute value : values) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                if (!first)
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
                    buf.append(", ");
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
                first = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
                buf.append(value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            buf.append('}');
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
            return buf.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
        public List<Attribute> getValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            return List.from(values);
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
        public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
            return v.visitArray(getValue(), p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
        }
21010
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   330
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   331
        @Override
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   332
        public TypeAnnotationPosition getPosition() {
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   333
            if (values.length != 0)
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   334
                return values[0].getPosition();
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   335
            else
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   336
                return null;
5ffe0d8a5e24 8008762: Type annotation on inner class in anonymous class show up as regular type annotations
emc
parents: 19507
diff changeset
   337
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
    /** The value for an annotation element of an enum type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
    public static class Enum extends Attribute {
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        public VarSymbol value;
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
        public Enum(Type type, VarSymbol value) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
            super(type);
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   346
            this.value = Assert.checkNonNull(value);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
        public void accept(Visitor v) { v.visitEnum(this); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
            return value.enclClass() + "." + value;     // qualified name
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
        public VarSymbol getValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
            return value;
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
        public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
            return v.visitEnumConstant(value, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
    public static class Error extends Attribute {
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
        public Error(Type type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
            super(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
        public void accept(Visitor v) { v.visitError(this); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
            return "<error>";
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
        public String getValue() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
            return toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
        public <R, P> R accept(AnnotationValueVisitor<R, P> v, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
            return v.visitString(toString(), p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
19507
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   376
    public static class UnresolvedClass extends Error {
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   377
        public Type classType;
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   378
        public UnresolvedClass(Type type, Type classType) {
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   379
            super(type);
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   380
            this.classType = classType;
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   381
        }
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   382
    }
323f001d6be1 8019243: AnnotationTypeMismatchException instead of MirroredTypeException
jfranck
parents: 18646
diff changeset
   383
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
    /** A visitor type for dynamic dispatch on the kind of attribute value. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
    public static interface Visitor {
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
        void visitConstant(Attribute.Constant value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
        void visitClass(Attribute.Class clazz);
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
        void visitCompound(Attribute.Compound compound);
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
        void visitArray(Attribute.Array array);
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
        void visitEnum(Attribute.Enum e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
        void visitError(Attribute.Error e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
    }
6575
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   393
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   394
    /** A mirror of java.lang.annotation.RetentionPolicy. */
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   395
    public static enum RetentionPolicy {
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   396
        SOURCE,
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   397
        CLASS,
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   398
        RUNTIME
ae1798028008 6960424: new option -Xpkginfo for better control of when package-info.class is generated
jjg
parents: 5847
diff changeset
   399
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
}