Symtab.java revision 3612:e666d0f958f6
1/*
2 * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package com.sun.tools.javac.code;
27
28import java.util.Collection;
29import java.util.Collections;
30import java.util.HashMap;
31import java.util.LinkedHashMap;
32import java.util.Map;
33
34import javax.lang.model.element.ElementVisitor;
35
36import com.sun.tools.javac.code.Scope.WriteableScope;
37import com.sun.tools.javac.code.Symbol.ClassSymbol;
38import com.sun.tools.javac.code.Symbol.Completer;
39import com.sun.tools.javac.code.Symbol.CompletionFailure;
40import com.sun.tools.javac.code.Symbol.MethodSymbol;
41import com.sun.tools.javac.code.Symbol.ModuleSymbol;
42import com.sun.tools.javac.code.Symbol.PackageSymbol;
43import com.sun.tools.javac.code.Symbol.TypeSymbol;
44import com.sun.tools.javac.code.Symbol.VarSymbol;
45import com.sun.tools.javac.code.Type.BottomType;
46import com.sun.tools.javac.code.Type.ClassType;
47import com.sun.tools.javac.code.Type.ErrorType;
48import com.sun.tools.javac.code.Type.JCPrimitiveType;
49import com.sun.tools.javac.code.Type.JCVoidType;
50import com.sun.tools.javac.code.Type.MethodType;
51import com.sun.tools.javac.code.Type.UnknownType;
52import com.sun.tools.javac.comp.Modules;
53import com.sun.tools.javac.util.Assert;
54import com.sun.tools.javac.util.Context;
55import com.sun.tools.javac.util.Convert;
56import com.sun.tools.javac.util.DefinedBy;
57import com.sun.tools.javac.util.DefinedBy.Api;
58import com.sun.tools.javac.util.Iterators;
59import com.sun.tools.javac.util.JavacMessages;
60import com.sun.tools.javac.util.List;
61import com.sun.tools.javac.util.Name;
62import com.sun.tools.javac.util.Names;
63import com.sun.tools.javac.util.Options;
64
65import static com.sun.tools.javac.code.Flags.*;
66import static com.sun.tools.javac.code.Kinds.Kind.*;
67import static com.sun.tools.javac.code.TypeTag.*;
68
69/** A class that defines all predefined constants and operators
70 *  as well as special classes such as java.lang.Object, which need
71 *  to be known to the compiler. All symbols are held in instance
72 *  fields. This makes it possible to work in multiple concurrent
73 *  projects, which might use different class files for library classes.
74 *
75 *  <p><b>This is NOT part of any supported API.
76 *  If you write code that depends on this, you do so at your own risk.
77 *  This code and its internal interfaces are subject to change or
78 *  deletion without notice.</b>
79 */
80public class Symtab {
81    /** The context key for the symbol table. */
82    protected static final Context.Key<Symtab> symtabKey = new Context.Key<>();
83
84    /** Get the symbol table instance. */
85    public static Symtab instance(Context context) {
86        Symtab instance = context.get(symtabKey);
87        if (instance == null)
88            instance = new Symtab(context);
89        return instance;
90    }
91
92    /** Builtin types.
93     */
94    public final JCPrimitiveType byteType = new JCPrimitiveType(BYTE, null);
95    public final JCPrimitiveType charType = new JCPrimitiveType(CHAR, null);
96    public final JCPrimitiveType shortType = new JCPrimitiveType(SHORT, null);
97    public final JCPrimitiveType intType = new JCPrimitiveType(INT, null);
98    public final JCPrimitiveType longType = new JCPrimitiveType(LONG, null);
99    public final JCPrimitiveType floatType = new JCPrimitiveType(FLOAT, null);
100    public final JCPrimitiveType doubleType = new JCPrimitiveType(DOUBLE, null);
101    public final JCPrimitiveType booleanType = new JCPrimitiveType(BOOLEAN, null);
102    public final Type botType = new BottomType();
103    public final JCVoidType voidType = new JCVoidType();
104
105    private final Names names;
106    private final JavacMessages messages;
107    private final Completer initialCompleter;
108    private final Completer moduleCompleter;
109
110    /** A symbol for the unnamed module.
111     */
112    public final ModuleSymbol unnamedModule;
113
114    /** The error module.
115     */
116    public final ModuleSymbol errModule;
117
118    /** A symbol for no module, for use with -source 8 or less
119     */
120    public final ModuleSymbol noModule;
121
122    /** A symbol for the root package.
123     */
124    public final PackageSymbol rootPackage;
125
126    /** A symbol that stands for a missing symbol.
127     */
128    public final TypeSymbol noSymbol;
129
130    /** The error symbol.
131     */
132    public final ClassSymbol errSymbol;
133
134    /** The unknown symbol.
135     */
136    public final ClassSymbol unknownSymbol;
137
138    /** A value for the errType, with a originalType of noType */
139    public final Type errType;
140
141    /** A value for the unknown type. */
142    public final Type unknownType;
143
144    /** The builtin type of all arrays. */
145    public final ClassSymbol arrayClass;
146    public final MethodSymbol arrayCloneMethod;
147
148    /** VGJ: The (singleton) type of all bound types. */
149    public final ClassSymbol boundClass;
150
151    /** The builtin type of all methods. */
152    public final ClassSymbol methodClass;
153
154    /** A symbol for the java.base module.
155     */
156    public final ModuleSymbol java_base;
157
158    /** Predefined types.
159     */
160    public final Type objectType;
161    public final Type objectsType;
162    public final Type classType;
163    public final Type classLoaderType;
164    public final Type stringType;
165    public final Type stringBufferType;
166    public final Type stringBuilderType;
167    public final Type cloneableType;
168    public final Type serializableType;
169    public final Type serializedLambdaType;
170    public final Type varHandleType;
171    public final Type methodHandleType;
172    public final Type methodHandleLookupType;
173    public final Type methodTypeType;
174    public final Type nativeHeaderType;
175    public final Type throwableType;
176    public final Type errorType;
177    public final Type interruptedExceptionType;
178    public final Type illegalArgumentExceptionType;
179    public final Type exceptionType;
180    public final Type runtimeExceptionType;
181    public final Type classNotFoundExceptionType;
182    public final Type noClassDefFoundErrorType;
183    public final Type noSuchFieldErrorType;
184    public final Type assertionErrorType;
185    public final Type cloneNotSupportedExceptionType;
186    public final Type annotationType;
187    public final TypeSymbol enumSym;
188    public final Type listType;
189    public final Type collectionsType;
190    public final Type comparableType;
191    public final Type comparatorType;
192    public final Type arraysType;
193    public final Type iterableType;
194    public final Type iteratorType;
195    public final Type annotationTargetType;
196    public final Type overrideType;
197    public final Type retentionType;
198    public final Type deprecatedType;
199    public final Type suppressWarningsType;
200    public final Type supplierType;
201    public final Type inheritedType;
202    public final Type profileType;
203    public final Type proprietaryType;
204    public final Type systemType;
205    public final Type autoCloseableType;
206    public final Type trustMeType;
207    public final Type lambdaMetafactory;
208    public final Type stringConcatFactory;
209    public final Type repeatableType;
210    public final Type documentedType;
211    public final Type elementTypeType;
212    public final Type functionalInterfaceType;
213
214    /** The symbol representing the length field of an array.
215     */
216    public final VarSymbol lengthVar;
217
218    /** The symbol representing the final finalize method on enums */
219    public final MethodSymbol enumFinalFinalize;
220
221    /** The symbol representing the close method on TWR AutoCloseable type */
222    public final MethodSymbol autoCloseableClose;
223
224    /** The predefined type that belongs to a tag.
225     */
226    public final Type[] typeOfTag = new Type[TypeTag.getTypeTagCount()];
227
228    /** The name of the class that belongs to a basic type tag.
229     */
230    public final Name[] boxedName = new Name[TypeTag.getTypeTagCount()];
231
232    /** A hashtable containing the encountered top-level and member classes,
233     *  indexed by flat names. The table does not contain local classes.
234     *  It should be updated from the outside to reflect classes defined
235     *  by compiled source files.
236     */
237    private final Map<Name, Map<ModuleSymbol,ClassSymbol>> classes = new HashMap<>();
238
239    /** A hashtable containing the encountered packages.
240     *  the table should be updated from outside to reflect packages defined
241     *  by compiled source files.
242     */
243    private final Map<Name, Map<ModuleSymbol,PackageSymbol>> packages = new HashMap<>();
244
245    /** A hashtable giving the encountered modules.
246     */
247    private final Map<Name, ModuleSymbol> modules = new LinkedHashMap<>();
248
249    public void initType(Type type, ClassSymbol c) {
250        type.tsym = c;
251        typeOfTag[type.getTag().ordinal()] = type;
252    }
253
254    public void initType(Type type, String name) {
255        initType(
256            type,
257            new ClassSymbol(
258                PUBLIC, names.fromString(name), type, rootPackage));
259    }
260
261    public void initType(Type type, String name, String bname) {
262        initType(type, name);
263        boxedName[type.getTag().ordinal()] = names.fromString("java.lang." + bname);
264    }
265
266    /** The class symbol that owns all predefined symbols.
267     */
268    public final ClassSymbol predefClass;
269
270    /** Enter a class into symbol table.
271     *  @param s The name of the class.
272     */
273    private Type enterClass(String s) {
274        return enterClass(java_base, names.fromString(s)).type;
275    }
276
277    public void synthesizeEmptyInterfaceIfMissing(final Type type) {
278        final Completer completer = type.tsym.completer;
279        type.tsym.completer = new Completer() {
280            @Override
281            public void complete(Symbol sym) throws CompletionFailure {
282                try {
283                    completer.complete(sym);
284                } catch (CompletionFailure e) {
285                    sym.flags_field |= (PUBLIC | INTERFACE);
286                    ((ClassType) sym.type).supertype_field = objectType;
287                }
288            }
289
290            @Override
291            public boolean isTerminal() {
292                return completer.isTerminal();
293            }
294        };
295    }
296
297    public void synthesizeBoxTypeIfMissing(final Type type) {
298        ClassSymbol sym = enterClass(java_base, boxedName[type.getTag().ordinal()]);
299        final Completer completer = sym.completer;
300        sym.completer = new Completer() {
301            @Override
302            public void complete(Symbol sym) throws CompletionFailure {
303                try {
304                    completer.complete(sym);
305                } catch (CompletionFailure e) {
306                    sym.flags_field |= PUBLIC;
307                    ((ClassType) sym.type).supertype_field = objectType;
308                    MethodSymbol boxMethod =
309                        new MethodSymbol(PUBLIC | STATIC, names.valueOf,
310                                         new MethodType(List.of(type), sym.type,
311                                List.<Type>nil(), methodClass),
312                            sym);
313                    sym.members().enter(boxMethod);
314                    MethodSymbol unboxMethod =
315                        new MethodSymbol(PUBLIC,
316                            type.tsym.name.append(names.Value), // x.intValue()
317                            new MethodType(List.<Type>nil(), type,
318                                List.<Type>nil(), methodClass),
319                            sym);
320                    sym.members().enter(unboxMethod);
321                }
322            }
323
324            @Override
325            public boolean isTerminal() {
326                return completer.isTerminal();
327            }
328        };
329    }
330
331    // Enter a synthetic class that is used to mark classes in ct.sym.
332    // This class does not have a class file.
333    private Type enterSyntheticAnnotation(String name) {
334        // for now, leave the module null, to prevent problems from synthesizing the
335        // existence of a class in any specific module, including noModule
336        ClassType type = (ClassType)enterClass(java_base, names.fromString(name)).type;
337        ClassSymbol sym = (ClassSymbol)type.tsym;
338        sym.completer = Completer.NULL_COMPLETER;
339        sym.flags_field = PUBLIC|ACYCLIC|ANNOTATION|INTERFACE;
340        sym.erasure_field = type;
341        sym.members_field = WriteableScope.create(sym);
342        type.typarams_field = List.nil();
343        type.allparams_field = List.nil();
344        type.supertype_field = annotationType;
345        type.interfaces_field = List.nil();
346        return type;
347    }
348
349    /** Constructor; enters all predefined identifiers and operators
350     *  into symbol table.
351     */
352    protected Symtab(Context context) throws CompletionFailure {
353        context.put(symtabKey, this);
354
355        names = Names.instance(context);
356
357        // Create the unknown type
358        unknownType = new UnknownType();
359
360        messages = JavacMessages.instance(context);
361
362        rootPackage = new PackageSymbol(names.empty, null);
363
364        // create the basic builtin symbols
365        unnamedModule = new ModuleSymbol(names.empty, null) {
366                @Override
367                public String toString() {
368                    return messages.getLocalizedString("compiler.misc.unnamed.module");
369                }
370            };
371        addRootPackageFor(unnamedModule);
372        unnamedModule.enclosedPackages = unnamedModule.enclosedPackages.prepend(unnamedModule.unnamedPackage);
373
374        errModule = new ModuleSymbol(names.empty, null) { };
375        addRootPackageFor(errModule);
376
377        noModule = new ModuleSymbol(names.empty, null) {
378            @Override public boolean isNoModule() {
379                return true;
380            }
381        };
382        addRootPackageFor(noModule);
383
384        noSymbol = new TypeSymbol(NIL, 0, names.empty, Type.noType, rootPackage) {
385            @Override @DefinedBy(Api.LANGUAGE_MODEL)
386            public <R, P> R accept(ElementVisitor<R, P> v, P p) {
387                return v.visitUnknown(this, p);
388            }
389        };
390
391        // create the error symbols
392        errSymbol = new ClassSymbol(PUBLIC|STATIC|ACYCLIC, names.any, null, rootPackage);
393        errType = new ErrorType(errSymbol, Type.noType);
394
395        unknownSymbol = new ClassSymbol(PUBLIC|STATIC|ACYCLIC, names.fromString("<any?>"), null, rootPackage);
396        unknownSymbol.members_field = new Scope.ErrorScope(unknownSymbol);
397        unknownSymbol.type = unknownType;
398
399        // initialize builtin types
400        initType(byteType, "byte", "Byte");
401        initType(shortType, "short", "Short");
402        initType(charType, "char", "Character");
403        initType(intType, "int", "Integer");
404        initType(longType, "long", "Long");
405        initType(floatType, "float", "Float");
406        initType(doubleType, "double", "Double");
407        initType(booleanType, "boolean", "Boolean");
408        initType(voidType, "void", "Void");
409        initType(botType, "<nulltype>");
410        initType(errType, errSymbol);
411        initType(unknownType, unknownSymbol);
412
413        // the builtin class of all arrays
414        arrayClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Array, noSymbol);
415
416        // VGJ
417        boundClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Bound, noSymbol);
418        boundClass.members_field = new Scope.ErrorScope(boundClass);
419
420        // the builtin class of all methods
421        methodClass = new ClassSymbol(PUBLIC|ACYCLIC, names.Method, noSymbol);
422        methodClass.members_field = new Scope.ErrorScope(boundClass);
423
424        // Create class to hold all predefined constants and operations.
425        predefClass = new ClassSymbol(PUBLIC|ACYCLIC, names.empty, rootPackage);
426        WriteableScope scope = WriteableScope.create(predefClass);
427        predefClass.members_field = scope;
428
429        // Get the initial completer for Symbols from the ClassFinder
430        initialCompleter = ClassFinder.instance(context).getCompleter();
431        rootPackage.members_field = WriteableScope.create(rootPackage);
432
433        // Enter symbols for basic types.
434        scope.enter(byteType.tsym);
435        scope.enter(shortType.tsym);
436        scope.enter(charType.tsym);
437        scope.enter(intType.tsym);
438        scope.enter(longType.tsym);
439        scope.enter(floatType.tsym);
440        scope.enter(doubleType.tsym);
441        scope.enter(booleanType.tsym);
442        scope.enter(errType.tsym);
443
444        // Enter symbol for the errSymbol
445        scope.enter(errSymbol);
446
447        Source source = Source.instance(context);
448        Options options = Options.instance(context);
449        boolean noModules = options.isSet("noModules");
450        if (source.allowModules() && !noModules) {
451            java_base = enterModule(names.java_base);
452            //avoid completing java.base during the Symtab initialization
453            java_base.completer = Completer.NULL_COMPLETER;
454            java_base.visiblePackages = Collections.emptyMap();
455        } else {
456            java_base = noModule;
457        }
458
459        // Get the initial completer for ModuleSymbols from Modules
460        moduleCompleter = Modules.instance(context).getCompleter();
461
462        // Enter predefined classes. All are assumed to be in the java.base module.
463        objectType = enterClass("java.lang.Object");
464        objectsType = enterClass("java.util.Objects");
465        classType = enterClass("java.lang.Class");
466        stringType = enterClass("java.lang.String");
467        stringBufferType = enterClass("java.lang.StringBuffer");
468        stringBuilderType = enterClass("java.lang.StringBuilder");
469        cloneableType = enterClass("java.lang.Cloneable");
470        throwableType = enterClass("java.lang.Throwable");
471        serializableType = enterClass("java.io.Serializable");
472        serializedLambdaType = enterClass("java.lang.invoke.SerializedLambda");
473        varHandleType = enterClass("java.lang.invoke.VarHandle");
474        methodHandleType = enterClass("java.lang.invoke.MethodHandle");
475        methodHandleLookupType = enterClass("java.lang.invoke.MethodHandles$Lookup");
476        methodTypeType = enterClass("java.lang.invoke.MethodType");
477        errorType = enterClass("java.lang.Error");
478        illegalArgumentExceptionType = enterClass("java.lang.IllegalArgumentException");
479        interruptedExceptionType = enterClass("java.lang.InterruptedException");
480        exceptionType = enterClass("java.lang.Exception");
481        runtimeExceptionType = enterClass("java.lang.RuntimeException");
482        classNotFoundExceptionType = enterClass("java.lang.ClassNotFoundException");
483        noClassDefFoundErrorType = enterClass("java.lang.NoClassDefFoundError");
484        noSuchFieldErrorType = enterClass("java.lang.NoSuchFieldError");
485        assertionErrorType = enterClass("java.lang.AssertionError");
486        cloneNotSupportedExceptionType = enterClass("java.lang.CloneNotSupportedException");
487        annotationType = enterClass("java.lang.annotation.Annotation");
488        classLoaderType = enterClass("java.lang.ClassLoader");
489        enumSym = enterClass(java_base, names.java_lang_Enum);
490        enumFinalFinalize =
491            new MethodSymbol(PROTECTED|FINAL|HYPOTHETICAL,
492                             names.finalize,
493                             new MethodType(List.<Type>nil(), voidType,
494                                            List.<Type>nil(), methodClass),
495                             enumSym);
496        listType = enterClass("java.util.List");
497        collectionsType = enterClass("java.util.Collections");
498        comparableType = enterClass("java.lang.Comparable");
499        comparatorType = enterClass("java.util.Comparator");
500        arraysType = enterClass("java.util.Arrays");
501        iterableType = enterClass("java.lang.Iterable");
502        iteratorType = enterClass("java.util.Iterator");
503        annotationTargetType = enterClass("java.lang.annotation.Target");
504        overrideType = enterClass("java.lang.Override");
505        retentionType = enterClass("java.lang.annotation.Retention");
506        deprecatedType = enterClass("java.lang.Deprecated");
507        suppressWarningsType = enterClass("java.lang.SuppressWarnings");
508        supplierType = enterClass("java.util.function.Supplier");
509        inheritedType = enterClass("java.lang.annotation.Inherited");
510        repeatableType = enterClass("java.lang.annotation.Repeatable");
511        documentedType = enterClass("java.lang.annotation.Documented");
512        elementTypeType = enterClass("java.lang.annotation.ElementType");
513        systemType = enterClass("java.lang.System");
514        autoCloseableType = enterClass("java.lang.AutoCloseable");
515        autoCloseableClose = new MethodSymbol(PUBLIC,
516                             names.close,
517                             new MethodType(List.<Type>nil(), voidType,
518                                            List.of(exceptionType), methodClass),
519                             autoCloseableType.tsym);
520        trustMeType = enterClass("java.lang.SafeVarargs");
521        nativeHeaderType = enterClass("java.lang.annotation.Native");
522        lambdaMetafactory = enterClass("java.lang.invoke.LambdaMetafactory");
523        stringConcatFactory = enterClass("java.lang.invoke.StringConcatFactory");
524        functionalInterfaceType = enterClass("java.lang.FunctionalInterface");
525
526        synthesizeEmptyInterfaceIfMissing(autoCloseableType);
527        synthesizeEmptyInterfaceIfMissing(cloneableType);
528        synthesizeEmptyInterfaceIfMissing(serializableType);
529        synthesizeEmptyInterfaceIfMissing(lambdaMetafactory);
530        synthesizeEmptyInterfaceIfMissing(serializedLambdaType);
531        synthesizeEmptyInterfaceIfMissing(stringConcatFactory);
532        synthesizeBoxTypeIfMissing(doubleType);
533        synthesizeBoxTypeIfMissing(floatType);
534        synthesizeBoxTypeIfMissing(voidType);
535
536        // Enter a synthetic class that is used to mark internal
537        // proprietary classes in ct.sym.  This class does not have a
538        // class file.
539        proprietaryType = enterSyntheticAnnotation("sun.Proprietary+Annotation");
540
541        // Enter a synthetic class that is used to provide profile info for
542        // classes in ct.sym.  This class does not have a class file.
543        profileType = enterSyntheticAnnotation("jdk.Profile+Annotation");
544        MethodSymbol m = new MethodSymbol(PUBLIC | ABSTRACT, names.value, intType, profileType.tsym);
545        profileType.tsym.members().enter(m);
546
547        // Enter a class for arrays.
548        // The class implements java.lang.Cloneable and java.io.Serializable.
549        // It has a final length field and a clone method.
550        ClassType arrayClassType = (ClassType)arrayClass.type;
551        arrayClassType.supertype_field = objectType;
552        arrayClassType.interfaces_field = List.of(cloneableType, serializableType);
553        arrayClass.members_field = WriteableScope.create(arrayClass);
554        lengthVar = new VarSymbol(
555            PUBLIC | FINAL,
556            names.length,
557            intType,
558            arrayClass);
559        arrayClass.members().enter(lengthVar);
560        arrayCloneMethod = new MethodSymbol(
561            PUBLIC,
562            names.clone,
563            new MethodType(List.<Type>nil(), objectType,
564                           List.<Type>nil(), methodClass),
565            arrayClass);
566        arrayClass.members().enter(arrayCloneMethod);
567
568        if (java_base != noModule)
569            java_base.completer = sym -> moduleCompleter.complete(sym); //bootstrap issues
570
571    }
572
573    /** Define a new class given its name and owner.
574     */
575    public ClassSymbol defineClass(Name name, Symbol owner) {
576        ClassSymbol c = new ClassSymbol(0, name, owner);
577        c.completer = initialCompleter;
578        return c;
579    }
580
581    /** Create a new toplevel or member class symbol with given name
582     *  and owner and enter in `classes' unless already there.
583     */
584    public ClassSymbol enterClass(ModuleSymbol msym, Name name, TypeSymbol owner) {
585        Assert.checkNonNull(msym);
586        Name flatname = TypeSymbol.formFlatName(name, owner);
587        ClassSymbol c = getClass(msym, flatname);
588        if (c == null) {
589            c = defineClass(name, owner);
590            doEnterClass(msym, c);
591        } else if ((c.name != name || c.owner != owner) && owner.kind == TYP && c.owner.kind == PCK) {
592            // reassign fields of classes that might have been loaded with
593            // their flat names.
594            c.owner.members().remove(c);
595            c.name = name;
596            c.owner = owner;
597            c.fullname = ClassSymbol.formFullName(name, owner);
598        }
599        return c;
600    }
601
602    public ClassSymbol getClass(ModuleSymbol msym, Name flatName) {
603        Assert.checkNonNull(msym, () -> flatName.toString());
604        return classes.getOrDefault(flatName, Collections.emptyMap()).get(msym);
605    }
606
607    public PackageSymbol lookupPackage(ModuleSymbol msym, Name flatName) {
608        Assert.checkNonNull(msym);
609
610        if (flatName.isEmpty()) {
611            //unnamed packages only from the current module - visiblePackages contains *root* package, not unnamed package!
612            return msym.unnamedPackage;
613        }
614
615        if (msym == noModule) {
616            return enterPackage(msym, flatName);
617        }
618
619        msym.complete();
620
621        PackageSymbol pack;
622
623        pack = msym.visiblePackages.get(flatName);
624
625        if (pack != null)
626            return pack;
627
628        pack = getPackage(msym, flatName);
629
630        if (pack != null && pack.exists())
631            return pack;
632
633        boolean dependsOnUnnamed = msym.requires != null &&
634                                   msym.requires.stream()
635                                                .map(rd -> rd.module)
636                                                .anyMatch(mod -> mod == unnamedModule);
637
638        if (dependsOnUnnamed) {
639            //msyms depends on the unnamed module, for which we generally don't know
640            //the list of packages it "exports" ahead of time. So try to lookup the package in the
641            //current module, and in the unnamed module and see if it exists in one of them
642            PackageSymbol unnamedPack = getPackage(unnamedModule, flatName);
643
644            if (unnamedPack != null && unnamedPack.exists()) {
645                msym.visiblePackages.put(unnamedPack.fullname, unnamedPack);
646                return unnamedPack;
647            }
648
649            pack = enterPackage(msym, flatName);
650            pack.complete();
651            if (pack.exists())
652                return pack;
653
654            unnamedPack = enterPackage(unnamedModule, flatName);
655            unnamedPack.complete();
656            if (unnamedPack.exists()) {
657                msym.visiblePackages.put(unnamedPack.fullname, unnamedPack);
658                return unnamedPack;
659            }
660
661            return pack;
662        }
663
664        return enterPackage(msym, flatName);
665    }
666
667    private static final Map<ModuleSymbol, ClassSymbol> EMPTY = new HashMap<>();
668
669    public void removeClass(ModuleSymbol msym, Name flatName) {
670        classes.getOrDefault(flatName, EMPTY).remove(msym);
671    }
672
673    public Iterable<ClassSymbol> getAllClasses() {
674        return () -> Iterators.createCompoundIterator(classes.values(), v -> v.values().iterator());
675    }
676
677    private void doEnterClass(ModuleSymbol msym, ClassSymbol cs) {
678        classes.computeIfAbsent(cs.flatname, n -> new HashMap<>()).put(msym, cs);
679    }
680
681    /** Create a new member or toplevel class symbol with given flat name
682     *  and enter in `classes' unless already there.
683     */
684    public ClassSymbol enterClass(ModuleSymbol msym, Name flatname) {
685        Assert.checkNonNull(msym);
686        PackageSymbol ps = lookupPackage(msym, Convert.packagePart(flatname));
687        Assert.checkNonNull(ps);
688        Assert.checkNonNull(ps.modle);
689        ClassSymbol c = getClass(ps.modle, flatname);
690        if (c == null) {
691            c = defineClass(Convert.shortName(flatname), ps);
692            doEnterClass(ps.modle, c);
693            return c;
694        } else
695            return c;
696    }
697
698    /** Check to see if a package exists, given its fully qualified name.
699     */
700    public boolean packageExists(ModuleSymbol msym, Name fullname) {
701        Assert.checkNonNull(msym);
702        return lookupPackage(msym, fullname).exists();
703    }
704
705    /** Make a package, given its fully qualified name.
706     */
707    public PackageSymbol enterPackage(ModuleSymbol currModule, Name fullname) {
708        Assert.checkNonNull(currModule);
709        PackageSymbol p = getPackage(currModule, fullname);
710        if (p == null) {
711            Assert.check(!fullname.isEmpty(), () -> "rootPackage missing!; currModule: " + currModule);
712            p = new PackageSymbol(
713                    Convert.shortName(fullname),
714                    enterPackage(currModule, Convert.packagePart(fullname)));
715            p.completer = initialCompleter;
716            p.modle = currModule;
717            doEnterPackage(currModule, p);
718        }
719        return p;
720    }
721
722    private void doEnterPackage(ModuleSymbol msym, PackageSymbol pack) {
723        packages.computeIfAbsent(pack.fullname, n -> new HashMap<>()).put(msym, pack);
724        msym.enclosedPackages = msym.enclosedPackages.prepend(pack);
725    }
726
727    private void addRootPackageFor(ModuleSymbol module) {
728        doEnterPackage(module, rootPackage);
729        PackageSymbol unnamedPackage = new PackageSymbol(names.empty, rootPackage) {
730                @Override
731                public String toString() {
732                    return messages.getLocalizedString("compiler.misc.unnamed.package");
733                }
734            };
735        unnamedPackage.modle = module;
736        unnamedPackage.completer = sym -> initialCompleter.complete(sym);
737        module.unnamedPackage = unnamedPackage;
738    }
739
740    public PackageSymbol getPackage(ModuleSymbol module, Name fullname) {
741        return packages.getOrDefault(fullname, Collections.emptyMap()).get(module);
742    }
743
744    public ModuleSymbol enterModule(Name name) {
745        ModuleSymbol msym = modules.get(name);
746        if (msym == null) {
747            msym = ModuleSymbol.create(name, names.module_info);
748            addRootPackageFor(msym);
749            msym.completer = sym -> moduleCompleter.complete(sym); //bootstrap issues
750            modules.put(name, msym);
751        }
752        return msym;
753    }
754
755    public void enterModule(ModuleSymbol msym, Name name) {
756        Assert.checkNull(modules.get(name));
757        Assert.checkNull(msym.name);
758        msym.name = name;
759        addRootPackageFor(msym);
760        ClassSymbol info = msym.module_info;
761        info.fullname = msym.name.append('.', names.module_info);
762        info.flatname = info.fullname;
763        modules.put(name, msym);
764    }
765
766    public ModuleSymbol getModule(Name name) {
767        return modules.get(name);
768    }
769
770    //temporary:
771    public ModuleSymbol inferModule(Name packageName) {
772        if (packageName.isEmpty())
773            return java_base == noModule ? noModule : unnamedModule;//!
774
775        ModuleSymbol msym = null;
776        Map<ModuleSymbol,PackageSymbol> map = packages.get(packageName);
777        if (map == null)
778            return null;
779        for (Map.Entry<ModuleSymbol,PackageSymbol> e: map.entrySet()) {
780            if (!e.getValue().members().isEmpty()) {
781                if (msym == null) {
782                    msym = e.getKey();
783                } else {
784                    return null;
785                }
786            }
787        }
788        return msym;
789    }
790
791    public List<ModuleSymbol> listPackageModules(Name packageName) {
792        if (packageName.isEmpty())
793            return List.nil();
794
795        List<ModuleSymbol> result = List.nil();
796        Map<ModuleSymbol,PackageSymbol> map = packages.get(packageName);
797        if (map != null) {
798            for (Map.Entry<ModuleSymbol, PackageSymbol> e: map.entrySet()) {
799                if (!e.getValue().members().isEmpty()) {
800                    result = result.prepend(e.getKey());
801                }
802            }
803        }
804        return result;
805    }
806
807    public Collection<ModuleSymbol> getAllModules() {
808        return modules.values();
809    }
810}
811