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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
/*
* Copyright 2016 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.main;
import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
import static java.nio.charset.StandardCharsets.UTF_8;
import static java.util.Objects.requireNonNull;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.hash.Hashing;
import com.google.common.io.MoreFiles;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.turbine.binder.Binder;
import com.google.turbine.binder.Binder.BindingResult;
import com.google.turbine.binder.Binder.Statistics;
import com.google.turbine.binder.ClassPath;
import com.google.turbine.binder.ClassPathBinder;
import com.google.turbine.binder.CtSymClassBinder;
import com.google.turbine.binder.JimageClassBinder;
import com.google.turbine.binder.Processing;
import com.google.turbine.binder.bound.SourceTypeBoundClass;
import com.google.turbine.binder.sym.ClassSymbol;
import com.google.turbine.deps.Dependencies;
import com.google.turbine.deps.Transitive;
import com.google.turbine.diag.SourceFile;
import com.google.turbine.diag.TurbineError;
import com.google.turbine.lower.Lower;
import com.google.turbine.lower.Lower.Lowered;
import com.google.turbine.options.TurbineOptions;
import com.google.turbine.options.TurbineOptions.ReducedClasspathMode;
import com.google.turbine.options.TurbineOptionsParser;
import com.google.turbine.parse.Parser;
import com.google.turbine.proto.DepsProto;
import com.google.turbine.proto.ManifestProto;
import com.google.turbine.proto.ManifestProto.CompilationUnit;
import com.google.turbine.tree.Tree.CompUnit;
import com.google.turbine.zip.Zip;
import java.io.BufferedOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.Map;
import java.util.Optional;
import java.util.OptionalInt;
import java.util.jar.Attributes;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.JarOutputStream;
import java.util.jar.Manifest;
import java.util.zip.ZipEntry;
/** Main entry point for the turbine CLI. */
public final class Main {
private static final int BUFFER_SIZE = 65536;
// These attributes are used by JavaBuilder, Turbine, and ijar.
// They must all be kept in sync.
static final String MANIFEST_DIR = "META-INF/";
static final String MANIFEST_NAME = JarFile.MANIFEST_NAME;
static final Attributes.Name TARGET_LABEL = new Attributes.Name("Target-Label");
static final Attributes.Name INJECTING_RULE_KIND = new Attributes.Name("Injecting-Rule-Kind");
public static void main(String[] args) throws IOException {
boolean ok;
try {
compile(args);
ok = true;
} catch (TurbineError | UsageException e) {
System.err.println(e.getMessage());
ok = false;
} catch (Throwable turbineCrash) {
turbineCrash.printStackTrace();
ok = false;
}
System.exit(ok ? 0 : 1);
}
/** The result of a turbine invocation. */
@AutoValue
public abstract static class Result {
/** Returns {@code true} if transitive classpath fallback occurred. */
public abstract boolean transitiveClasspathFallback();
/** The length of the transitive classpath. */
public abstract int transitiveClasspathLength();
/**
* The length of the reduced classpath, or {@link #transitiveClasspathLength} if classpath
* reduction is not supported.
*/
public abstract int reducedClasspathLength();
public abstract Statistics processorStatistics();
static Result create(
boolean transitiveClasspathFallback,
int transitiveClasspathLength,
int reducedClasspathLength,
Statistics processorStatistics) {
return new AutoValue_Main_Result(
transitiveClasspathFallback,
transitiveClasspathLength,
reducedClasspathLength,
processorStatistics);
}
}
@CanIgnoreReturnValue
public static Result compile(String[] args) throws IOException {
return compile(TurbineOptionsParser.parse(Arrays.asList(args)));
}
@CanIgnoreReturnValue
public static Result compile(TurbineOptions options) throws IOException {
usage(options);
ImmutableList<CompUnit> units = parseAll(options);
ClassPath bootclasspath = bootclasspath(options);
BindingResult bound;
ReducedClasspathMode reducedClasspathMode = options.reducedClasspathMode();
if (reducedClasspathMode == ReducedClasspathMode.JAVABUILDER_REDUCED
&& options.directJars().isEmpty()) {
// the compilation doesn't support reduced classpaths
// TODO(cushon): make this a usage error, see TODO in Dependencies.reduceClasspath
reducedClasspathMode = ReducedClasspathMode.NONE;
}
boolean transitiveClasspathFallback = false;
ImmutableList<String> classPath = options.classPath();
int transitiveClasspathLength = classPath.size();
int reducedClasspathLength = classPath.size();
switch (reducedClasspathMode) {
case NONE:
bound = bind(options, units, bootclasspath, classPath);
break;
case BAZEL_FALLBACK:
reducedClasspathLength = options.reducedClasspathLength();
bound = bind(options, units, bootclasspath, classPath);
transitiveClasspathFallback = true;
break;
case JAVABUILDER_REDUCED:
Collection<String> reducedClasspath =
Dependencies.reduceClasspath(classPath, options.directJars(), options.depsArtifacts());
reducedClasspathLength = reducedClasspath.size();
try {
bound = bind(options, units, bootclasspath, reducedClasspath);
} catch (TurbineError e) {
bound = fallback(options, units, bootclasspath, classPath);
transitiveClasspathFallback = true;
}
break;
case BAZEL_REDUCED:
transitiveClasspathLength = options.fullClasspathLength();
try {
bound = bind(options, units, bootclasspath, classPath);
} catch (TurbineError e) {
writeJdepsForFallback(options);
return Result.create(
/* transitiveClasspathFallback= */ true,
/* transitiveClasspathLength= */ transitiveClasspathLength,
/* reducedClasspathLength= */ reducedClasspathLength,
Statistics.empty());
}
break;
default:
throw new AssertionError(reducedClasspathMode);
}
if (options.outputDeps().isPresent()
|| options.output().isPresent()
|| options.outputManifest().isPresent()) {
// TODO(cushon): parallelize
Lowered lowered =
Lower.lowerAll(
Lower.LowerOptions.builder()
.languageVersion(options.languageVersion())
.emitPrivateFields(options.javacOpts().contains("-XDturbine.emitPrivateFields"))
.build(),
bound.units(),
bound.modules(),
bound.classPathEnv());
if (options.outputDeps().isPresent()) {
DepsProto.Dependencies deps =
Dependencies.collectDeps(options.targetLabel(), bootclasspath, bound, lowered);
Path path = Paths.get(options.outputDeps().get());
/*
* TODO: cpovirk - Consider checking outputDeps for validity earlier so that anyone who
* `--output_deps=/` or similar will get a proper error instead of NPE.
*/
Files.createDirectories(requireNonNull(path.getParent()));
try (OutputStream os = new BufferedOutputStream(Files.newOutputStream(path))) {
deps.writeTo(os);
}
}
if (options.output().isPresent()) {
Map<String, byte[]> transitive = Transitive.collectDeps(bootclasspath, bound);
writeOutput(options, bound.generatedClasses(), lowered.bytes(), transitive);
}
if (options.outputManifest().isPresent()) {
writeManifestProto(options, bound.units(), bound.generatedSources());
}
}
writeSources(options, bound.generatedSources());
writeResources(options, bound.generatedClasses());
return Result.create(
/* transitiveClasspathFallback= */ transitiveClasspathFallback,
/* transitiveClasspathLength= */ transitiveClasspathLength,
/* reducedClasspathLength= */ reducedClasspathLength,
bound.statistics());
}
// don't inline this; we want it to show up in profiles
private static BindingResult fallback(
TurbineOptions options,
ImmutableList<CompUnit> units,
ClassPath bootclasspath,
ImmutableList<String> classPath)
throws IOException {
return bind(options, units, bootclasspath, classPath);
}
/**
* Writes a jdeps proto that indiciates to Blaze that the transitive classpath compilation failed,
* and it should fall back to the transitive classpath. Used only when {@link
* ReducedClasspathMode#BAZEL_REDUCED}.
*/
public static void writeJdepsForFallback(TurbineOptions options) throws IOException {
try (OutputStream os =
new BufferedOutputStream(Files.newOutputStream(Paths.get(options.outputDeps().get())))) {
DepsProto.Dependencies.newBuilder()
.setRuleLabel(options.targetLabel().get())
.setRequiresReducedClasspathFallback(true)
.build()
.writeTo(os);
}
}
private static BindingResult bind(
TurbineOptions options,
ImmutableList<CompUnit> units,
ClassPath bootclasspath,
Collection<String> classpath)
throws IOException {
return Binder.bind(
units,
ClassPathBinder.bindClasspath(toPaths(classpath)),
Processing.initializeProcessors(
/* sourceVersion= */ options.languageVersion().sourceVersion(),
/* javacopts= */ options.javacOpts(),
/* processorNames= */ options.processors(),
Processing.processorLoader(
/* processorPath= */ options.processorPath(),
/* builtinProcessors= */ options.builtinProcessors())),
bootclasspath,
/* moduleVersion= */ Optional.empty());
}
private static void usage(TurbineOptions options) {
if (options.help()) {
throw new UsageException();
}
if (!options.output().isPresent()
&& !options.gensrcOutput().isPresent()
&& !options.resourceOutput().isPresent()) {
throw new UsageException(
"at least one of --output, --gensrc_output, or --resource_output is required");
}
}
private static ClassPath bootclasspath(TurbineOptions options) throws IOException {
// if both --release and --bootclasspath are specified, --release wins
OptionalInt release = options.languageVersion().release();
if (release.isPresent() && options.system().isPresent()) {
throw new UsageException("expected at most one of --release and --system");
}
if (release.isPresent()) {
if (release.getAsInt() == Integer.parseInt(JAVA_SPECIFICATION_VERSION.value())) {
// if --release matches the host JDK, use its jimage instead of ct.sym
return JimageClassBinder.bindDefault();
}
// ... otherwise, search ct.sym for a matching release
ClassPath bootclasspath = CtSymClassBinder.bind(release.getAsInt());
if (bootclasspath == null) {
throw new UsageException("not a supported release: " + release);
}
return bootclasspath;
}
if (options.system().isPresent()) {
// look for a jimage in the given JDK
return JimageClassBinder.bind(options.system().get());
}
// the bootclasspath might be empty, e.g. when compiling java.lang
return ClassPathBinder.bindClasspath(toPaths(options.bootClassPath()));
}
/** Parse all source files and source jars. */
// TODO(cushon): parallelize
private static ImmutableList<CompUnit> parseAll(TurbineOptions options) throws IOException {
return parseAll(options.sources(), options.sourceJars());
}
static ImmutableList<CompUnit> parseAll(Iterable<String> sources, Iterable<String> sourceJars)
throws IOException {
ImmutableList.Builder<CompUnit> units = ImmutableList.builder();
for (String source : sources) {
Path path = Paths.get(source);
units.add(Parser.parse(new SourceFile(source, MoreFiles.asCharSource(path, UTF_8).read())));
}
for (String sourceJar : sourceJars) {
try (Zip.ZipIterable iterable = new Zip.ZipIterable(Paths.get(sourceJar))) {
for (Zip.Entry ze : iterable) {
if (ze.name().endsWith(".java")) {
String name = ze.name();
String source = new String(ze.data(), UTF_8);
units.add(Parser.parse(new SourceFile(name, source)));
}
}
}
}
return units.build();
}
/** Writes source files generated by annotation processors. */
private static void writeSources(
TurbineOptions options, ImmutableMap<String, SourceFile> generatedSources)
throws IOException {
if (!options.gensrcOutput().isPresent()) {
return;
}
Path path = Paths.get(options.gensrcOutput().get());
if (Files.isDirectory(path)) {
for (SourceFile source : generatedSources.values()) {
Path to = path.resolve(source.path());
// TODO: cpovirk - Consider checking gensrcOutput, similar to outputDeps.
Files.createDirectories(requireNonNull(to.getParent()));
Files.writeString(to, source.source());
}
return;
}
try (OutputStream os = Files.newOutputStream(path);
BufferedOutputStream bos = new BufferedOutputStream(os, BUFFER_SIZE);
JarOutputStream jos = new JarOutputStream(bos)) {
for (SourceFile source : generatedSources.values()) {
addEntry(jos, source.path(), source.source().getBytes(UTF_8));
}
writeManifest(jos, manifest());
}
}
/** Writes resource files generated by annotation processors. */
private static void writeResources(
TurbineOptions options, ImmutableMap<String, byte[]> generatedResources) throws IOException {
if (!options.resourceOutput().isPresent()) {
return;
}
Path path = Paths.get(options.resourceOutput().get());
if (Files.isDirectory(path)) {
for (Map.Entry<String, byte[]> resource : generatedResources.entrySet()) {
Path to = path.resolve(resource.getKey());
// TODO: cpovirk - Consider checking resourceOutput, similar to outputDeps.
Files.createDirectories(requireNonNull(to.getParent()));
Files.write(to, resource.getValue());
}
return;
}
try (OutputStream os = Files.newOutputStream(path);
BufferedOutputStream bos = new BufferedOutputStream(os, BUFFER_SIZE);
JarOutputStream jos = new JarOutputStream(bos)) {
for (Map.Entry<String, byte[]> resource : generatedResources.entrySet()) {
addEntry(jos, resource.getKey(), resource.getValue());
}
}
}
/** Writes bytecode to the output jar. */
private static void writeOutput(
TurbineOptions options,
Map<String, byte[]> generated,
Map<String, byte[]> lowered,
Map<String, byte[]> transitive)
throws IOException {
Path path = Paths.get(options.output().get());
try (OutputStream os = Files.newOutputStream(path);
BufferedOutputStream bos = new BufferedOutputStream(os, BUFFER_SIZE);
JarOutputStream jos = new JarOutputStream(bos)) {
for (Map.Entry<String, byte[]> entry : lowered.entrySet()) {
addEntry(jos, entry.getKey() + ".class", entry.getValue());
}
for (Map.Entry<String, byte[]> entry : generated.entrySet()) {
addEntry(jos, entry.getKey(), entry.getValue());
}
for (Map.Entry<String, byte[]> entry : transitive.entrySet()) {
addEntry(
jos, ClassPathBinder.TRANSITIVE_PREFIX + entry.getKey() + ".class", entry.getValue());
}
if (options.targetLabel().isPresent()) {
writeManifest(jos, manifest(options));
}
}
}
private static void writeManifestProto(
TurbineOptions options,
ImmutableMap<ClassSymbol, SourceTypeBoundClass> units,
ImmutableMap<String, SourceFile> generatedSources)
throws IOException {
ManifestProto.Manifest.Builder manifest = ManifestProto.Manifest.newBuilder();
for (Map.Entry<ClassSymbol, SourceTypeBoundClass> e : units.entrySet()) {
manifest.addCompilationUnit(
CompilationUnit.newBuilder()
.setPath(e.getValue().source().path())
.setPkg(e.getKey().packageName())
.addTopLevel(e.getKey().simpleName())
.setGeneratedByAnnotationProcessor(
generatedSources.containsKey(e.getValue().source().path()))
.build());
}
try (OutputStream os =
new BufferedOutputStream(
Files.newOutputStream(Paths.get(options.outputManifest().get())))) {
manifest.build().writeTo(os);
}
}
/** Normalize timestamps. */
static final LocalDateTime DEFAULT_TIMESTAMP = LocalDateTime.of(2010, 1, 1, 0, 0, 0);
private static void addEntry(JarOutputStream jos, String name, byte[] bytes) throws IOException {
JarEntry je = new JarEntry(name);
je.setTimeLocal(DEFAULT_TIMESTAMP);
je.setMethod(ZipEntry.STORED);
je.setSize(bytes.length);
je.setCrc(Hashing.crc32().hashBytes(bytes).padToLong());
jos.putNextEntry(je);
jos.write(bytes);
}
private static void writeManifest(JarOutputStream jos, Manifest manifest) throws IOException {
addEntry(jos, MANIFEST_DIR, new byte[] {});
ByteArrayOutputStream out = new ByteArrayOutputStream();
manifest.write(out);
addEntry(jos, MANIFEST_NAME, out.toByteArray());
}
/** Creates a default {@link Manifest}. */
private static Manifest manifest() {
Manifest manifest = new Manifest();
Attributes attributes = manifest.getMainAttributes();
attributes.put(Attributes.Name.MANIFEST_VERSION, "1.0");
Attributes.Name createdBy = new Attributes.Name("Created-By");
if (attributes.getValue(createdBy) == null) {
attributes.put(createdBy, "bazel");
}
return manifest;
}
/** Creates a {@link Manifest} that includes the target label and injecting rule kind. */
private static Manifest manifest(TurbineOptions turbineOptions) {
Manifest manifest = manifest();
Attributes attributes = manifest.getMainAttributes();
if (turbineOptions.targetLabel().isPresent()) {
attributes.put(TARGET_LABEL, turbineOptions.targetLabel().get());
}
if (turbineOptions.injectingRuleKind().isPresent()) {
attributes.put(INJECTING_RULE_KIND, turbineOptions.injectingRuleKind().get());
}
return manifest;
}
private static ImmutableList<Path> toPaths(Iterable<String> paths) {
ImmutableList.Builder<Path> result = ImmutableList.builder();
for (String path : paths) {
result.add(Paths.get(path));
}
return result.build();
}
private Main() {}
}
|