Search in sources :

Example 26 with NativeLibraries

use of com.android.bundle.Files.NativeLibraries 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

NativeLibraries (com.android.bundle.Files.NativeLibraries)26 Test (org.junit.Test)22 BundleModuleBuilder (com.android.tools.build.bundletool.testing.BundleModuleBuilder)18 BundleModule (com.android.tools.build.bundletool.model.BundleModule)17 ModuleSplit (com.android.tools.build.bundletool.model.ModuleSplit)10 ZipPath (com.android.tools.build.bundletool.model.ZipPath)6 Assets (com.android.bundle.Files.Assets)5 InvalidBundleException (com.android.tools.build.bundletool.model.exceptions.InvalidBundleException)5 TargetingUtils.nativeDirectoryTargeting (com.android.tools.build.bundletool.testing.TargetingUtils.nativeDirectoryTargeting)5 ResourceTable (com.android.aapt.Resources.ResourceTable)4 AbiAlias (com.android.bundle.Targeting.Abi.AbiAlias)4 ApkTargeting (com.android.bundle.Targeting.ApkTargeting)4 VariantTargeting (com.android.bundle.Targeting.VariantTargeting)4 AndroidManifest (com.android.tools.build.bundletool.model.AndroidManifest)4 AppBundle (com.android.tools.build.bundletool.model.AppBundle)4 BundleModuleName (com.android.tools.build.bundletool.model.BundleModuleName)4 StampType (com.android.tools.build.bundletool.model.SourceStamp.StampType)4 ManifestProtoUtils.androidManifest (com.android.tools.build.bundletool.testing.ManifestProtoUtils.androidManifest)4 TargetingUtils.mergeApkTargeting (com.android.tools.build.bundletool.testing.TargetingUtils.mergeApkTargeting)4 TargetingUtils.nativeLibraries (com.android.tools.build.bundletool.testing.TargetingUtils.nativeLibraries)4