langtools/src/share/classes/com/sun/tools/javac/model/JavacTypes.java
author jjg
Tue, 05 Oct 2010 11:34:43 -0700
changeset 6924 ef7a9281ad2f
parent 6593 4d13b5b812ef
child 7681 1f0819a3341f
permissions -rw-r--r--
6988836: A new JavacElements is created for each round of annotation processing 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: 10
diff changeset
     2
 * Copyright (c) 2005, 2006, 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
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.util.EnumSet;
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.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.code.*;
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
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Utility methods for operating on types.
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    40
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * If you write code that depends on this, you do so at your own
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * risk.  This code and its internal interfaces are subject to change
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 * or deletion without notice.</b></p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
public class JavacTypes implements javax.lang.model.util.Types {
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    private Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    private Types types;
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    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
    51
        JavacTypes instance = context.get(JavacTypes.class);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    52
        if (instance == null)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
            instance = new JavacTypes(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     * Public for use only by JavacProcessingEnvironment
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     */
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    60
    protected JavacTypes(Context context) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        setContext(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
     * Use a new context.  May be called from outside to update
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     * internal state for a new annotation-processing round.
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    public void setContext(Context context) {
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6593
diff changeset
    69
        context.put(JavacTypes.class, this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        types = Types.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    public Element asElement(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        Type type = cast(Type.class, t);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        if (type.tag != TypeTags.CLASS && type.tag != TypeTags.TYPEVAR)
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        return type.asElement();
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    public boolean isSameType(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        return types.isSameType((Type) t1, (Type) t2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    public boolean isSubtype(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        validateTypeNotIn(t1, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        validateTypeNotIn(t2, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        return types.isSubtype((Type) t1, (Type) t2);
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 isAssignable(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        validateTypeNotIn(t1, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        validateTypeNotIn(t2, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        return types.isAssignable((Type) t1, (Type) t2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    public boolean contains(TypeMirror t1, TypeMirror t2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        validateTypeNotIn(t1, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        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
   100
        return types.containsType((Type) t1, (Type) t2);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    public boolean isSubsignature(ExecutableType m1, ExecutableType m2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        return types.isSubSignature((Type) m1, (Type) m2);
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 List<Type> directSupertypes(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
        validateTypeNotIn(t, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        Type type = (Type) t;
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        Type sup = types.supertype(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
        return (sup == Type.noType || sup == type || sup == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
              ? types.interfaces(type)
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
              : types.interfaces(type).prepend(sup);
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    public TypeMirror erasure(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        if (t.getKind() == TypeKind.PACKAGE)
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        return types.erasure((Type) t);
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 TypeElement boxedClass(PrimitiveType p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        return types.boxedClass((Type) p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    public PrimitiveType unboxedType(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        if (t.getKind() != TypeKind.DECLARED)
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        Type unboxed = types.unboxedType((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        if (! unboxed.isPrimitive())    // only true primitives, not void
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        return unboxed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    public TypeMirror capture(TypeMirror t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        validateTypeNotIn(t, EXEC_OR_PKG);
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        return types.capture((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    public PrimitiveType getPrimitiveType(TypeKind kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        switch (kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        case BOOLEAN:   return syms.booleanType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        case BYTE:      return syms.byteType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        case SHORT:     return syms.shortType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        case INT:       return syms.intType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        case LONG:      return syms.longType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        case CHAR:      return syms.charType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        case FLOAT:     return syms.floatType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        case DOUBLE:    return syms.doubleType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
            throw new IllegalArgumentException("Not a primitive type: " + kind);
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    public NullType getNullType() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        return (NullType) syms.botType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    public NoType getNoType(TypeKind kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
        switch (kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        case VOID:      return syms.voidType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        case NONE:      return Type.noType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            throw new IllegalArgumentException(kind.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    public ArrayType getArrayType(TypeMirror componentType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
        switch (componentType.getKind()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
        case VOID:
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
        case EXECUTABLE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        case WILDCARD:  // heh!
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        case PACKAGE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            throw new IllegalArgumentException(componentType.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        return new Type.ArrayType((Type) componentType, syms.arrayClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    public WildcardType getWildcardType(TypeMirror extendsBound,
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
                                        TypeMirror superBound) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        BoundKind bkind;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
        Type bound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        if (extendsBound == null && superBound == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            bkind = BoundKind.UNBOUND;
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            bound = syms.objectType;
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
        } else if (superBound == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
            bkind = BoundKind.EXTENDS;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
            bound = (Type) extendsBound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        } else if (extendsBound == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            bkind = BoundKind.SUPER;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            bound = (Type) superBound;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
            throw new IllegalArgumentException(
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
                    "Extends and super bounds cannot both be provided");
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        switch (bound.getKind()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        case ARRAY:
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        case DECLARED:
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        case ERROR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
        case TYPEVAR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            return new Type.WildcardType(bound, bkind, syms.boundClass);
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
            throw new IllegalArgumentException(bound.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    public DeclaredType getDeclaredType(TypeElement typeElem,
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
                                        TypeMirror... typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        ClassSymbol sym = (ClassSymbol) typeElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        if (typeArgs.length == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
            return (DeclaredType) sym.erasure(types);
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        if (sym.type.getEnclosingType().isParameterized())
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
            throw new IllegalArgumentException(sym.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        return getDeclaredType0(sym.type.getEnclosingType(), sym, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
    public DeclaredType getDeclaredType(DeclaredType enclosing,
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
                                        TypeElement typeElem,
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
                                        TypeMirror... typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
        if (enclosing == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            return getDeclaredType(typeElem, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        ClassSymbol sym = (ClassSymbol) typeElem;
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        Type outer = (Type) enclosing;
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        if (outer.tsym != sym.owner.enclClass())
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
            throw new IllegalArgumentException(enclosing.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        if (!outer.isParameterized())
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            return getDeclaredType(typeElem, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        return getDeclaredType0(outer, sym, typeArgs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
    // where
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        private DeclaredType getDeclaredType0(Type outer,
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
                                              ClassSymbol sym,
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
                                              TypeMirror... typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            if (typeArgs.length != sym.type.getTypeArguments().length())
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                throw new IllegalArgumentException(
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
                "Incorrect number of type arguments");
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            ListBuffer<Type> targs = new ListBuffer<Type>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
            for (TypeMirror t : typeArgs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                if (!(t instanceof ReferenceType || t instanceof WildcardType))
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                    throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                targs.append((Type) t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
            // TODO: Would like a way to check that type args match formals.
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            return (DeclaredType) new Type.ClassType(outer, targs.toList(), sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     * Returns the type of an element when that element is viewed as
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     * a member of, or otherwise directly contained by, a given type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     * For example,
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     * when viewed as a member of the parameterized type {@code Set<String>},
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     * the {@code Set.add} method is an {@code ExecutableType}
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     * whose parameter is of type {@code String}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     * @param containing  the containing type
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     * @param element     the element
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     * @return the type of the element as viewed from the containing type
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     * @throws IllegalArgumentException if the element is not a valid one
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     *          for the given type
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
    public TypeMirror asMemberOf(DeclaredType containing, Element element) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
        Type site = (Type)containing;
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
        Symbol sym = (Symbol)element;
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
        if (types.asSuper(site, sym.getEnclosingElement()) == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
            throw new IllegalArgumentException(sym + "@" + site);
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        return types.memberType(site, sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    private static final Set<TypeKind> EXEC_OR_PKG =
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            EnumSet.of(TypeKind.EXECUTABLE, TypeKind.PACKAGE);
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
     * Throws an IllegalArgumentException if a type's kind is one of a set.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
    private void validateTypeNotIn(TypeMirror t, Set<TypeKind> invalidKinds) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
        if (invalidKinds.contains(t.getKind()))
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
            throw new IllegalArgumentException(t.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
     * Returns an object cast to the specified type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
     * @throws NullPointerException if the object is {@code null}
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
     * @throws IllegalArgumentException if the object is of the wrong type
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
    private static <T> T cast(Class<T> clazz, Object o) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        if (! clazz.isInstance(o))
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            throw new IllegalArgumentException(o.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        return clazz.cast(o);
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
}