langtools/src/share/classes/com/sun/tools/javac/model/JavacTypes.java
author briangoetz
Wed, 18 Dec 2013 16:05:18 -0500
changeset 22163 3651128c74eb
parent 20252 fae5c47ba7a4
child 23810 b92eb80925f0
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: 14952
diff changeset
     2
 * Copyright (c) 2005, 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: 10
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: 10
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: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
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.model;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
    28
import java.util.Collections;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
    29
import java.util.EnumSet;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
    30
import java.util.LinkedHashSet;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.Set;
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
    33
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import javax.lang.model.type.*;
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
    36
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import com.sun.tools.javac.code.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * Utility methods for operating on types.
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    44
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * If you write code that depends on this, you do so at your own
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 * risk.  This code and its internal interfaces are subject to change
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * or deletion without notice.</b></p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
public class JavacTypes implements javax.lang.model.util.Types {
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    private Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    private Types types;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    public static JavacTypes instance(Context context) {
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    55
        JavacTypes instance = context.get(JavacTypes.class);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    56
        if (instance == null)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
            instance = new JavacTypes(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
     * Public for use only by JavacProcessingEnvironment
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     */
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    64
    protected JavacTypes(Context context) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        setContext(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
     * Use a new context.  May be called from outside to update
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     * internal state for a new annotation-processing round.
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    public void setContext(Context context) {
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    73
        context.put(JavacTypes.class, this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        types = Types.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    public Element asElement(TypeMirror t) {
9599
0996df19ea87 7029150: Project Coin: present union types from the tree API through to javax.lang.model
jjg
parents: 8842
diff changeset
    79
        switch (t.getKind()) {
0996df19ea87 7029150: Project Coin: present union types from the tree API through to javax.lang.model
jjg
parents: 8842
diff changeset
    80
            case DECLARED:
14725
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 9599
diff changeset
    81
            case INTERSECTION:
9599
0996df19ea87 7029150: Project Coin: present union types from the tree API through to javax.lang.model
jjg
parents: 8842
diff changeset
    82
            case ERROR:
0996df19ea87 7029150: Project Coin: present union types from the tree API through to javax.lang.model
jjg
parents: 8842
diff changeset
    83
            case TYPEVAR:
0996df19ea87 7029150: Project Coin: present union types from the tree API through to javax.lang.model
jjg
parents: 8842
diff changeset
    84
                Type type = cast(Type.class, t);
8842
d532916921b7 7026414: Types.asElement() returns null for ErrorType
jjg
parents: 7681
diff changeset
    85
                return type.asElement();
d532916921b7 7026414: Types.asElement() returns null for ErrorType
jjg
parents: 7681
diff changeset
    86
            default:
d532916921b7 7026414: Types.asElement() returns null for ErrorType
jjg
parents: 7681
diff changeset
    87
                return null;
d532916921b7 7026414: Types.asElement() returns null for ErrorType
jjg
parents: 7681
diff changeset
    88
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    public boolean isSameType(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        return types.isSameType((Type) t1, (Type) t2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    public boolean isSubtype(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        validateTypeNotIn(t1, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        validateTypeNotIn(t2, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        return types.isSubtype((Type) t1, (Type) t2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    public boolean isAssignable(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        validateTypeNotIn(t1, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        validateTypeNotIn(t2, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        return types.isAssignable((Type) t1, (Type) t2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    public boolean contains(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
        validateTypeNotIn(t1, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        validateTypeNotIn(t2, EXEC_OR_PKG);
6593
4d13b5b812ef 6981185: com.sun.tools.model.JavacTypes.contains() calls Type.contains instead of Types.containsType
mcimadamore
parents: 5847
diff changeset
   110
        return types.containsType((Type) t1, (Type) t2);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    public boolean isSubsignature(ExecutableType m1, ExecutableType m2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        return types.isSubSignature((Type) m1, (Type) m2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    public List<Type> directSupertypes(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        validateTypeNotIn(t, EXEC_OR_PKG);
20252
fae5c47ba7a4 6499673: Assertion check for TypeVariable.getUpperBound() fails.
emc
parents: 18646
diff changeset
   119
        return types.directSupertypes((Type) t);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    public TypeMirror erasure(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        if (t.getKind() == TypeKind.PACKAGE)
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        return types.erasure((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
    public TypeElement boxedClass(PrimitiveType p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        return types.boxedClass((Type) p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    public PrimitiveType unboxedType(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        if (t.getKind() != TypeKind.DECLARED)
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        Type unboxed = types.unboxedType((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        if (! unboxed.isPrimitive())    // only true primitives, not void
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
            throw new IllegalArgumentException(t.toString());
18646
e628560a86d1 8017104: javac should have a class for primitive types that inherits from Type
vromero
parents: 16557
diff changeset
   138
        return (PrimitiveType)unboxed;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    public TypeMirror capture(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        validateTypeNotIn(t, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        return types.capture((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    public PrimitiveType getPrimitiveType(TypeKind kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        switch (kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        case BOOLEAN:   return syms.booleanType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        case BYTE:      return syms.byteType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        case SHORT:     return syms.shortType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        case INT:       return syms.intType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
        case LONG:      return syms.longType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        case CHAR:      return syms.charType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
        case FLOAT:     return syms.floatType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        case DOUBLE:    return syms.doubleType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
            throw new IllegalArgumentException("Not a primitive type: " + kind);
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    public NullType getNullType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        return (NullType) syms.botType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    public NoType getNoType(TypeKind kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        switch (kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        case VOID:      return syms.voidType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
        case NONE:      return Type.noType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            throw new IllegalArgumentException(kind.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    public ArrayType getArrayType(TypeMirror componentType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        switch (componentType.getKind()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        case VOID:
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        case EXECUTABLE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        case WILDCARD:  // heh!
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        case PACKAGE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
            throw new IllegalArgumentException(componentType.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
        return new Type.ArrayType((Type) componentType, syms.arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    public WildcardType getWildcardType(TypeMirror extendsBound,
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
                                        TypeMirror superBound) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        BoundKind bkind;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
        Type bound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        if (extendsBound == null && superBound == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            bkind = BoundKind.UNBOUND;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            bound = syms.objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        } else if (superBound == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
            bkind = BoundKind.EXTENDS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            bound = (Type) extendsBound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        } else if (extendsBound == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
            bkind = BoundKind.SUPER;
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
            bound = (Type) superBound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            throw new IllegalArgumentException(
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
                    "Extends and super bounds cannot both be provided");
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        switch (bound.getKind()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        case ARRAY:
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        case DECLARED:
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
        case ERROR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        case TYPEVAR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            return new Type.WildcardType(bound, bkind, syms.boundClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
            throw new IllegalArgumentException(bound.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
    public DeclaredType getDeclaredType(TypeElement typeElem,
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
                                        TypeMirror... typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        ClassSymbol sym = (ClassSymbol) typeElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        if (typeArgs.length == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            return (DeclaredType) sym.erasure(types);
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        if (sym.type.getEnclosingType().isParameterized())
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            throw new IllegalArgumentException(sym.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
        return getDeclaredType0(sym.type.getEnclosingType(), sym, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    public DeclaredType getDeclaredType(DeclaredType enclosing,
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
                                        TypeElement typeElem,
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
                                        TypeMirror... typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        if (enclosing == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
            return getDeclaredType(typeElem, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        ClassSymbol sym = (ClassSymbol) typeElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        Type outer = (Type) enclosing;
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        if (outer.tsym != sym.owner.enclClass())
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            throw new IllegalArgumentException(enclosing.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        if (!outer.isParameterized())
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            return getDeclaredType(typeElem, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        return getDeclaredType0(outer, sym, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
    // where
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
        private DeclaredType getDeclaredType0(Type outer,
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                                              ClassSymbol sym,
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                                              TypeMirror... typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            if (typeArgs.length != sym.type.getTypeArguments().length())
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                throw new IllegalArgumentException(
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                "Incorrect number of type arguments");
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 20252
diff changeset
   249
            ListBuffer<Type> targs = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            for (TypeMirror t : typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
                if (!(t instanceof ReferenceType || t instanceof WildcardType))
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                    throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
                targs.append((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
            // TODO: Would like a way to check that type args match formals.
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
            return (DeclaredType) new Type.ClassType(outer, targs.toList(), sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     * Returns the type of an element when that element is viewed as
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     * a member of, or otherwise directly contained by, a given type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     * For example,
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     * when viewed as a member of the parameterized type {@code Set<String>},
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     * the {@code Set.add} method is an {@code ExecutableType}
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     * whose parameter is of type {@code String}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     * @param containing  the containing type
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     * @param element     the element
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
     * @return the type of the element as viewed from the containing type
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
     * @throws IllegalArgumentException if the element is not a valid one
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     *          for the given type
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
    public TypeMirror asMemberOf(DeclaredType containing, Element element) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        Type site = (Type)containing;
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
        Symbol sym = (Symbol)element;
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
        if (types.asSuper(site, sym.getEnclosingElement()) == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            throw new IllegalArgumentException(sym + "@" + site);
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
        return types.memberType(site, sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
    private static final Set<TypeKind> EXEC_OR_PKG =
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
            EnumSet.of(TypeKind.EXECUTABLE, TypeKind.PACKAGE);
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     * Throws an IllegalArgumentException if a type's kind is one of a set.
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
    private void validateTypeNotIn(TypeMirror t, Set<TypeKind> invalidKinds) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        if (invalidKinds.contains(t.getKind()))
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
     * Returns an object cast to the specified type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
     * @throws NullPointerException if the object is {@code null}
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
     * @throws IllegalArgumentException if the object is of the wrong type
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
    private static <T> T cast(Class<T> clazz, Object o) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
        if (! clazz.isInstance(o))
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            throw new IllegalArgumentException(o.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
        return clazz.cast(o);
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
    }
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   304
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   305
    public Set<MethodSymbol> getOverriddenMethods(Element elem) {
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   306
        if (elem.getKind() != ElementKind.METHOD
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   307
                || elem.getModifiers().contains(Modifier.STATIC)
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   308
                || elem.getModifiers().contains(Modifier.PRIVATE))
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   309
            return Collections.emptySet();
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   310
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   311
        if (!(elem instanceof MethodSymbol))
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   312
            throw new IllegalArgumentException();
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   313
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   314
        MethodSymbol m = (MethodSymbol) elem;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   315
        ClassSymbol origin = (ClassSymbol) m.owner;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   316
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 20252
diff changeset
   317
        Set<MethodSymbol> results = new LinkedHashSet<>();
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   318
        for (Type t : types.closure(origin.type)) {
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   319
            if (t != origin.type) {
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   320
                ClassSymbol c = (ClassSymbol) t.tsym;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   321
                for (Scope.Entry e = c.members().lookup(m.name); e.scope != null; e = e.next()) {
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   322
                    if (e.sym.kind == Kinds.MTH && m.overrides(e.sym, origin, types, true)) {
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   323
                        results.add((MethodSymbol) e.sym);
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   324
                    }
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   325
                }
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   326
            }
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   327
        }
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   328
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   329
        return results;
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14725
diff changeset
   330
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
}