blob: 9aab62c9f0888c15bd489cc918ebe39786789979 [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8;
import static com.android.tools.r8.utils.FileUtils.DEX_EXTENSION;
import com.android.tools.r8.origin.Origin;
import com.android.tools.r8.origin.PathOrigin;
import com.android.tools.r8.utils.DescriptorUtils;
import com.android.tools.r8.utils.FileUtils;
import com.android.tools.r8.utils.IOExceptionDiagnostic;
import com.android.tools.r8.utils.ZipUtils;
import com.google.common.io.ByteStreams;
import com.google.common.io.Closer;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.zip.ZipOutputStream;
/**
* Consumer for DEX encoded programs.
*
* <p>This consumer receives DEX file content for each Java class-file input.
*/
public interface DexFilePerClassFileConsumer extends ProgramConsumer {
/**
* Callback to receive DEX data for a single Java class-file input and its companion classes.
*
* <p>There is no guaranteed order and files might be written concurrently.
*
* <p>The consumer is expected not to throw, but instead report any errors via the diagnostics
* {@param handler}. If an error is reported via {@param handler} and no exceptions are thrown,
* then the compiler guaranties to exit with an error.
*
* @param primaryClassDescriptor Class descriptor of the class from the input class-file.
* @param data DEX encoded data.
* @param descriptors Class descriptors for all classes defined in the DEX data.
* @param handler Diagnostics handler for reporting.
*/
void accept(
String primaryClassDescriptor,
byte[] data,
Set<String> descriptors,
DiagnosticsHandler handler);
/** Empty consumer to request the production of the resource but ignore its value. */
static DexFilePerClassFileConsumer emptyConsumer() {
return ForwardingConsumer.EMPTY_CONSUMER;
}
/** Forwarding consumer to delegate to an optional existing consumer. */
class ForwardingConsumer implements DexFilePerClassFileConsumer {
private static final DexFilePerClassFileConsumer EMPTY_CONSUMER = new ForwardingConsumer(null);
private final DexFilePerClassFileConsumer consumer;
public ForwardingConsumer(DexFilePerClassFileConsumer consumer) {
this.consumer = consumer;
}
@Override
public void accept(
String primaryClassDescriptor,
byte[] data,
Set<String> descriptors,
DiagnosticsHandler handler) {
if (consumer != null) {
consumer.accept(primaryClassDescriptor, data, descriptors, handler);
}
}
@Override
public void finished(DiagnosticsHandler handler) {
if (consumer != null) {
consumer.finished(handler);
}
}
}
/** Archive consumer to write program resources to a zip archive. */
class ArchiveConsumer extends ForwardingConsumer implements InternalProgramOutputPathConsumer {
private static String getDexFileName(String classDescriptor) {
assert classDescriptor != null && DescriptorUtils.isClassDescriptor(classDescriptor);
return DescriptorUtils.getClassBinaryNameFromDescriptor(classDescriptor) + DEX_EXTENSION;
}
private final Path archive;
private final Origin origin;
private ZipOutputStream stream = null;
private boolean closed = false;
public ArchiveConsumer(Path archive) {
this(archive, null);
}
public ArchiveConsumer(Path archive, DexFilePerClassFileConsumer consumer) {
super(consumer);
this.archive = archive;
origin = new PathOrigin(archive);
}
@Override
public void accept(
String primaryClassDescriptor,
byte[] data,
Set<String> descriptors,
DiagnosticsHandler handler) {
super.accept(primaryClassDescriptor, data, descriptors, handler);
synchronizedWrite(getDexFileName(primaryClassDescriptor), data, handler);
}
@Override
public void finished(DiagnosticsHandler handler) {
super.finished(handler);
assert !closed;
closed = true;
try {
if (stream != null) {
stream.close();
stream = null;
}
} catch (IOException e) {
handler.error(new IOExceptionDiagnostic(e, origin));
}
}
@Override
public Path internalGetOutputPath() {
return archive;
}
private ZipOutputStream getStream(DiagnosticsHandler handler) {
assert !closed;
if (stream == null) {
try {
stream =
new ZipOutputStream(
Files.newOutputStream(
archive, StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING));
} catch (IOException e) {
handler.error(new IOExceptionDiagnostic(e, origin));
}
}
return stream;
}
private synchronized void synchronizedWrite(
String entry, byte[] content, DiagnosticsHandler handler) {
try {
ZipUtils.writeToZipStream(getStream(handler), entry, content);
} catch (IOException e) {
handler.error(new IOExceptionDiagnostic(e, origin));
}
}
public static void writeResources(
Path archive,
List<ProgramResource> resources,
Map<Resource, String> primaryClassDescriptors)
throws IOException, ResourceException {
OpenOption[] options =
new OpenOption[] {StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING};
try (Closer closer = Closer.create()) {
try (ZipOutputStream out = new ZipOutputStream(Files.newOutputStream(archive, options))) {
for (ProgramResource resource : resources) {
String primaryClassDescriptor = primaryClassDescriptors.get(resource);
String entryName = getDexFileName(primaryClassDescriptor);
byte[] bytes = ByteStreams.toByteArray(closer.register(resource.getByteStream()));
ZipUtils.writeToZipStream(out, entryName, bytes);
}
}
}
}
}
/** Directory consumer to write program resources to a directory. */
class DirectoryConsumer extends ForwardingConsumer implements InternalProgramOutputPathConsumer {
private final Path directory;
public DirectoryConsumer(Path directory) {
this(directory, null);
}
public DirectoryConsumer(Path directory, DexFilePerClassFileConsumer consumer) {
super(consumer);
this.directory = directory;
}
@Override
public void accept(
String primaryClassDescriptor,
byte[] data,
Set<String> descriptors,
DiagnosticsHandler handler) {
super.accept(primaryClassDescriptor, data, descriptors, handler);
Path target = getTargetDexFile(directory, primaryClassDescriptor);
try {
writeFile(data, target);
} catch (IOException e) {
handler.error(new IOExceptionDiagnostic(e, new PathOrigin(target)));
}
}
@Override
public void finished(DiagnosticsHandler handler) {
super.finished(handler);
}
@Override
public Path internalGetOutputPath() {
return directory;
}
public static void writeResources(
Path directory,
List<ProgramResource> resources,
Map<Resource, String> primaryClassDescriptors)
throws IOException, ResourceException {
try (Closer closer = Closer.create()) {
for (ProgramResource resource : resources) {
String primaryClassDescriptor = primaryClassDescriptors.get(resource);
Path target = getTargetDexFile(directory, primaryClassDescriptor);
writeFile(ByteStreams.toByteArray(closer.register(resource.getByteStream())), target);
}
}
}
private static Path getTargetDexFile(Path directory, String primaryClassDescriptor) {
return directory.resolve(ArchiveConsumer.getDexFileName(primaryClassDescriptor));
}
private static void writeFile(byte[] contents, Path target) throws IOException {
Files.createDirectories(target.getParent());
FileUtils.writeToFile(target, null, contents);
}
}
}