File: ModuleBinder.java

package info (click to toggle)
turbine-java 0.1-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,556 kB
  • sloc: java: 37,940; xml: 354; makefile: 7
file content (230 lines) | stat: -rw-r--r-- 9,010 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
 * Copyright 2018 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.turbine.binder;

import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.turbine.binder.bound.ModuleInfo;
import com.google.turbine.binder.bound.ModuleInfo.ExportInfo;
import com.google.turbine.binder.bound.ModuleInfo.OpenInfo;
import com.google.turbine.binder.bound.ModuleInfo.ProvideInfo;
import com.google.turbine.binder.bound.ModuleInfo.RequireInfo;
import com.google.turbine.binder.bound.ModuleInfo.UseInfo;
import com.google.turbine.binder.bound.PackageSourceBoundModule;
import com.google.turbine.binder.bound.SourceModuleInfo;
import com.google.turbine.binder.bound.TypeBoundClass;
import com.google.turbine.binder.env.CompoundEnv;
import com.google.turbine.binder.env.Env;
import com.google.turbine.binder.env.SimpleEnv;
import com.google.turbine.binder.lookup.CompoundScope;
import com.google.turbine.binder.lookup.LookupKey;
import com.google.turbine.binder.lookup.LookupResult;
import com.google.turbine.binder.sym.ClassSymbol;
import com.google.turbine.binder.sym.ModuleSymbol;
import com.google.turbine.diag.TurbineError;
import com.google.turbine.diag.TurbineError.ErrorKind;
import com.google.turbine.diag.TurbineLog.TurbineLogWithSource;
import com.google.turbine.model.TurbineFlag;
import com.google.turbine.tree.Tree;
import com.google.turbine.tree.Tree.Ident;
import com.google.turbine.tree.Tree.ModDirective;
import com.google.turbine.tree.Tree.ModExports;
import com.google.turbine.tree.Tree.ModOpens;
import com.google.turbine.tree.Tree.ModProvides;
import com.google.turbine.tree.Tree.ModRequires;
import com.google.turbine.tree.Tree.ModUses;
import com.google.turbine.tree.TurbineModifier;
import com.google.turbine.type.AnnoInfo;
import java.util.Optional;

/** Binding pass for modules. */
public class ModuleBinder {

  public static SourceModuleInfo bind(
      PackageSourceBoundModule module,
      CompoundEnv<ClassSymbol, TypeBoundClass> env,
      Env<ModuleSymbol, ModuleInfo> moduleEnv,
      Optional<String> moduleVersion,
      TurbineLogWithSource log) {
    return new ModuleBinder(module, env, moduleEnv, moduleVersion, log).bind();
  }

  private final PackageSourceBoundModule module;
  private final CompoundEnv<ClassSymbol, TypeBoundClass> env;
  private final Env<ModuleSymbol, ModuleInfo> moduleEnv;
  private final Optional<String> moduleVersion;
  private final CompoundScope scope;
  private final TurbineLogWithSource log;

  public ModuleBinder(
      PackageSourceBoundModule module,
      CompoundEnv<ClassSymbol, TypeBoundClass> env,
      Env<ModuleSymbol, ModuleInfo> moduleEnv,
      Optional<String> moduleVersion,
      TurbineLogWithSource log) {
    this.module = module;
    this.env = env;
    this.moduleEnv = moduleEnv;
    this.moduleVersion = moduleVersion;
    this.log = log;
    this.scope = module.scope().toScope(Resolve.resolveFunction(env, /* origin= */ null));
  }

  private SourceModuleInfo bind() {
    // bind annotations; constant fields are already bound
    ConstEvaluator constEvaluator =
        new ConstEvaluator(
            /* origin= */ null,
            /* owner= */ null,
            module.memberImports(),
            module.source(),
            scope,
            /* values= */ new SimpleEnv<>(ImmutableMap.of()),
            env,
            log);
    ImmutableList.Builder<AnnoInfo> annoInfos = ImmutableList.builder();
    for (Tree.Anno annoTree : module.module().annos()) {
      ClassSymbol sym = resolve(annoTree.position(), annoTree.name());
      annoInfos.add(new AnnoInfo(module.source(), sym, annoTree, ImmutableMap.of()));
    }
    ImmutableList<AnnoInfo> annos = constEvaluator.evaluateAnnotations(annoInfos.build());

    int flags = module.module().open() ? TurbineFlag.ACC_OPEN : 0;

    // bind directives
    ImmutableList.Builder<ModuleInfo.RequireInfo> requires = ImmutableList.builder();
    ImmutableList.Builder<ModuleInfo.ExportInfo> exports = ImmutableList.builder();
    ImmutableList.Builder<ModuleInfo.OpenInfo> opens = ImmutableList.builder();
    ImmutableList.Builder<ModuleInfo.UseInfo> uses = ImmutableList.builder();
    ImmutableList.Builder<ModuleInfo.ProvideInfo> provides = ImmutableList.builder();
    boolean requiresJavaBase = false;
    for (ModDirective directive : module.module().directives()) {
      switch (directive.directiveKind()) {
        case REQUIRES:
          {
            ModRequires require = (ModRequires) directive;
            requiresJavaBase |= require.moduleName().equals(ModuleSymbol.JAVA_BASE.name());
            requires.add(bindRequires(require));
            break;
          }
        case EXPORTS:
          exports.add(bindExports((ModExports) directive));
          break;
        case OPENS:
          opens.add(bindOpens((ModOpens) directive));
          break;
        case USES:
          uses.add(bindUses((ModUses) directive));
          break;
        case PROVIDES:
          provides.add(bindProvides((ModProvides) directive));
          break;
      }
    }
    if (!requiresJavaBase) {
      // Everything requires java.base, either explicitly or implicitly.
      ModuleInfo javaBaseModule = moduleEnv.get(ModuleSymbol.JAVA_BASE);
      // Tolerate a missing java.base module, e.g. when compiling a module against a non-modular
      // bootclasspath, and just omit the version below.
      String javaBaseVersion = javaBaseModule != null ? javaBaseModule.version() : null;
      requires =
          ImmutableList.<RequireInfo>builder()
              .add(
                  new RequireInfo(
                      ModuleSymbol.JAVA_BASE.name(), TurbineFlag.ACC_MANDATED, javaBaseVersion))
              .addAll(requires.build());
    }

    return new SourceModuleInfo(
        module.module().moduleName(),
        moduleVersion.orElse(null),
        flags,
        annos,
        requires.build(),
        exports.build(),
        opens.build(),
        uses.build(),
        provides.build(),
        module.source());
  }

  private RequireInfo bindRequires(ModRequires directive) {
    String moduleName = directive.moduleName();
    int flags = 0;
    for (TurbineModifier mod : directive.mods()) {
      switch (mod) {
        case TRANSITIVE:
          flags |= mod.flag();
          break;
        case STATIC:
          // the 'static' modifier on requires translates to ACC_STATIC_PHASE, not ACC_STATIC
          flags |= TurbineFlag.ACC_STATIC_PHASE;
          break;
        default:
          throw new AssertionError(mod);
      }
    }
    ModuleInfo requires = moduleEnv.get(new ModuleSymbol(moduleName));
    return new RequireInfo(moduleName, flags, requires != null ? requires.version() : null);
  }

  private static ExportInfo bindExports(ModExports directive) {
    return new ExportInfo(directive.packageName(), directive.moduleNames());
  }

  private static OpenInfo bindOpens(ModOpens directive) {
    return new OpenInfo(directive.packageName(), directive.moduleNames());
  }

  private UseInfo bindUses(ModUses directive) {
    return new UseInfo(resolve(directive.position(), directive.typeName()));
  }

  private ProvideInfo bindProvides(ModProvides directive) {
    ClassSymbol sym = resolve(directive.position(), directive.typeName());
    ImmutableList.Builder<ClassSymbol> impls = ImmutableList.builder();
    for (ImmutableList<Ident> impl : directive.implNames()) {
      impls.add(resolve(directive.position(), impl));
    }
    return new ProvideInfo(sym, impls.build());
  }

  /* Resolves qualified class names. */
  private ClassSymbol resolve(int pos, ImmutableList<Tree.Ident> simpleNames) {
    LookupKey key = new LookupKey(simpleNames);
    LookupResult result = scope.lookup(key);
    if (result == null) {
      throw error(
          ErrorKind.SYMBOL_NOT_FOUND, pos, new ClassSymbol(Joiner.on('/').join(simpleNames)));
    }
    ClassSymbol sym = (ClassSymbol) result.sym();
    for (Tree.Ident name : result.remaining()) {
      ClassSymbol next = Resolve.resolve(env, /* origin= */ null, sym, name);
      if (next == null) {
        throw error(
            ErrorKind.SYMBOL_NOT_FOUND, pos, new ClassSymbol(sym.binaryName() + '$' + name));
      }
      sym = next;
    }
    return sym;
  }

  private TurbineError error(ErrorKind kind, int pos, Object... args) {
    return TurbineError.format(module.source(), pos, kind, args);
  }
}