Implementation of 'aapt2 apkinfo' command.
Bug: b/228950123 Test: Dump_test.cpp, ApkInfo_test.cpp Change-Id: Ibc63d826df5b7e83a1e61560a2d2fcad471c128d
This commit is contained in:
@@ -24,6 +24,7 @@ package {
|
||||
}
|
||||
|
||||
toolSources = [
|
||||
"cmd/ApkInfo.cpp",
|
||||
"cmd/Command.cpp",
|
||||
"cmd/Compile.cpp",
|
||||
"cmd/Convert.cpp",
|
||||
|
||||
@@ -24,11 +24,11 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
#include "Diagnostics.h"
|
||||
#include "android-base/stringprintf.h"
|
||||
#include "android-base/utf8.h"
|
||||
#include "androidfw/StringPiece.h"
|
||||
|
||||
#include "Diagnostics.h"
|
||||
#include "cmd/ApkInfo.h"
|
||||
#include "cmd/Command.h"
|
||||
#include "cmd/Compile.h"
|
||||
#include "cmd/Convert.h"
|
||||
@@ -72,6 +72,7 @@ class MainCommand : public Command {
|
||||
AddOptionalSubcommand(util::make_unique<OptimizeCommand>());
|
||||
AddOptionalSubcommand(util::make_unique<ConvertCommand>());
|
||||
AddOptionalSubcommand(util::make_unique<VersionCommand>());
|
||||
AddOptionalSubcommand(util::make_unique<ApkInfoCommand>(diagnostics));
|
||||
}
|
||||
|
||||
int Action(const std::vector<std::string>& args) override {
|
||||
|
||||
94
tools/aapt2/cmd/ApkInfo.cpp
Normal file
94
tools/aapt2/cmd/ApkInfo.cpp
Normal file
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
* Copyright (C) 2022 The Android Open Source Project
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "ApkInfo.h"
|
||||
|
||||
#include <fcntl.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
|
||||
#include "Diagnostics.h"
|
||||
#include "LoadedApk.h"
|
||||
#include "android-base/file.h" // for O_BINARY
|
||||
#include "android-base/utf8.h"
|
||||
#include "androidfw/StringPiece.h"
|
||||
#include "dump/DumpManifest.h"
|
||||
#include "format/proto/ProtoSerialize.h"
|
||||
|
||||
using ::android::StringPiece;
|
||||
|
||||
namespace aapt {
|
||||
|
||||
int ExportApkInfo(LoadedApk* apk, bool include_resource_table,
|
||||
const std::unordered_set<std::string>& xml_resources, pb::ApkInfo* out_apk_info,
|
||||
IDiagnostics* diag) {
|
||||
auto result = DumpBadgingProto(apk, out_apk_info->mutable_badging(), diag);
|
||||
if (result != 0) {
|
||||
return result;
|
||||
}
|
||||
|
||||
if (include_resource_table) {
|
||||
SerializeTableToPb(*apk->GetResourceTable(), out_apk_info->mutable_resource_table(), diag);
|
||||
}
|
||||
|
||||
for (auto& xml_resource : xml_resources) {
|
||||
auto xml = apk->LoadXml(xml_resource, diag);
|
||||
if (xml) {
|
||||
auto out_xml = out_apk_info->add_xml_files();
|
||||
out_xml->set_path(xml_resource);
|
||||
SerializeXmlResourceToPb(*xml, out_xml->mutable_root(),
|
||||
{/* remove_empty_text_nodes= */ true});
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ApkInfoCommand::Action(const std::vector<std::string>& args) {
|
||||
if (args.size() != 1) {
|
||||
std::cerr << "must supply a single APK\n";
|
||||
Usage(&std::cerr);
|
||||
return 1;
|
||||
}
|
||||
const StringPiece& path = args[0];
|
||||
std::unique_ptr<LoadedApk> apk = LoadedApk::LoadApkFromPath(path, diag_);
|
||||
if (!apk) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
pb::ApkInfo out_apk_info;
|
||||
int result =
|
||||
ExportApkInfo(apk.get(), include_resource_table_, xml_resources_, &out_apk_info, diag_);
|
||||
if (result != 0) {
|
||||
diag_->Error(DiagMessage() << "Failed to serialize ApkInfo into proto.");
|
||||
return result;
|
||||
}
|
||||
|
||||
int mode = O_WRONLY | O_CREAT | O_TRUNC | O_BINARY;
|
||||
int outfd = ::android::base::utf8::open(output_path_.c_str(), mode, 0666);
|
||||
if (outfd == -1) {
|
||||
diag_->Error(DiagMessage() << "Failed to open output file.");
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool is_serialized = out_apk_info.SerializeToFileDescriptor(outfd);
|
||||
close(outfd);
|
||||
|
||||
return is_serialized ? 0 : 1;
|
||||
}
|
||||
|
||||
} // namespace aapt
|
||||
49
tools/aapt2/cmd/ApkInfo.h
Normal file
49
tools/aapt2/cmd/ApkInfo.h
Normal file
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Copyright (C) 2022 The Android Open Source Project
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef AAPT2_APKINFO_H
|
||||
#define AAPT2_APKINFO_H
|
||||
|
||||
#include "Command.h"
|
||||
#include "Diagnostics.h"
|
||||
|
||||
namespace aapt {
|
||||
|
||||
class ApkInfoCommand : public Command {
|
||||
public:
|
||||
explicit ApkInfoCommand(IDiagnostics* diag) : Command("apkinfo"), diag_(diag) {
|
||||
SetDescription("Dump information about an APK in binary proto format.");
|
||||
AddRequiredFlag("-o", "Output path", &output_path_, Command::kPath);
|
||||
AddOptionalSwitch("--include-resource-table", "Include the resource table data into output.",
|
||||
&include_resource_table_);
|
||||
AddOptionalFlagList("--include-xml",
|
||||
"Include an XML file content into output. Multiple XML files might be "
|
||||
"requested during single invocation.",
|
||||
&xml_resources_);
|
||||
}
|
||||
|
||||
int Action(const std::vector<std::string>& args) override;
|
||||
|
||||
private:
|
||||
IDiagnostics* diag_;
|
||||
std::string output_path_;
|
||||
bool include_resource_table_ = false;
|
||||
std::unordered_set<std::string> xml_resources_;
|
||||
};
|
||||
|
||||
} // namespace aapt
|
||||
|
||||
#endif // AAPT2_APKINFO_H
|
||||
83
tools/aapt2/cmd/ApkInfo_test.cpp
Normal file
83
tools/aapt2/cmd/ApkInfo_test.cpp
Normal file
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
* Copyright (C) 2022 The Android Open Source Project
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "ApkInfo.h"
|
||||
|
||||
#include "ApkInfo.pb.h"
|
||||
#include "LoadedApk.h"
|
||||
#include "android-base/unique_fd.h"
|
||||
#include "io/StringStream.h"
|
||||
#include "test/Test.h"
|
||||
|
||||
using testing::Eq;
|
||||
using testing::Ne;
|
||||
|
||||
namespace aapt {
|
||||
|
||||
using ApkInfoTest = CommandTestFixture;
|
||||
|
||||
void AssertProducedAndExpectedInfo(const std::string& produced_path,
|
||||
const std::string& expected_path) {
|
||||
android::base::unique_fd fd(open(produced_path.c_str(), O_RDONLY));
|
||||
ASSERT_NE(fd.get(), -1);
|
||||
|
||||
pb::ApkInfo produced_apk_info;
|
||||
produced_apk_info.ParseFromFileDescriptor(fd.get());
|
||||
|
||||
std::string expected;
|
||||
::android::base::ReadFileToString(expected_path, &expected);
|
||||
|
||||
EXPECT_EQ(produced_apk_info.DebugString(), expected);
|
||||
}
|
||||
|
||||
class NoopDiagnostics : public IDiagnostics {
|
||||
public:
|
||||
void Log(Level level, DiagMessageActual& actualMsg) override {
|
||||
}
|
||||
};
|
||||
static NoopDiagnostics noop_diag;
|
||||
|
||||
TEST_F(ApkInfoTest, ApkInfoWithBadging) {
|
||||
auto apk_path = file::BuildPath(
|
||||
{android::base::GetExecutableDirectory(), "integration-tests", "DumpTest", "components.apk"});
|
||||
auto out_info_path = GetTestPath("apk_info.pb");
|
||||
|
||||
ApkInfoCommand command(&noop_diag);
|
||||
command.Execute({"-o", out_info_path, apk_path}, &std::cerr);
|
||||
|
||||
auto expected_path =
|
||||
file::BuildPath({android::base::GetExecutableDirectory(), "integration-tests", "DumpTest",
|
||||
"components_expected_proto.txt"});
|
||||
AssertProducedAndExpectedInfo(out_info_path, expected_path);
|
||||
}
|
||||
|
||||
TEST_F(ApkInfoTest, FullApkInfo) {
|
||||
auto apk_path = file::BuildPath(
|
||||
{android::base::GetExecutableDirectory(), "integration-tests", "DumpTest", "components.apk"});
|
||||
auto out_info_path = GetTestPath("apk_info.pb");
|
||||
|
||||
ApkInfoCommand command(&noop_diag);
|
||||
command.Execute({"-o", out_info_path, "--include-resource-table", "--include-xml",
|
||||
"AndroidManifest.xml", "--include-xml", "res/oy.xml", apk_path},
|
||||
&std::cerr);
|
||||
|
||||
auto expected_path =
|
||||
file::BuildPath({android::base::GetExecutableDirectory(), "integration-tests", "DumpTest",
|
||||
"components_full_proto.txt"});
|
||||
AssertProducedAndExpectedInfo(out_info_path, expected_path);
|
||||
}
|
||||
|
||||
} // namespace aapt
|
||||
@@ -0,0 +1,165 @@
|
||||
badging {
|
||||
package {
|
||||
package: "com.example.bundletool.minimal"
|
||||
version_code: 1
|
||||
version_name: "1.0"
|
||||
platform_version_name: "12"
|
||||
platform_version_code: "31"
|
||||
compile_sdk_version: 31
|
||||
compile_sdk_version_codename: "12"
|
||||
}
|
||||
application {
|
||||
label: "minimal"
|
||||
icon: "res/uF.xml"
|
||||
density_icons {
|
||||
key: 160
|
||||
value: "res/uF.xml"
|
||||
}
|
||||
density_icons {
|
||||
key: 240
|
||||
value: "res/uF.xml"
|
||||
}
|
||||
density_icons {
|
||||
key: 320
|
||||
value: "res/uF.xml"
|
||||
}
|
||||
density_icons {
|
||||
key: 480
|
||||
value: "res/uF.xml"
|
||||
}
|
||||
density_icons {
|
||||
key: 640
|
||||
value: "res/uF.xml"
|
||||
}
|
||||
density_icons {
|
||||
key: 65534
|
||||
value: "res/uF.xml"
|
||||
}
|
||||
}
|
||||
uses_sdk {
|
||||
min_sdk_version: 21
|
||||
target_sdk_version: 31
|
||||
}
|
||||
uses_configuration {
|
||||
req_touch_screen: 3
|
||||
req_keyboard_type: 2
|
||||
req_hard_keyboard: -1
|
||||
req_navigation: 3
|
||||
req_five_way_nav: -1
|
||||
}
|
||||
supports_screen {
|
||||
screens: NORMAL
|
||||
screens: LARGE
|
||||
screens: XLARGE
|
||||
supports_any_densities: true
|
||||
requires_smallest_width_dp: 240
|
||||
compatible_width_limit_dp: 360
|
||||
largest_width_limit_dp: 480
|
||||
}
|
||||
launchable_activity {
|
||||
name: "com.example.bundletool.minimal.MainActivity"
|
||||
label: "minimal"
|
||||
}
|
||||
compatible_screens {
|
||||
screens {
|
||||
size: 500
|
||||
density: 240
|
||||
}
|
||||
screens {
|
||||
size: 400
|
||||
density: 160
|
||||
}
|
||||
}
|
||||
architectures {
|
||||
architectures: "x86_64"
|
||||
alt_architectures: "x86"
|
||||
}
|
||||
supports_gl_texture {
|
||||
name: "GL_OES_compressed_paletted_texture"
|
||||
}
|
||||
components {
|
||||
main: true
|
||||
other_receivers: true
|
||||
other_services: true
|
||||
provided_components: "app-widget"
|
||||
provided_components: "device-admin"
|
||||
provided_components: "ime"
|
||||
provided_components: "wallpaper"
|
||||
provided_components: "accessibility"
|
||||
provided_components: "print-service"
|
||||
provided_components: "search"
|
||||
provided_components: "document-provider"
|
||||
provided_components: "notification-listener"
|
||||
provided_components: "dream"
|
||||
provided_components: "camera"
|
||||
provided_components: "camera-secure"
|
||||
}
|
||||
densities: 160
|
||||
densities: 240
|
||||
densities: 320
|
||||
densities: 480
|
||||
densities: 640
|
||||
densities: 65534
|
||||
feature_groups {
|
||||
features {
|
||||
name: "android.hardware.bluetooth"
|
||||
required: true
|
||||
}
|
||||
features {
|
||||
name: "android.hardware.camera"
|
||||
required: true
|
||||
}
|
||||
features {
|
||||
name: "android.hardware.faketouch"
|
||||
implied_data {
|
||||
reasons: "default feature for all apps"
|
||||
}
|
||||
}
|
||||
features {
|
||||
name: "android.hardware.telephony"
|
||||
implied_data {
|
||||
from_sdk_23_permission: true
|
||||
reasons: "requested a telephony permission"
|
||||
}
|
||||
}
|
||||
}
|
||||
uses_permissions {
|
||||
name: "android.permission.BIND_ACCESSIBILITY_SERVICE"
|
||||
max_sdk_version: 24
|
||||
required: true
|
||||
}
|
||||
uses_permissions {
|
||||
name: "android.permission.RECEIVE_SMS"
|
||||
sdk23_and_above: true
|
||||
}
|
||||
uses_permissions {
|
||||
name: "android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
required: true
|
||||
}
|
||||
uses_permissions {
|
||||
name: "android.permission.READ_EXTERNAL_STORAGE"
|
||||
required: true
|
||||
implied: true
|
||||
}
|
||||
permissions {
|
||||
name: "minimal.FIRST_PERMISSION"
|
||||
}
|
||||
uses_libraries {
|
||||
name: "mylib1"
|
||||
required: true
|
||||
}
|
||||
uses_libraries {
|
||||
name: "my_optional_lib"
|
||||
}
|
||||
uses_native_libraries {
|
||||
name: "native1"
|
||||
required: true
|
||||
}
|
||||
uses_native_libraries {
|
||||
name: "optional"
|
||||
}
|
||||
metadata {
|
||||
name: "android.nfc.cardemulation.host_apdu_service"
|
||||
resource_string: "res/dU.xml"
|
||||
}
|
||||
}
|
||||
2310
tools/aapt2/integration-tests/DumpTest/components_full_proto.txt
Normal file
2310
tools/aapt2/integration-tests/DumpTest/components_full_proto.txt
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user