Search in sources :

Example 1 with BundleModulesValidator

use of com.android.tools.build.bundletool.validation.BundleModulesValidator in project bundletool by google.

the class BuildBundleCommand method execute.

public void execute() {
    validateInput();
    try (Closer closer = Closer.create()) {
        ImmutableList.Builder<ZipFile> moduleZipFilesBuilder = ImmutableList.builder();
        for (Path modulePath : getModulesPaths()) {
            try {
                moduleZipFilesBuilder.add(closer.register(new ZipFile(modulePath.toFile())));
            } catch (ZipException e) {
                throw CommandExecutionException.builder().withCause(e).withInternalMessage("File '%s' does not seem to be a valid ZIP file.", modulePath).build();
            } catch (IOException e) {
                throw CommandExecutionException.builder().withCause(e).withInternalMessage("Unable to read file '%s'.", modulePath).build();
            }
        }
        ImmutableList<ZipFile> moduleZipFiles = moduleZipFilesBuilder.build();
        // Read the Bundle Config file if provided by the developer.
        BundleConfig bundleConfig = getBundleConfig().orElse(BundleConfig.getDefaultInstance()).toBuilder().setBundletool(Bundletool.newBuilder().setVersion(BundleToolVersion.getCurrentVersion().toString())).build();
        ImmutableList<BundleModule> modules = new BundleModulesValidator().validate(moduleZipFiles, bundleConfig);
        checkState(moduleZipFiles.size() == modules.size(), "Incorrect number of modules parsed (%s != %s).", moduleZipFiles.size(), modules.size());
        ImmutableList.Builder<BundleModule> modulesWithTargeting = ImmutableList.builder();
        for (BundleModule module : modules) {
            BundleModule.Builder moduleWithTargeting = module.toBuilder();
            Optional<Assets> assetsTargeting = generateAssetsTargeting(module);
            assetsTargeting.ifPresent(moduleWithTargeting::setAssetsConfig);
            Optional<NativeLibraries> nativeLibrariesTargeting = generateNativeLibrariesTargeting(module);
            nativeLibrariesTargeting.ifPresent(moduleWithTargeting::setNativeConfig);
            Optional<ApexImages> apexImagesTargeting = generateApexImagesTargeting(module);
            apexImagesTargeting.ifPresent(moduleWithTargeting::setApexConfig);
            modulesWithTargeting.add(moduleWithTargeting.build());
        }
        AppBundle appBundle = AppBundle.buildFromModules(modulesWithTargeting.build(), bundleConfig, getBundleMetadata());
        Path outputDirectory = getOutputPath().toAbsolutePath().getParent();
        if (Files.notExists(outputDirectory)) {
            logger.info("Output directory '" + outputDirectory + "' does not exist, creating it.");
            FileUtils.createDirectories(outputDirectory);
        }
        if (getOverwriteOutput()) {
            Files.deleteIfExists(getOutputPath());
        }
        new AppBundleSerializer(getUncompressedBundle()).writeToDisk(appBundle, getOutputPath());
    } catch (IOException e) {
        throw new UncheckedIOException(e);
    }
}
Also used : Closer(com.google.common.io.Closer) ZipPath(com.android.tools.build.bundletool.model.ZipPath) Path(java.nio.file.Path) ApexImages(com.android.bundle.Files.ApexImages) AppBundle(com.android.tools.build.bundletool.model.AppBundle) BundleModulesValidator(com.android.tools.build.bundletool.validation.BundleModulesValidator) NativeLibraries(com.android.bundle.Files.NativeLibraries) ImmutableList(com.google.common.collect.ImmutableList) ImmutableList.toImmutableList(com.google.common.collect.ImmutableList.toImmutableList) ZipException(java.util.zip.ZipException) UncheckedIOException(java.io.UncheckedIOException) IOException(java.io.IOException) UncheckedIOException(java.io.UncheckedIOException) AppBundleSerializer(com.android.tools.build.bundletool.io.AppBundleSerializer) BundleModule(com.android.tools.build.bundletool.model.BundleModule) BundleConfig(com.android.bundle.Config.BundleConfig) ZipFile(java.util.zip.ZipFile) Assets(com.android.bundle.Files.Assets)

Aggregations

BundleConfig (com.android.bundle.Config.BundleConfig)1 ApexImages (com.android.bundle.Files.ApexImages)1 Assets (com.android.bundle.Files.Assets)1 NativeLibraries (com.android.bundle.Files.NativeLibraries)1 AppBundleSerializer (com.android.tools.build.bundletool.io.AppBundleSerializer)1 AppBundle (com.android.tools.build.bundletool.model.AppBundle)1 BundleModule (com.android.tools.build.bundletool.model.BundleModule)1 ZipPath (com.android.tools.build.bundletool.model.ZipPath)1 BundleModulesValidator (com.android.tools.build.bundletool.validation.BundleModulesValidator)1 ImmutableList (com.google.common.collect.ImmutableList)1 ImmutableList.toImmutableList (com.google.common.collect.ImmutableList.toImmutableList)1 Closer (com.google.common.io.Closer)1 IOException (java.io.IOException)1 UncheckedIOException (java.io.UncheckedIOException)1 Path (java.nio.file.Path)1 ZipException (java.util.zip.ZipException)1 ZipFile (java.util.zip.ZipFile)1