blob: 85e8f25394e9e6e7317835fce77140873eabb701 [file] [log] [blame]
Adam Lesinski7ad11102016-10-28 16:39:15 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "benchmark/benchmark.h"
18
Adam Lesinskida431a22016-12-29 16:08:16 -050019#include "android-base/stringprintf.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070020#include "androidfw/ApkAssets.h"
21#include "androidfw/AssetManager.h"
22#include "androidfw/AssetManager2.h"
23#include "androidfw/ResourceTypes.h"
24
Adam Lesinskic8f71aa2017-02-08 07:03:50 -080025#include "BenchmarkHelpers.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070026#include "data/basic/R.h"
Adam Lesinskida431a22016-12-29 16:08:16 -050027#include "data/libclient/R.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070028#include "data/styles/R.h"
29
Adam Lesinski7ad11102016-10-28 16:39:15 -070030namespace app = com::android::app;
Adam Lesinskida431a22016-12-29 16:08:16 -050031namespace basic = com::android::basic;
32namespace libclient = com::android::libclient;
Adam Lesinski7ad11102016-10-28 16:39:15 -070033
34namespace android {
35
36constexpr const static char* kFrameworkPath = "/system/framework/framework-res.apk";
37
38static void BM_AssetManagerLoadAssets(benchmark::State& state) {
39 std::string path = GetTestDataPath() + "/basic/basic.apk";
40 while (state.KeepRunning()) {
Adam Lesinski0c405242017-01-13 20:47:26 -080041 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
Adam Lesinski7ad11102016-10-28 16:39:15 -070042 AssetManager2 assets;
43 assets.SetApkAssets({apk.get()});
44 }
45}
46BENCHMARK(BM_AssetManagerLoadAssets);
47
48static void BM_AssetManagerLoadAssetsOld(benchmark::State& state) {
49 String8 path((GetTestDataPath() + "/basic/basic.apk").data());
50 while (state.KeepRunning()) {
51 AssetManager assets;
52 assets.addAssetPath(path, nullptr /* cookie */, false /* appAsLib */,
53 false /* isSystemAsset */);
54
55 // Force creation.
56 assets.getResources(true);
57 }
58}
59BENCHMARK(BM_AssetManagerLoadAssetsOld);
60
61static void BM_AssetManagerLoadFrameworkAssets(benchmark::State& state) {
62 std::string path = kFrameworkPath;
63 while (state.KeepRunning()) {
Adam Lesinski0c405242017-01-13 20:47:26 -080064 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
Adam Lesinski7ad11102016-10-28 16:39:15 -070065 AssetManager2 assets;
66 assets.SetApkAssets({apk.get()});
67 }
68}
69BENCHMARK(BM_AssetManagerLoadFrameworkAssets);
70
71static void BM_AssetManagerLoadFrameworkAssetsOld(benchmark::State& state) {
72 String8 path(kFrameworkPath);
73 while (state.KeepRunning()) {
74 AssetManager assets;
75 assets.addAssetPath(path, nullptr /* cookie */, false /* appAsLib */,
76 false /* isSystemAsset */);
77
78 // Force creation.
79 assets.getResources(true);
80 }
81}
82BENCHMARK(BM_AssetManagerLoadFrameworkAssetsOld);
83
Adam Lesinskifae57eb2018-01-23 03:16:33 -080084static void BM_AssetManagerGetResource(benchmark::State& state) {
85 GetResourceBenchmark({GetTestDataPath() + "/basic/basic.apk"}, nullptr /*config*/,
86 basic::R::integer::number1, state);
Adam Lesinskida431a22016-12-29 16:08:16 -050087}
Adam Lesinskifae57eb2018-01-23 03:16:33 -080088BENCHMARK(BM_AssetManagerGetResource);
Adam Lesinski7ad11102016-10-28 16:39:15 -070089
Adam Lesinskifae57eb2018-01-23 03:16:33 -080090static void BM_AssetManagerGetResourceOld(benchmark::State& state) {
91 GetResourceBenchmarkOld({GetTestDataPath() + "/basic/basic.apk"}, nullptr /*config*/,
92 basic::R::integer::number1, state);
Adam Lesinski7ad11102016-10-28 16:39:15 -070093}
Adam Lesinskifae57eb2018-01-23 03:16:33 -080094BENCHMARK(BM_AssetManagerGetResourceOld);
Adam Lesinski7ad11102016-10-28 16:39:15 -070095
Adam Lesinskida431a22016-12-29 16:08:16 -050096static void BM_AssetManagerGetLibraryResource(benchmark::State& state) {
97 GetResourceBenchmark(
98 {GetTestDataPath() + "/lib_two/lib_two.apk", GetTestDataPath() + "/lib_one/lib_one.apk",
99 GetTestDataPath() + "/libclient/libclient.apk"},
100 nullptr /*config*/, libclient::R::string::foo_one, state);
101}
102BENCHMARK(BM_AssetManagerGetLibraryResource);
103
104static void BM_AssetManagerGetLibraryResourceOld(benchmark::State& state) {
105 GetResourceBenchmarkOld(
106 {GetTestDataPath() + "/lib_two/lib_two.apk", GetTestDataPath() + "/lib_one/lib_one.apk",
107 GetTestDataPath() + "/libclient/libclient.apk"},
108 nullptr /*config*/, libclient::R::string::foo_one, state);
109}
110BENCHMARK(BM_AssetManagerGetLibraryResourceOld);
111
Adam Lesinski7ad11102016-10-28 16:39:15 -0700112constexpr static const uint32_t kStringOkId = 0x0104000au;
113
114static void BM_AssetManagerGetResourceFrameworkLocale(benchmark::State& state) {
Adam Lesinski7ad11102016-10-28 16:39:15 -0700115 ResTable_config config;
116 memset(&config, 0, sizeof(config));
117 memcpy(config.language, "fr", 2);
Adam Lesinskida431a22016-12-29 16:08:16 -0500118 GetResourceBenchmark({kFrameworkPath}, &config, kStringOkId, state);
Adam Lesinski7ad11102016-10-28 16:39:15 -0700119}
120BENCHMARK(BM_AssetManagerGetResourceFrameworkLocale);
121
122static void BM_AssetManagerGetResourceFrameworkLocaleOld(benchmark::State& state) {
Adam Lesinski7ad11102016-10-28 16:39:15 -0700123 ResTable_config config;
124 memset(&config, 0, sizeof(config));
125 memcpy(config.language, "fr", 2);
Adam Lesinskida431a22016-12-29 16:08:16 -0500126 GetResourceBenchmarkOld({kFrameworkPath}, &config, kStringOkId, state);
Adam Lesinski7ad11102016-10-28 16:39:15 -0700127}
128BENCHMARK(BM_AssetManagerGetResourceFrameworkLocaleOld);
129
130static void BM_AssetManagerGetBag(benchmark::State& state) {
Adam Lesinski0c405242017-01-13 20:47:26 -0800131 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
Adam Lesinski7ad11102016-10-28 16:39:15 -0700132 if (apk == nullptr) {
133 state.SkipWithError("Failed to load assets");
134 return;
135 }
136
137 AssetManager2 assets;
138 assets.SetApkAssets({apk.get()});
139
140 while (state.KeepRunning()) {
141 const ResolvedBag* bag = assets.GetBag(app::R::style::StyleTwo);
142 const auto bag_end = end(bag);
143 for (auto iter = begin(bag); iter != bag_end; ++iter) {
144 uint32_t key = iter->key;
145 Res_value value = iter->value;
146 benchmark::DoNotOptimize(key);
147 benchmark::DoNotOptimize(value);
148 }
149 }
150}
151BENCHMARK(BM_AssetManagerGetBag);
152
153static void BM_AssetManagerGetBagOld(benchmark::State& state) {
154 AssetManager assets;
155 if (!assets.addAssetPath(String8((GetTestDataPath() + "/styles/styles.apk").data()),
Adam Lesinskida431a22016-12-29 16:08:16 -0500156 nullptr /*cookie*/, false /*appAsLib*/, false /*isSystemAssets*/)) {
Adam Lesinski7ad11102016-10-28 16:39:15 -0700157 state.SkipWithError("Failed to load assets");
158 return;
159 }
160
161 const ResTable& table = assets.getResources(true);
162
163 while (state.KeepRunning()) {
164 const ResTable::bag_entry* bag_begin;
165 const ssize_t N = table.lockBag(app::R::style::StyleTwo, &bag_begin);
166 const ResTable::bag_entry* const bag_end = bag_begin + N;
167 for (auto iter = bag_begin; iter != bag_end; ++iter) {
168 uint32_t key = iter->map.name.ident;
169 Res_value value = iter->map.value;
170 benchmark::DoNotOptimize(key);
171 benchmark::DoNotOptimize(value);
172 }
173 table.unlockBag(bag_begin);
174 }
175}
176BENCHMARK(BM_AssetManagerGetBagOld);
177
Adam Lesinski0c405242017-01-13 20:47:26 -0800178static void BM_AssetManagerGetResourceLocales(benchmark::State& state) {
179 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
180 if (apk == nullptr) {
181 state.SkipWithError("Failed to load assets");
182 return;
183 }
184
185 AssetManager2 assets;
186 assets.SetApkAssets({apk.get()});
187
188 while (state.KeepRunning()) {
189 std::set<std::string> locales =
190 assets.GetResourceLocales(false /*exclude_system*/, true /*merge_equivalent_languages*/);
191 benchmark::DoNotOptimize(locales);
192 }
193}
194BENCHMARK(BM_AssetManagerGetResourceLocales);
195
196static void BM_AssetManagerGetResourceLocalesOld(benchmark::State& state) {
197 AssetManager assets;
198 if (!assets.addAssetPath(String8(kFrameworkPath), nullptr /*cookie*/, false /*appAsLib*/,
Adam Lesinskifae57eb2018-01-23 03:16:33 -0800199 false /*isSystemAssets*/)) {
Adam Lesinski0c405242017-01-13 20:47:26 -0800200 state.SkipWithError("Failed to load assets");
201 return;
202 }
203
204 const ResTable& table = assets.getResources(true);
205
206 while (state.KeepRunning()) {
207 Vector<String8> locales;
208 table.getLocales(&locales, true /*includeSystemLocales*/, true /*mergeEquivalentLangs*/);
209 benchmark::DoNotOptimize(locales);
210 }
211}
212BENCHMARK(BM_AssetManagerGetResourceLocalesOld);
213
Adam Lesinski7ad11102016-10-28 16:39:15 -0700214} // namespace android