use of com.android.bundle.Targeting.TextureCompressionFormatTargeting in project bundletool by google.
the class BuildApksManagerTest method splits_assetTextureCompressionFormatWithoutSuffixStripped.
@Test
public void splits_assetTextureCompressionFormatWithoutSuffixStripped() throws Exception {
Path bundlePath = createAppBundleWithBaseModuleWithTextureTargeting(/* tcfSplittingEnabled= */
true, /* stripTargetingSuffixEnabled= */
false);
TestComponent.useTestModule(this, createTestModuleBuilder().withBundlePath(bundlePath).withOutputPath(outputFilePath).build());
buildApksManager.execute();
ZipFile apkSetFile = openZipFile(outputFilePath.toFile());
BuildApksResult result = extractTocFromApkSetFile(apkSetFile, outputDir);
ImmutableList<Variant> splitApkVariants = splitApkVariants(result);
ImmutableList<ApkDescription> splitApks = apkDescriptions(splitApkVariants);
assertThat(splitApkVariants(result)).hasSize(1);
Variant splitApkVariant = splitApkVariants(result).get(0);
assertThat(splitApkVariant.getApkSetList()).hasSize(1);
ImmutableList<ApkDescription> tcfSplits = splitApks.stream().filter(apkDesc -> apkDesc.getTargeting().hasTextureCompressionFormatTargeting()).collect(toImmutableList());
assertThat(apkNamesInApkDescriptions(tcfSplits)).containsExactly("base-atc.apk", "base-etc1_rgb8.apk");
for (ApkDescription split : tcfSplits) {
TextureCompressionFormatTargeting textureFormatTargeting = split.getTargeting().getTextureCompressionFormatTargeting();
assertThat(textureFormatTargeting.getValueList()).hasSize(1);
TextureCompressionFormat format = textureFormatTargeting.getValueList().get(0);
Set<String> files = filesInApk(split, apkSetFile);
switch(format.getAlias()) {
case ATC:
assertThat(files).contains("assets/textures#tcf_atc/texture.dat");
break;
case ETC1_RGB8:
assertThat(files).contains("assets/textures#tcf_etc1/texture.dat");
break;
default:
fail("Unexpected texture compression format");
}
}
}
use of com.android.bundle.Targeting.TextureCompressionFormatTargeting in project bundletool by google.
the class BuildApksManagerTest method splits_assetTextureCompressionFormatWithSuffixStripped.
@Test
public void splits_assetTextureCompressionFormatWithSuffixStripped() throws Exception {
Path bundlePath = createAppBundleWithBaseModuleWithTextureTargeting(/* tcfSplittingEnabled= */
true, /* stripTargetingSuffixEnabled= */
true);
TestComponent.useTestModule(this, createTestModuleBuilder().withBundlePath(bundlePath).withOutputPath(outputFilePath).build());
buildApksManager.execute();
ZipFile apkSetFile = openZipFile(outputFilePath.toFile());
BuildApksResult result = extractTocFromApkSetFile(apkSetFile, outputDir);
ImmutableList<Variant> splitApkVariants = splitApkVariants(result);
ImmutableList<ApkDescription> splitApks = apkDescriptions(splitApkVariants);
assertThat(splitApkVariants(result)).hasSize(1);
Variant splitApkVariant = splitApkVariants(result).get(0);
assertThat(splitApkVariant.getApkSetList()).hasSize(1);
ImmutableList<ApkDescription> tcfSplits = splitApks.stream().filter(apkDesc -> apkDesc.getTargeting().hasTextureCompressionFormatTargeting()).collect(toImmutableList());
assertThat(apkNamesInApkDescriptions(tcfSplits)).containsExactly("base-atc.apk", "base-etc1_rgb8.apk");
for (ApkDescription split : tcfSplits) {
TextureCompressionFormatTargeting textureFormatTargeting = split.getTargeting().getTextureCompressionFormatTargeting();
assertThat(textureFormatTargeting.getValueList()).hasSize(1);
TextureCompressionFormat format = textureFormatTargeting.getValueList().get(0);
Set<String> files = filesInApk(split, apkSetFile);
switch(format.getAlias()) {
case ATC:
assertThat(files).contains("assets/textures/texture.dat");
break;
case ETC1_RGB8:
assertThat(files).contains("assets/textures/texture.dat");
break;
default:
fail("Unexpected texture compression format");
}
}
}
use of com.android.bundle.Targeting.TextureCompressionFormatTargeting in project bundletool by google.
the class BuildApksManagerTest method splits_assetMixedTextureCompressionFormat.
@Test
public void splits_assetMixedTextureCompressionFormat() throws Exception {
// Create a bundle with assets containing both ETC1 textures and textures without
// targeting specified.
AppBundle appBundle = new AppBundleBuilder().addModule("base", builder -> builder.addFile("assets/textures/untargeted_texture.dat").addFile("assets/textures#tcf_etc1/etc1_texture.dat").setManifest(androidManifest("com.test.app")).setAssetsConfig(assets(targetedAssetsDirectory("assets/textures", assetsDirectoryTargeting(alternativeTextureCompressionTargeting(ETC1_RGB8))), targetedAssetsDirectory("assets/textures#tcf_etc1", assetsDirectoryTargeting(textureCompressionTargeting(ETC1_RGB8)))))).setBundleConfig(BundleConfigBuilder.create().addSplitDimension(Value.TEXTURE_COMPRESSION_FORMAT, /* negate= */
false).build()).build();
TestComponent.useTestModule(this, createTestModuleBuilder().withAppBundle(appBundle).withOutputPath(outputFilePath).build());
buildApksManager.execute();
ZipFile apkSetFile = openZipFile(outputFilePath.toFile());
BuildApksResult result = extractTocFromApkSetFile(apkSetFile, outputDir);
ImmutableList<Variant> splitApkVariants = splitApkVariants(result);
ImmutableList<ApkDescription> splitApks = apkDescriptions(splitApkVariants);
assertThat(splitApkVariants(result)).hasSize(1);
Variant splitApkVariant = splitApkVariants(result).get(0);
// Check that apks for ETC1 and "Other TCF" have been created
assertThat(splitApkVariant.getApkSetList()).hasSize(1);
ImmutableList<ApkDescription> tcfSplits = splitApks.stream().filter(apkDesc -> apkDesc.getTargeting().hasTextureCompressionFormatTargeting()).collect(toImmutableList());
assertThat(apkNamesInApkDescriptions(tcfSplits)).containsExactly("base-other_tcf.apk", "base-etc1_rgb8.apk");
// Check the content of the apks
for (ApkDescription split : tcfSplits) {
TextureCompressionFormatTargeting textureFormatTargeting = split.getTargeting().getTextureCompressionFormatTargeting();
Set<String> files = filesInApk(split, apkSetFile);
if (textureFormatTargeting.getValueList().isEmpty()) {
// The "Other TCF" split contains the untargeted texture only.
assertThat(files).contains("assets/textures/untargeted_texture.dat");
} else {
// The "ETC1" split contains the ETC1 texture only.
TextureCompressionFormat format = textureFormatTargeting.getValueList().get(0);
assertThat(format.getAlias()).isEqualTo(ETC1_RGB8);
assertThat(files).contains("assets/textures#tcf_etc1/etc1_texture.dat");
}
}
}
use of com.android.bundle.Targeting.TextureCompressionFormatTargeting in project bundletool by google.
the class BuildApksManagerTest method splits_assetMixedTextureTargetingWithSuffixStripped_featureModule.
@Test
public void splits_assetMixedTextureTargetingWithSuffixStripped_featureModule() throws Exception {
// Create a bundle with assets containing both ETC1 textures and textures without
// targeting specified.
AppBundle appBundle = new AppBundleBuilder().addModule("base", builder -> builder.setManifest(androidManifest("com.test.app")).setResourceTable(resourceTableWithTestLabel("Test feature"))).addModule("feature_tcf_assets", builder -> builder.addFile("assets/textures/untargeted_texture.dat").addFile("assets/textures#tcf_etc1/etc1_texture.dat").setAssetsConfig(assets(targetedAssetsDirectory("assets/textures", assetsDirectoryTargeting(alternativeTextureCompressionTargeting(ETC1_RGB8))), targetedAssetsDirectory("assets/textures#tcf_etc1", assetsDirectoryTargeting(textureCompressionTargeting(ETC1_RGB8))))).setManifest(androidManifestForFeature("com.test.app", withTitle("@string/test_label", TEST_LABEL_RESOURCE_ID)))).setBundleConfig(BundleConfigBuilder.create().addSplitDimension(Value.TEXTURE_COMPRESSION_FORMAT, /* negate= */
false, /* stripSuffix= */
true, /* defaultSuffix= */
"etc1").build()).build();
TestComponent.useTestModule(this, createTestModuleBuilder().withAppBundle(appBundle).withOutputPath(outputFilePath).build());
buildApksManager.execute();
ZipFile apkSetFile = openZipFile(outputFilePath.toFile());
BuildApksResult result = extractTocFromApkSetFile(apkSetFile, outputDir);
ImmutableList<Variant> splitApkVariants = splitApkVariants(result);
ImmutableList<ApkDescription> splitApks = apkDescriptions(splitApkVariants);
assertThat(splitApkVariants(result)).hasSize(1);
Variant splitApkVariant = splitApkVariants(result).get(0);
assertThat(splitApkVariant.getApkSetList()).hasSize(2);
// Check that apks for ETC1 and "Other TCF" have been created
ImmutableList<ApkDescription> tcfSplits = splitApks.stream().filter(apkDesc -> apkDesc.getTargeting().hasTextureCompressionFormatTargeting()).collect(toImmutableList());
assertThat(apkNamesInApkDescriptions(tcfSplits)).containsExactly("feature_tcf_assets-other_tcf.apk", "feature_tcf_assets-etc1_rgb8.apk");
// Check the content of the apks
for (ApkDescription split : tcfSplits) {
TextureCompressionFormatTargeting textureFormatTargeting = split.getTargeting().getTextureCompressionFormatTargeting();
Set<String> files = filesInApk(split, apkSetFile);
if (textureFormatTargeting.getValueList().isEmpty()) {
// The "Other TCF" split contains the untargeted texture only.
assertThat(files).contains("assets/textures/untargeted_texture.dat");
assertThat(files).doesNotContain("assets/textures#tcf_etc1/etc1_texture.dat");
} else {
// The "ETC1" split contains the ETC1 texture only.
TextureCompressionFormat format = textureFormatTargeting.getValueList().get(0);
assertThat(format.getAlias()).isEqualTo(ETC1_RGB8);
// Suffix stripping was enabled, so "textures#tcf_etc1" folder is now renamed to "textures".
assertThat(files).contains("assets/textures/etc1_texture.dat");
assertThat(files).doesNotContain("assets/textures#tcf_etc1/etc1_texture.dat");
assertThat(files).doesNotContain("assets/textures/untargeted_texture.dat");
}
}
}
use of com.android.bundle.Targeting.TextureCompressionFormatTargeting in project bundletool by google.
the class ModuleSplit method getSuffix.
/**
* Returns the split suffix base name based on the targeting.
*
* <p>The split suffix cannot contain dashes as they are not allowed by the Android Framework. We
* replace them with underscores instead.
*/
public String getSuffix() {
if (isMasterSplit()) {
return "";
}
StringJoiner suffixJoiner = new StringJoiner("_");
// The dimensions below should be ordered by their priority.
AbiTargeting abiTargeting = getApkTargeting().getAbiTargeting();
if (!abiTargeting.getValueList().isEmpty()) {
abiTargeting.getValueList().forEach(value -> suffixJoiner.add(formatAbi(value)));
} else if (!abiTargeting.getAlternativesList().isEmpty()) {
suffixJoiner.add("other_abis");
}
MultiAbiTargeting multiAbiTargeting = getApkTargeting().getMultiAbiTargeting();
for (MultiAbi value : multiAbiTargeting.getValueList()) {
suffixJoiner.add(MULTI_ABI_SUFFIX_JOINER.join(value.getAbiList().stream().map(ModuleSplit::formatAbi).collect(toImmutableList())));
}
// Alternatives without values are not supported for MultiAbiTargeting.
SanitizerTargeting sanitizerTargeting = getApkTargeting().getSanitizerTargeting();
for (Sanitizer sanitizer : sanitizerTargeting.getValueList()) {
if (sanitizer.getAlias().equals(SanitizerAlias.HWADDRESS)) {
suffixJoiner.add("hwasan");
} else {
throw new IllegalArgumentException("Unknown sanitizer");
}
}
LanguageTargeting languageTargeting = getApkTargeting().getLanguageTargeting();
if (!languageTargeting.getValueList().isEmpty()) {
languageTargeting.getValueList().forEach(suffixJoiner::add);
} else if (!languageTargeting.getAlternativesList().isEmpty()) {
suffixJoiner.add("other_lang");
}
getApkTargeting().getScreenDensityTargeting().getValueList().forEach(value -> suffixJoiner.add(SCREEN_DENSITY_TO_PROTO_VALUE_MAP.inverse().get(value.getDensityAlias()).replace('-', '_')));
TextureCompressionFormatTargeting textureFormatTargeting = getApkTargeting().getTextureCompressionFormatTargeting();
if (!textureFormatTargeting.getValueList().isEmpty()) {
textureFormatTargeting.getValueList().forEach(value -> suffixJoiner.add(Ascii.toLowerCase(value.getAlias().name())));
} else if (!textureFormatTargeting.getAlternativesList().isEmpty()) {
suffixJoiner.add("other_tcf");
}
getApkTargeting().getDeviceTierTargeting().getValueList().forEach(value -> suffixJoiner.add("tier_" + value.getValue()));
return suffixJoiner.toString();
}
Aggregations