blob: 15c5eaecd1026052770a73eb8eefff5a8d153fa2 [file] [log] [blame]
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001/*
2 * Copyright (C) 2015 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
Adam Lesinskice5e56e2016-10-21 17:56:45 -070017#include <sys/stat.h>
Adam Lesinskic6284372017-12-04 13:46:23 -080018#include <cinttypes>
Adam Lesinskice5e56e2016-10-21 17:56:45 -070019
Adam Lesinskice5e56e2016-10-21 17:56:45 -070020#include <queue>
21#include <unordered_map>
22#include <vector>
23
24#include "android-base/errors.h"
25#include "android-base/file.h"
Adam Lesinskif34b6f42017-03-03 16:33:26 -080026#include "android-base/stringprintf.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080027#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070028
Adam Lesinski1ab598f2015-08-14 14:26:04 -070029#include "AppInfo.h"
30#include "Debug.h"
31#include "Flags.h"
Adam Lesinski8780eb62017-10-31 17:44:39 -070032#include "LoadedApk.h"
Adam Lesinski6a008172016-02-02 17:02:58 -080033#include "Locale.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070034#include "NameMangler.h"
Adam Lesinski59e04c62016-02-04 15:59:23 -080035#include "ResourceUtils.h"
Adam Lesinskid3ffa8442017-09-28 13:34:35 -070036#include "ResourceValues.h"
37#include "ValueVisitor.h"
Adam Lesinskid0f492d2017-04-03 18:12:45 -070038#include "cmd/Util.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070039#include "compile/IdAssigner.h"
Adam Lesinski2427dce2017-11-30 15:10:28 -080040#include "compile/XmlIdCollector.h"
Adam Lesinski6a008172016-02-02 17:02:58 -080041#include "filter/ConfigFilter.h"
Adam Lesinski46708052017-09-29 14:49:15 -070042#include "format/Archive.h"
Adam Lesinski00451162017-10-03 07:44:08 -070043#include "format/Container.h"
Adam Lesinski46708052017-09-29 14:49:15 -070044#include "format/binary/TableFlattener.h"
45#include "format/binary/XmlFlattener.h"
46#include "format/proto/ProtoDeserialize.h"
47#include "format/proto/ProtoSerialize.h"
Adam Lesinski00451162017-10-03 07:44:08 -070048#include "io/BigBufferStream.h"
49#include "io/FileStream.h"
Adam Lesinskia40e9722015-11-24 19:11:46 -080050#include "io/FileSystem.h"
Adam Lesinskid0f492d2017-04-03 18:12:45 -070051#include "io/Util.h"
Adam Lesinskia40e9722015-11-24 19:11:46 -080052#include "io/ZipArchive.h"
Adam Lesinskica5638f2015-10-21 14:42:43 -070053#include "java/JavaClassGenerator.h"
54#include "java/ManifestClassGenerator.h"
55#include "java/ProguardRules.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070056#include "link/Linkers.h"
Adam Lesinskicacb28f2016-10-19 12:18:14 -070057#include "link/ManifestFixer.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080058#include "link/ReferenceLinker.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070059#include "link/TableMerger.h"
Adam Lesinskic744ae82017-05-17 19:28:38 -070060#include "link/XmlCompatVersioner.h"
Adam Lesinskid48944a2017-02-21 14:22:30 -080061#include "optimize/ResourceDeduper.h"
62#include "optimize/VersionCollapser.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070063#include "process/IResourceTableConsumer.h"
64#include "process/SymbolTable.h"
Adam Lesinski355f2852016-02-13 20:26:45 -080065#include "split/TableSplitter.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070066#include "util/Files.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080067#include "xml/XmlDom.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070068
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070069using ::aapt::io::FileInputStream;
70using ::android::StringPiece;
71using ::android::base::StringPrintf;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -070072
Adam Lesinski1ab598f2015-08-14 14:26:04 -070073namespace aapt {
74
Adam Lesinskie59f0d82017-10-13 09:36:53 -070075enum class OutputFormat {
76 kApk,
77 kProto,
78};
79
Adam Lesinski1ab598f2015-08-14 14:26:04 -070080struct LinkOptions {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070081 std::string output_path;
82 std::string manifest_path;
83 std::vector<std::string> include_paths;
84 std::vector<std::string> overlay_files;
Adam Lesinskib39ad7c2017-03-13 11:40:48 -070085 std::vector<std::string> assets_dirs;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070086 bool output_to_directory = false;
87 bool auto_add_overlay = false;
Adam Lesinskie59f0d82017-10-13 09:36:53 -070088 OutputFormat output_format = OutputFormat::kApk;
Adam Lesinski36c73a52016-08-11 13:39:24 -070089
Adam Lesinskicacb28f2016-10-19 12:18:14 -070090 // Java/Proguard options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070091 Maybe<std::string> generate_java_class_path;
92 Maybe<std::string> custom_java_package;
93 std::set<std::string> extra_java_packages;
Adam Lesinski418763f2017-04-11 17:36:53 -070094 Maybe<std::string> generate_text_symbols_path;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070095 Maybe<std::string> generate_proguard_rules_path;
96 Maybe<std::string> generate_main_dex_proguard_rules_path;
Adam Koskidc21dea2017-07-21 10:55:27 -070097 bool generate_conditional_proguard_rules = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070098 bool generate_non_final_ids = false;
99 std::vector<std::string> javadoc_annotations;
100 Maybe<std::string> private_symbols;
Adam Lesinski36c73a52016-08-11 13:39:24 -0700101
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700102 // Optimizations/features.
103 bool no_auto_version = false;
104 bool no_version_vectors = false;
Yuichi Araki4d35cca2017-01-18 20:42:17 +0900105 bool no_version_transitions = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700106 bool no_resource_deduping = false;
107 bool no_xml_namespaces = false;
108 bool do_not_compress_anything = false;
109 std::unordered_set<std::string> extensions_to_not_compress;
110
111 // Static lib options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700112 bool no_static_lib_packages = false;
113
114 // AndroidManifest.xml massaging options.
115 ManifestFixerOptions manifest_fixer_options;
116
117 // Products to use/filter on.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700118 std::unordered_set<std::string> products;
Adam Lesinski36c73a52016-08-11 13:39:24 -0700119
Adam Lesinskic8f71aa2017-02-08 07:03:50 -0800120 // Flattening options.
121 TableFlattenerOptions table_flattener_options;
122
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700123 // Split APK options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700124 TableSplitterOptions table_splitter_options;
125 std::vector<SplitConstraints> split_constraints;
126 std::vector<std::string> split_paths;
Adam Lesinski36c73a52016-08-11 13:39:24 -0700127
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700128 // Stable ID options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700129 std::unordered_map<ResourceName, ResourceId> stable_id_map;
130 Maybe<std::string> resource_id_map_path;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700131};
132
Adam Lesinski64587af2016-02-18 18:33:06 -0800133class LinkContext : public IAaptContext {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700134 public:
Chris Warrington820d72a2017-04-27 15:27:01 +0100135 LinkContext(IDiagnostics* diagnostics)
136 : diagnostics_(diagnostics), name_mangler_({}), symbols_(&name_mangler_) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700137 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700138
Adam Lesinskib522f042017-04-21 16:57:59 -0700139 PackageType GetPackageType() override {
140 return package_type_;
141 }
142
143 void SetPackageType(PackageType type) {
144 package_type_ = type;
145 }
146
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700147 IDiagnostics* GetDiagnostics() override {
Chris Warrington820d72a2017-04-27 15:27:01 +0100148 return diagnostics_;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700149 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700150
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700151 NameMangler* GetNameMangler() override {
152 return &name_mangler_;
153 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700154
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700155 void SetNameManglerPolicy(const NameManglerPolicy& policy) {
156 name_mangler_ = NameMangler(policy);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700157 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800158
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700159 const std::string& GetCompilationPackage() override {
160 return compilation_package_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700161 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700162
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700163 void SetCompilationPackage(const StringPiece& package_name) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800164 compilation_package_ = package_name.to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700165 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800166
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700167 uint8_t GetPackageId() override {
168 return package_id_;
169 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700170
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700171 void SetPackageId(uint8_t id) {
172 package_id_ = id;
173 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800174
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700175 SymbolTable* GetExternalSymbols() override {
176 return &symbols_;
177 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800178
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700179 bool IsVerbose() override {
180 return verbose_;
181 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800182
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700183 void SetVerbose(bool val) {
184 verbose_ = val;
185 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800186
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700187 int GetMinSdkVersion() override {
188 return min_sdk_version_;
189 }
Adam Lesinskifb6312f2016-06-28 14:40:32 -0700190
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700191 void SetMinSdkVersion(int minSdk) {
192 min_sdk_version_ = minSdk;
193 }
Adam Lesinskifb6312f2016-06-28 14:40:32 -0700194
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700195 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700196 DISALLOW_COPY_AND_ASSIGN(LinkContext);
197
Adam Lesinskib522f042017-04-21 16:57:59 -0700198 PackageType package_type_ = PackageType::kApp;
Chris Warrington820d72a2017-04-27 15:27:01 +0100199 IDiagnostics* diagnostics_;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700200 NameMangler name_mangler_;
201 std::string compilation_package_;
202 uint8_t package_id_ = 0x0;
203 SymbolTable symbols_;
204 bool verbose_ = false;
205 int min_sdk_version_ = 0;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700206};
207
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700208// A custom delegate that generates compatible pre-O IDs for use with feature splits.
209// Feature splits use package IDs > 7f, which in Java (since Java doesn't have unsigned ints)
210// is interpreted as a negative number. Some verification was wrongly assuming negative values
211// were invalid.
212//
213// This delegate will attempt to masquerade any '@id/' references with ID 0xPPTTEEEE,
214// where PP > 7f, as 0x7fPPEEEE. Any potential overlapping is verified and an error occurs if such
215// an overlap exists.
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800216//
217// See b/37498913.
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700218class FeatureSplitSymbolTableDelegate : public DefaultSymbolTableDelegate {
219 public:
220 FeatureSplitSymbolTableDelegate(IAaptContext* context) : context_(context) {
221 }
222
223 virtual ~FeatureSplitSymbolTableDelegate() = default;
224
225 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
226 const ResourceName& name,
227 const std::vector<std::unique_ptr<ISymbolSource>>& sources) override {
228 std::unique_ptr<SymbolTable::Symbol> symbol =
229 DefaultSymbolTableDelegate::FindByName(name, sources);
230 if (symbol == nullptr) {
231 return {};
232 }
233
234 // Check to see if this is an 'id' with the target package.
235 if (name.type == ResourceType::kId && symbol->id) {
236 ResourceId* id = &symbol->id.value();
237 if (id->package_id() > kAppPackageId) {
238 // Rewrite the resource ID to be compatible pre-O.
239 ResourceId rewritten_id(kAppPackageId, id->package_id(), id->entry_id());
240
241 // Check that this doesn't overlap another resource.
242 if (DefaultSymbolTableDelegate::FindById(rewritten_id, sources) != nullptr) {
243 // The ID overlaps, so log a message (since this is a weird failure) and fail.
244 context_->GetDiagnostics()->Error(DiagMessage() << "Failed to rewrite " << name
245 << " for pre-O feature split support");
246 return {};
247 }
248
249 if (context_->IsVerbose()) {
250 context_->GetDiagnostics()->Note(DiagMessage() << "rewriting " << name << " (" << *id
251 << ") -> (" << rewritten_id << ")");
252 }
253
254 *id = rewritten_id;
255 }
256 }
257 return symbol;
258 }
259
260 private:
261 DISALLOW_COPY_AND_ASSIGN(FeatureSplitSymbolTableDelegate);
262
263 IAaptContext* context_;
264};
265
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700266static bool FlattenXml(IAaptContext* context, const xml::XmlResource& xml_res,
267 const StringPiece& path, bool keep_raw_values, bool utf16,
268 OutputFormat format, IArchiveWriter* writer) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700269 if (context->IsVerbose()) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700270 context->GetDiagnostics()->Note(DiagMessage(path) << "writing to archive (keep_raw_values="
271 << (keep_raw_values ? "true" : "false")
272 << ")");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700273 }
274
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700275 switch (format) {
276 case OutputFormat::kApk: {
277 BigBuffer buffer(1024);
278 XmlFlattenerOptions options = {};
279 options.keep_raw_values = keep_raw_values;
280 options.use_utf16 = utf16;
281 XmlFlattener flattener(&buffer, options);
282 if (!flattener.Consume(context, &xml_res)) {
283 return false;
284 }
285
286 io::BigBufferInputStream input_stream(&buffer);
287 return io::CopyInputStreamToArchive(context, &input_stream, path.to_string(),
288 ArchiveEntry::kCompress, writer);
289 } break;
290
291 case OutputFormat::kProto: {
292 pb::XmlNode pb_node;
293 SerializeXmlResourceToPb(xml_res, &pb_node);
294 return io::CopyProtoToArchive(context, &pb_node, path.to_string(), ArchiveEntry::kCompress,
295 writer);
296 } break;
297 }
298 return false;
Adam Lesinski355f2852016-02-13 20:26:45 -0800299}
300
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700301// Inflates an XML file from the source path.
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700302static std::unique_ptr<xml::XmlResource> LoadXml(const std::string& path, IDiagnostics* diag) {
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700303 FileInputStream fin(path);
304 if (fin.HadError()) {
305 diag->Error(DiagMessage(path) << "failed to load XML file: " << fin.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700306 return {};
307 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700308 return xml::Inflate(&fin, diag, Source(path));
Adam Lesinski355f2852016-02-13 20:26:45 -0800309}
310
Adam Lesinski355f2852016-02-13 20:26:45 -0800311struct ResourceFileFlattenerOptions {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700312 bool no_auto_version = false;
313 bool no_version_vectors = false;
Yuichi Araki4d35cca2017-01-18 20:42:17 +0900314 bool no_version_transitions = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700315 bool no_xml_namespaces = false;
316 bool keep_raw_values = false;
317 bool do_not_compress_anything = false;
318 bool update_proguard_spec = false;
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700319 OutputFormat output_format = OutputFormat::kApk;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700320 std::unordered_set<std::string> extensions_to_not_compress;
Adam Lesinski355f2852016-02-13 20:26:45 -0800321};
322
Adam Lesinskic744ae82017-05-17 19:28:38 -0700323// A sampling of public framework resource IDs.
324struct R {
325 struct attr {
326 enum : uint32_t {
327 paddingLeft = 0x010100d6u,
328 paddingRight = 0x010100d8u,
329 paddingHorizontal = 0x0101053du,
330
331 paddingTop = 0x010100d7u,
332 paddingBottom = 0x010100d9u,
333 paddingVertical = 0x0101053eu,
334
335 layout_marginLeft = 0x010100f7u,
336 layout_marginRight = 0x010100f9u,
337 layout_marginHorizontal = 0x0101053bu,
338
339 layout_marginTop = 0x010100f8u,
340 layout_marginBottom = 0x010100fau,
341 layout_marginVertical = 0x0101053cu,
342 };
343 };
344};
345
Adam Lesinski355f2852016-02-13 20:26:45 -0800346class ResourceFileFlattener {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700347 public:
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700348 ResourceFileFlattener(const ResourceFileFlattenerOptions& options, IAaptContext* context,
Adam Lesinskic744ae82017-05-17 19:28:38 -0700349 proguard::KeepSet* keep_set);
Adam Lesinski355f2852016-02-13 20:26:45 -0800350
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700351 bool Flatten(ResourceTable* table, IArchiveWriter* archive_writer);
Adam Lesinski355f2852016-02-13 20:26:45 -0800352
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700353 private:
354 struct FileOperation {
355 ConfigDescription config;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700356
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700357 // The entry this file came from.
Adam Lesinskibb94f322017-07-12 07:41:55 -0700358 ResourceEntry* entry;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700359
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700360 // The file to copy as-is.
Adam Lesinskibb94f322017-07-12 07:41:55 -0700361 io::IFile* file_to_copy;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700362
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700363 // The XML to process and flatten.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700364 std::unique_ptr<xml::XmlResource> xml_to_flatten;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700365
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700366 // The destination to write this file to.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700367 std::string dst_path;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700368 };
Adam Lesinski355f2852016-02-13 20:26:45 -0800369
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700370 uint32_t GetCompressionFlags(const StringPiece& str);
Adam Lesinski355f2852016-02-13 20:26:45 -0800371
Adam Lesinskic744ae82017-05-17 19:28:38 -0700372 std::vector<std::unique_ptr<xml::XmlResource>> LinkAndVersionXmlFile(ResourceTable* table,
373 FileOperation* file_op);
Adam Lesinski355f2852016-02-13 20:26:45 -0800374
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700375 ResourceFileFlattenerOptions options_;
376 IAaptContext* context_;
377 proguard::KeepSet* keep_set_;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700378 XmlCompatVersioner::Rules rules_;
Adam Lesinski355f2852016-02-13 20:26:45 -0800379};
380
Adam Lesinskic744ae82017-05-17 19:28:38 -0700381ResourceFileFlattener::ResourceFileFlattener(const ResourceFileFlattenerOptions& options,
382 IAaptContext* context, proguard::KeepSet* keep_set)
383 : options_(options), context_(context), keep_set_(keep_set) {
384 SymbolTable* symm = context_->GetExternalSymbols();
385
386 // Build up the rules for degrading newer attributes to older ones.
387 // NOTE(adamlesinski): These rules are hardcoded right now, but they should be
388 // generated from the attribute definitions themselves (b/62028956).
389 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::paddingHorizontal)) {
390 std::vector<ReplacementAttr> replacements{
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800391 {"paddingLeft", R::attr::paddingLeft, Attribute(android::ResTable_map::TYPE_DIMENSION)},
392 {"paddingRight", R::attr::paddingRight, Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700393 };
394 rules_[R::attr::paddingHorizontal] =
395 util::make_unique<DegradeToManyRule>(std::move(replacements));
396 }
397
398 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::paddingVertical)) {
399 std::vector<ReplacementAttr> replacements{
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800400 {"paddingTop", R::attr::paddingTop, Attribute(android::ResTable_map::TYPE_DIMENSION)},
401 {"paddingBottom", R::attr::paddingBottom, Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700402 };
403 rules_[R::attr::paddingVertical] =
404 util::make_unique<DegradeToManyRule>(std::move(replacements));
405 }
406
407 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::layout_marginHorizontal)) {
408 std::vector<ReplacementAttr> replacements{
409 {"layout_marginLeft", R::attr::layout_marginLeft,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800410 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700411 {"layout_marginRight", R::attr::layout_marginRight,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800412 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700413 };
414 rules_[R::attr::layout_marginHorizontal] =
415 util::make_unique<DegradeToManyRule>(std::move(replacements));
416 }
417
418 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::layout_marginVertical)) {
419 std::vector<ReplacementAttr> replacements{
420 {"layout_marginTop", R::attr::layout_marginTop,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800421 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700422 {"layout_marginBottom", R::attr::layout_marginBottom,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800423 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700424 };
425 rules_[R::attr::layout_marginVertical] =
426 util::make_unique<DegradeToManyRule>(std::move(replacements));
427 }
428}
429
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700430uint32_t ResourceFileFlattener::GetCompressionFlags(const StringPiece& str) {
431 if (options_.do_not_compress_anything) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700432 return 0;
433 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800434
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700435 for (const std::string& extension : options_.extensions_to_not_compress) {
436 if (util::EndsWith(str, extension)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700437 return 0;
Adam Lesinski355f2852016-02-13 20:26:45 -0800438 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700439 }
440 return ArchiveEntry::kCompress;
Adam Lesinski355f2852016-02-13 20:26:45 -0800441}
442
Adam Lesinskibb94f322017-07-12 07:41:55 -0700443static bool IsTransitionElement(const std::string& name) {
444 return name == "fade" || name == "changeBounds" || name == "slide" || name == "explode" ||
445 name == "changeImageTransform" || name == "changeTransform" ||
446 name == "changeClipBounds" || name == "autoTransition" || name == "recolor" ||
447 name == "changeScroll" || name == "transitionSet" || name == "transition" ||
448 name == "transitionManager";
449}
450
451static bool IsVectorElement(const std::string& name) {
452 return name == "vector" || name == "animated-vector" || name == "pathInterpolator" ||
Nick Butchere78a8162018-01-09 15:24:21 +0000453 name == "objectAnimator" || name == "gradient" || name == "animated-selector";
Adam Lesinskibb94f322017-07-12 07:41:55 -0700454}
455
Adam Lesinskic744ae82017-05-17 19:28:38 -0700456template <typename T>
457std::vector<T> make_singleton_vec(T&& val) {
458 std::vector<T> vec;
459 vec.emplace_back(std::forward<T>(val));
460 return vec;
461}
462
463std::vector<std::unique_ptr<xml::XmlResource>> ResourceFileFlattener::LinkAndVersionXmlFile(
464 ResourceTable* table, FileOperation* file_op) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700465 xml::XmlResource* doc = file_op->xml_to_flatten.get();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700466 const Source& src = doc->file.source;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700467
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700468 if (context_->IsVerbose()) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700469 context_->GetDiagnostics()->Note(DiagMessage()
470 << "linking " << src.path << " (" << doc->file.name << ")");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700471 }
472
Adam Lesinski00451162017-10-03 07:44:08 -0700473 // First, strip out any tools namespace attributes. AAPT stripped them out early, which means
474 // that existing projects have out-of-date references which pass compilation.
475 xml::StripAndroidStudioAttributes(doc->root.get());
476
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700477 XmlReferenceLinker xml_linker;
478 if (!xml_linker.Consume(context_, doc)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700479 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700480 }
481
Adam Koskidc21dea2017-07-21 10:55:27 -0700482 if (options_.update_proguard_spec && !proguard::CollectProguardRules(doc, keep_set_)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700483 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700484 }
485
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700486 if (options_.no_xml_namespaces) {
487 XmlNamespaceRemover namespace_remover;
488 if (!namespace_remover.Consume(context_, doc)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700489 return {};
Adam Lesinski355f2852016-02-13 20:26:45 -0800490 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700491 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800492
Adam Lesinskibb94f322017-07-12 07:41:55 -0700493 if (options_.no_auto_version) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700494 return make_singleton_vec(std::move(file_op->xml_to_flatten));
495 }
Alexandria Cornwalla7cc3f12016-08-16 13:33:32 -0700496
Adam Lesinskibb94f322017-07-12 07:41:55 -0700497 if (options_.no_version_vectors || options_.no_version_transitions) {
498 // Skip this if it is a vector or animated-vector.
Adam Lesinski6b372992017-08-09 10:54:23 -0700499 xml::Element* el = doc->root.get();
Adam Lesinskibb94f322017-07-12 07:41:55 -0700500 if (el && el->namespace_uri.empty()) {
501 if ((options_.no_version_vectors && IsVectorElement(el->name)) ||
502 (options_.no_version_transitions && IsTransitionElement(el->name))) {
503 return make_singleton_vec(std::move(file_op->xml_to_flatten));
504 }
505 }
506 }
507
Adam Lesinskic744ae82017-05-17 19:28:38 -0700508 const ConfigDescription& config = file_op->config;
509 ResourceEntry* entry = file_op->entry;
510
511 XmlCompatVersioner xml_compat_versioner(&rules_);
512 const util::Range<ApiVersion> api_range{config.sdkVersion,
513 FindNextApiVersionForConfig(entry, config)};
514 return xml_compat_versioner.Process(context_, doc, api_range);
Adam Lesinski355f2852016-02-13 20:26:45 -0800515}
516
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700517bool ResourceFileFlattener::Flatten(ResourceTable* table, IArchiveWriter* archive_writer) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700518 bool error = false;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700519 std::map<std::pair<ConfigDescription, StringPiece>, FileOperation> config_sorted_files;
Adam Lesinski355f2852016-02-13 20:26:45 -0800520
Adam Koskidc21dea2017-07-21 10:55:27 -0700521 proguard::CollectResourceReferences(context_, table, keep_set_);
522
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700523 for (auto& pkg : table->packages) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700524 CHECK(!pkg->name.empty()) << "Packages must have names when being linked";
525
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700526 for (auto& type : pkg->types) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700527 // Sort by config and name, so that we get better locality in the zip file.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700528 config_sorted_files.clear();
Adam Lesinskibb94f322017-07-12 07:41:55 -0700529 std::queue<FileOperation> file_operations;
Adam Lesinski355f2852016-02-13 20:26:45 -0800530
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700531 // Populate the queue with all files in the ResourceTable.
532 for (auto& entry : type->entries) {
Adam Lesinskibb94f322017-07-12 07:41:55 -0700533 for (auto& config_value : entry->values) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700534 // WARNING! Do not insert or remove any resources while executing in this scope. It will
535 // corrupt the iteration order.
536
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700537 FileReference* file_ref = ValueCast<FileReference>(config_value->value.get());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700538 if (!file_ref) {
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700539 continue;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700540 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700541
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700542 io::IFile* file = file_ref->file;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700543 if (!file) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700544 context_->GetDiagnostics()->Error(DiagMessage(file_ref->GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700545 << "file not found");
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700546 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700547 }
548
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700549 FileOperation file_op;
550 file_op.entry = entry.get();
551 file_op.dst_path = *file_ref->path;
552 file_op.config = config_value->config;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700553 file_op.file_to_copy = file;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700554
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700555 if (type->type != ResourceType::kRaw &&
Adam Lesinski00451162017-10-03 07:44:08 -0700556 (file_ref->type == ResourceFile::Type::kBinaryXml ||
557 file_ref->type == ResourceFile::Type::kProtoXml)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700558 std::unique_ptr<io::IData> data = file->OpenAsData();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700559 if (!data) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700560 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700561 << "failed to open file");
562 return false;
563 }
564
Adam Lesinski00451162017-10-03 07:44:08 -0700565 if (file_ref->type == ResourceFile::Type::kProtoXml) {
566 pb::XmlNode pb_xml_node;
567 if (!pb_xml_node.ParseFromArray(data->data(), static_cast<int>(data->size()))) {
568 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinski8780eb62017-10-31 17:44:39 -0700569 << "failed to parse proto XML");
Adam Lesinski00451162017-10-03 07:44:08 -0700570 return false;
571 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700572
Adam Lesinski00451162017-10-03 07:44:08 -0700573 std::string error;
574 file_op.xml_to_flatten = DeserializeXmlResourceFromPb(pb_xml_node, &error);
575 if (file_op.xml_to_flatten == nullptr) {
576 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinski8780eb62017-10-31 17:44:39 -0700577 << "failed to deserialize proto XML: " << error);
Adam Lesinski00451162017-10-03 07:44:08 -0700578 return false;
579 }
580 } else {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700581 std::string error_str;
582 file_op.xml_to_flatten = xml::Inflate(data->data(), data->size(), &error_str);
Adam Lesinski00451162017-10-03 07:44:08 -0700583 if (file_op.xml_to_flatten == nullptr) {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700584 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
585 << "failed to parse binary XML: " << error_str);
Adam Lesinski00451162017-10-03 07:44:08 -0700586 return false;
587 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700588 }
589
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700590 file_op.xml_to_flatten->file.config = config_value->config;
591 file_op.xml_to_flatten->file.source = file_ref->GetSource();
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700592 file_op.xml_to_flatten->file.name = ResourceName(pkg->name, type->type, entry->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700593 }
Adam Lesinskic744ae82017-05-17 19:28:38 -0700594
595 // NOTE(adamlesinski): Explicitly construct a StringPiece here, or
596 // else we end up copying the string in the std::make_pair() method,
597 // then creating a StringPiece from the copy, which would cause us
598 // to end up referencing garbage in the map.
599 const StringPiece entry_name(entry->name);
600 config_sorted_files[std::make_pair(config_value->config, entry_name)] =
601 std::move(file_op);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700602 }
603 }
604
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700605 // Now flatten the sorted values.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700606 for (auto& map_entry : config_sorted_files) {
607 const ConfigDescription& config = map_entry.first.first;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700608 FileOperation& file_op = map_entry.second;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700609
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700610 if (file_op.xml_to_flatten) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700611 std::vector<std::unique_ptr<xml::XmlResource>> versioned_docs =
612 LinkAndVersionXmlFile(table, &file_op);
Adam Lesinskic0a5e1e2017-08-07 11:56:32 -0700613 if (versioned_docs.empty()) {
614 error = true;
615 continue;
616 }
617
Adam Lesinskic744ae82017-05-17 19:28:38 -0700618 for (std::unique_ptr<xml::XmlResource>& doc : versioned_docs) {
619 std::string dst_path = file_op.dst_path;
620 if (doc->file.config != file_op.config) {
621 // Only add the new versioned configurations.
622 if (context_->IsVerbose()) {
623 context_->GetDiagnostics()->Note(DiagMessage(doc->file.source)
624 << "auto-versioning resource from config '"
625 << config << "' -> '" << doc->file.config << "'");
626 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700627
Adam Lesinskic744ae82017-05-17 19:28:38 -0700628 dst_path =
629 ResourceUtils::BuildResourceFileName(doc->file, context_->GetNameMangler());
Adam Lesinski71be7052017-12-12 16:48:07 -0800630 bool result =
631 table->AddFileReferenceMangled(doc->file.name, doc->file.config, doc->file.source,
632 dst_path, nullptr, context_->GetDiagnostics());
Adam Lesinskic744ae82017-05-17 19:28:38 -0700633 if (!result) {
634 return false;
635 }
636 }
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700637
638 error |= !FlattenXml(context_, *doc, dst_path, options_.keep_raw_values,
639 false /*utf16*/, options_.output_format, archive_writer);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700640 }
641 } else {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700642 error |= !io::CopyFileToArchive(context_, file_op.file_to_copy, file_op.dst_path,
643 GetCompressionFlags(file_op.dst_path), archive_writer);
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700644 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700645 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700646 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700647 }
648 return !error;
649}
650
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700651static bool WriteStableIdMapToPath(IDiagnostics* diag,
652 const std::unordered_map<ResourceName, ResourceId>& id_map,
653 const std::string& id_map_path) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800654 io::FileOutputStream fout(id_map_path);
655 if (fout.HadError()) {
656 diag->Error(DiagMessage(id_map_path) << "failed to open: " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700657 return false;
658 }
659
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800660 text::Printer printer(&fout);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700661 for (const auto& entry : id_map) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700662 const ResourceName& name = entry.first;
663 const ResourceId& id = entry.second;
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800664 printer.Print(name.to_string());
665 printer.Print(" = ");
666 printer.Println(id.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700667 }
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800668 fout.Flush();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700669
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800670 if (fout.HadError()) {
671 diag->Error(DiagMessage(id_map_path) << "failed writing to file: " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700672 return false;
673 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700674 return true;
675}
676
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700677static bool LoadStableIdMap(IDiagnostics* diag, const std::string& path,
678 std::unordered_map<ResourceName, ResourceId>* out_id_map) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700679 std::string content;
Adam Lesinski2354b562017-05-26 16:31:38 -0700680 if (!android::base::ReadFileToString(path, &content, true /*follow_symlinks*/)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700681 diag->Error(DiagMessage(path) << "failed reading stable ID file");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700682 return false;
683 }
684
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700685 out_id_map->clear();
686 size_t line_no = 0;
687 for (StringPiece line : util::Tokenize(content, '\n')) {
688 line_no++;
689 line = util::TrimWhitespace(line);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700690 if (line.empty()) {
691 continue;
692 }
693
694 auto iter = std::find(line.begin(), line.end(), '=');
695 if (iter == line.end()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700696 diag->Error(DiagMessage(Source(path, line_no)) << "missing '='");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700697 return false;
698 }
699
700 ResourceNameRef name;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700701 StringPiece res_name_str =
702 util::TrimWhitespace(line.substr(0, std::distance(line.begin(), iter)));
703 if (!ResourceUtils::ParseResourceName(res_name_str, &name)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700704 diag->Error(DiagMessage(Source(path, line_no)) << "invalid resource name '" << res_name_str
705 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700706 return false;
707 }
708
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700709 const size_t res_id_start_idx = std::distance(line.begin(), iter) + 1;
710 const size_t res_id_str_len = line.size() - res_id_start_idx;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700711 StringPiece res_id_str = util::TrimWhitespace(line.substr(res_id_start_idx, res_id_str_len));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700712
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700713 Maybe<ResourceId> maybe_id = ResourceUtils::ParseResourceId(res_id_str);
714 if (!maybe_id) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700715 diag->Error(DiagMessage(Source(path, line_no)) << "invalid resource ID '" << res_id_str
716 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700717 return false;
718 }
719
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700720 (*out_id_map)[name.ToResourceName()] = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700721 }
722 return true;
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700723}
724
Adam Lesinskic6284372017-12-04 13:46:23 -0800725static int32_t FindFrameworkAssetManagerCookie(const android::AssetManager& assets) {
726 using namespace android;
727
728 // Find the system package (0x01). AAPT always generates attributes with the type 0x01, so
729 // we're looking for the first attribute resource in the system package.
730 const ResTable& table = assets.getResources(true);
731 Res_value val;
732 ssize_t idx = table.getResource(0x01010000, &val, true);
733 if (idx != NO_ERROR) {
734 // Try as a bag.
735 const ResTable::bag_entry* entry;
736 ssize_t cnt = table.lockBag(0x01010000, &entry);
737 if (cnt >= 0) {
738 idx = entry->stringBlock;
739 }
740 table.unlockBag(entry);
741 }
742
743 if (idx < 0) {
744 return 0;
745 }
746 return table.getTableCookie(idx);
747}
748
Adam Lesinskifb48d292015-11-07 15:52:13 -0800749class LinkCommand {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700750 public:
751 LinkCommand(LinkContext* context, const LinkOptions& options)
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700752 : options_(options),
753 context_(context),
754 final_table_(),
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700755 file_collection_(util::make_unique<io::FileCollection>()) {
756 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700757
Adam Lesinskic6284372017-12-04 13:46:23 -0800758 void ExtractCompileSdkVersions(android::AssetManager* assets) {
759 using namespace android;
760
761 int32_t cookie = FindFrameworkAssetManagerCookie(*assets);
762 if (cookie == 0) {
763 // No Framework assets loaded. Not a failure.
764 return;
765 }
766
767 std::unique_ptr<Asset> manifest(
768 assets->openNonAsset(cookie, kAndroidManifestPath, Asset::AccessMode::ACCESS_BUFFER));
769 if (manifest == nullptr) {
770 // No errors.
771 return;
772 }
773
774 std::string error;
775 std::unique_ptr<xml::XmlResource> manifest_xml =
776 xml::Inflate(manifest->getBuffer(true /*wordAligned*/), manifest->getLength(), &error);
777 if (manifest_xml == nullptr) {
778 // No errors.
779 return;
780 }
781
782 xml::Attribute* attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionCode");
783 if (attr != nullptr) {
784 Maybe<std::string>& compile_sdk_version = options_.manifest_fixer_options.compile_sdk_version;
785 if (BinaryPrimitive* prim = ValueCast<BinaryPrimitive>(attr->compiled_value.get())) {
786 switch (prim->value.dataType) {
787 case Res_value::TYPE_INT_DEC:
788 compile_sdk_version = StringPrintf("%" PRId32, static_cast<int32_t>(prim->value.data));
789 break;
790 case Res_value::TYPE_INT_HEX:
791 compile_sdk_version = StringPrintf("%" PRIx32, prim->value.data);
792 break;
793 default:
794 break;
795 }
796 } else if (String* str = ValueCast<String>(attr->compiled_value.get())) {
797 compile_sdk_version = *str->value;
798 } else {
799 compile_sdk_version = attr->value;
800 }
801 }
802
803 attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionName");
804 if (attr != nullptr) {
805 Maybe<std::string>& compile_sdk_version_codename =
806 options_.manifest_fixer_options.compile_sdk_version_codename;
807 if (String* str = ValueCast<String>(attr->compiled_value.get())) {
808 compile_sdk_version_codename = *str->value;
809 } else {
810 compile_sdk_version_codename = attr->value;
811 }
812 }
813 }
814
Adam Lesinski8780eb62017-10-31 17:44:39 -0700815 // Creates a SymbolTable that loads symbols from the various APKs.
Adam Lesinskic6284372017-12-04 13:46:23 -0800816 // Pre-condition: context_->GetCompilationPackage() needs to be set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700817 bool LoadSymbolsFromIncludePaths() {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700818 auto asset_source = util::make_unique<AssetManagerSymbolSource>();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700819 for (const std::string& path : options_.include_paths) {
820 if (context_->IsVerbose()) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700821 context_->GetDiagnostics()->Note(DiagMessage() << "including " << path);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700822 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700823
Adam Lesinski8780eb62017-10-31 17:44:39 -0700824 std::string error;
825 auto zip_collection = io::ZipFileCollection::Create(path, &error);
826 if (zip_collection == nullptr) {
827 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open APK: " << error);
828 return false;
829 }
830
831 if (zip_collection->FindFile(kProtoResourceTablePath) != nullptr) {
832 // Load this as a static library include.
833 std::unique_ptr<LoadedApk> static_apk = LoadedApk::LoadProtoApkFromFileCollection(
834 Source(path), std::move(zip_collection), context_->GetDiagnostics());
835 if (static_apk == nullptr) {
836 return false;
837 }
838
Adam Lesinskib522f042017-04-21 16:57:59 -0700839 if (context_->GetPackageType() != PackageType::kStaticLib) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800840 // Can't include static libraries when not building a static library (they have no IDs
841 // assigned).
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700842 context_->GetDiagnostics()->Error(
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800843 DiagMessage(path) << "can't include static library when not building a static lib");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700844 return false;
845 }
846
Adam Lesinski8780eb62017-10-31 17:44:39 -0700847 ResourceTable* table = static_apk->GetResourceTable();
848
849 // If we are using --no-static-lib-packages, we need to rename the package of this table to
850 // our compilation package.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700851 if (options_.no_static_lib_packages) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800852 // Since package names can differ, and multiple packages can exist in a ResourceTable,
853 // we place the requirement that all static libraries are built with the package
854 // ID 0x7f. So if one is not found, this is an error.
Adam Lesinski8780eb62017-10-31 17:44:39 -0700855 if (ResourceTablePackage* pkg = table->FindPackageById(kAppPackageId)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700856 pkg->name = context_->GetCompilationPackage();
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800857 } else {
858 context_->GetDiagnostics()->Error(DiagMessage(path)
859 << "no package with ID 0x7f found in static library");
860 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700861 }
862 }
863
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700864 context_->GetExternalSymbols()->AppendSource(
Adam Lesinski8780eb62017-10-31 17:44:39 -0700865 util::make_unique<ResourceTableSymbolSource>(table));
866 static_library_includes_.push_back(std::move(static_apk));
867 } else {
868 if (!asset_source->AddAssetPath(path)) {
869 context_->GetDiagnostics()->Error(DiagMessage()
870 << "failed to load include path " << path);
871 return false;
872 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700873 }
874 }
875
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800876 // Capture the shared libraries so that the final resource table can be properly flattened
877 // with support for shared libraries.
878 for (auto& entry : asset_source->GetAssignedPackageIds()) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800879 if (entry.first > kFrameworkPackageId && entry.first < kAppPackageId) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800880 final_table_.included_packages_[entry.first] = entry.second;
Adam Lesinski490595a2017-11-07 17:08:07 -0800881 } else if (entry.first == kAppPackageId) {
882 // Capture the included base feature package.
883 included_feature_base_ = entry.second;
Adam Lesinskic6284372017-12-04 13:46:23 -0800884 } else if (entry.first == kFrameworkPackageId) {
885 // Try to embed which version of the framework we're compiling against.
886 // First check if we should use compileSdkVersion at all. Otherwise compilation may fail
887 // when linking our synthesized 'android:compileSdkVersion' attribute.
888 std::unique_ptr<SymbolTable::Symbol> symbol = asset_source->FindByName(
889 ResourceName("android", ResourceType::kAttr, "compileSdkVersion"));
890 if (symbol != nullptr && symbol->is_public) {
891 // The symbol is present and public, extract the android:versionName and
892 // android:versionCode from the framework AndroidManifest.xml.
893 ExtractCompileSdkVersions(asset_source->GetAssetManager());
894 }
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800895 }
896 }
897
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700898 context_->GetExternalSymbols()->AppendSource(std::move(asset_source));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700899 return true;
900 }
901
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800902 Maybe<AppInfo> ExtractAppInfoFromManifest(xml::XmlResource* xml_res, IDiagnostics* diag) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700903 // Make sure the first element is <manifest> with package attribute.
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800904 xml::Element* manifest_el = xml::FindRootElement(xml_res->root.get());
905 if (manifest_el == nullptr) {
906 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700907 }
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800908
909 AppInfo app_info;
910
911 if (!manifest_el->namespace_uri.empty() || manifest_el->name != "manifest") {
912 diag->Error(DiagMessage(xml_res->file.source) << "root tag must be <manifest>");
913 return {};
914 }
915
916 xml::Attribute* package_attr = manifest_el->FindAttribute({}, "package");
917 if (!package_attr) {
918 diag->Error(DiagMessage(xml_res->file.source)
919 << "<manifest> must have a 'package' attribute");
920 return {};
921 }
922 app_info.package = package_attr->value;
923
924 if (xml::Attribute* version_code_attr =
925 manifest_el->FindAttribute(xml::kSchemaAndroid, "versionCode")) {
926 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(version_code_attr->value);
927 if (!maybe_code) {
928 diag->Error(DiagMessage(xml_res->file.source.WithLine(manifest_el->line_number))
929 << "invalid android:versionCode '" << version_code_attr->value << "'");
930 return {};
931 }
932 app_info.version_code = maybe_code.value();
933 }
934
935 if (xml::Attribute* revision_code_attr =
936 manifest_el->FindAttribute(xml::kSchemaAndroid, "revisionCode")) {
937 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(revision_code_attr->value);
938 if (!maybe_code) {
939 diag->Error(DiagMessage(xml_res->file.source.WithLine(manifest_el->line_number))
940 << "invalid android:revisionCode '" << revision_code_attr->value << "'");
941 return {};
942 }
943 app_info.revision_code = maybe_code.value();
944 }
945
946 if (xml::Attribute* split_name_attr = manifest_el->FindAttribute({}, "split")) {
947 if (!split_name_attr->value.empty()) {
948 app_info.split_name = split_name_attr->value;
949 }
950 }
951
952 if (xml::Element* uses_sdk_el = manifest_el->FindChild({}, "uses-sdk")) {
953 if (xml::Attribute* min_sdk =
954 uses_sdk_el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion")) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700955 app_info.min_sdk_version = ResourceUtils::ParseSdkVersion(min_sdk->value);
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800956 }
957 }
958 return app_info;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700959 }
960
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700961 // Precondition: ResourceTable doesn't have any IDs assigned yet, nor is it linked.
962 // Postcondition: ResourceTable has only one package left. All others are
963 // stripped, or there is an error and false is returned.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700964 bool VerifyNoExternalPackages() {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700965 auto is_ext_package_func = [&](const std::unique_ptr<ResourceTablePackage>& pkg) -> bool {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700966 return context_->GetCompilationPackage() != pkg->name || !pkg->id ||
967 pkg->id.value() != context_->GetPackageId();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700968 };
969
970 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700971 for (const auto& package : final_table_.packages) {
972 if (is_ext_package_func(package)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700973 // We have a package that is not related to the one we're building!
974 for (const auto& type : package->types) {
975 for (const auto& entry : type->entries) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700976 ResourceNameRef res_name(package->name, type->type, entry->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700977
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700978 for (const auto& config_value : entry->values) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700979 // Special case the occurrence of an ID that is being generated
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700980 // for the 'android' package. This is due to legacy reasons.
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700981 if (ValueCast<Id>(config_value->value.get()) && package->name == "android") {
982 context_->GetDiagnostics()->Warn(DiagMessage(config_value->value->GetSource())
983 << "generated id '" << res_name
984 << "' for external package '" << package->name
985 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700986 } else {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700987 context_->GetDiagnostics()->Error(DiagMessage(config_value->value->GetSource())
988 << "defined resource '" << res_name
989 << "' for external package '" << package->name
990 << "'");
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700991 error = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700992 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700993 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700994 }
995 }
996 }
997 }
998
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700999 auto new_end_iter = std::remove_if(final_table_.packages.begin(), final_table_.packages.end(),
1000 is_ext_package_func);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001001 final_table_.packages.erase(new_end_iter, final_table_.packages.end());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001002 return !error;
1003 }
1004
1005 /**
1006 * Returns true if no IDs have been set, false otherwise.
1007 */
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001008 bool VerifyNoIdsSet() {
1009 for (const auto& package : final_table_.packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001010 for (const auto& type : package->types) {
1011 if (type->id) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001012 context_->GetDiagnostics()->Error(DiagMessage() << "type " << type->type << " has ID "
1013 << StringPrintf("%02x", type->id.value())
1014 << " assigned");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001015 return false;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001016 }
1017
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001018 for (const auto& entry : type->entries) {
1019 if (entry->id) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001020 ResourceNameRef res_name(package->name, type->type, entry->name);
1021 context_->GetDiagnostics()->Error(
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001022 DiagMessage() << "entry " << res_name << " has ID "
1023 << StringPrintf("%02x", entry->id.value()) << " assigned");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001024 return false;
1025 }
1026 }
1027 }
1028 }
1029 return true;
1030 }
1031
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001032 std::unique_ptr<IArchiveWriter> MakeArchiveWriter(const StringPiece& out) {
1033 if (options_.output_to_directory) {
1034 return CreateDirectoryArchiveWriter(context_->GetDiagnostics(), out);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001035 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001036 return CreateZipFileArchiveWriter(context_->GetDiagnostics(), out);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001037 }
1038 }
1039
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001040 bool FlattenTable(ResourceTable* table, OutputFormat format, IArchiveWriter* writer) {
1041 switch (format) {
1042 case OutputFormat::kApk: {
1043 BigBuffer buffer(1024);
1044 TableFlattener flattener(options_.table_flattener_options, &buffer);
1045 if (!flattener.Consume(context_, table)) {
1046 context_->GetDiagnostics()->Error(DiagMessage() << "failed to flatten resource table");
1047 return false;
1048 }
1049
1050 io::BigBufferInputStream input_stream(&buffer);
1051 return io::CopyInputStreamToArchive(context_, &input_stream, kApkResourceTablePath,
1052 ArchiveEntry::kAlign, writer);
1053 } break;
1054
1055 case OutputFormat::kProto: {
1056 pb::ResourceTable pb_table;
1057 SerializeTableToPb(*table, &pb_table);
1058 return io::CopyProtoToArchive(context_, &pb_table, kProtoResourceTablePath,
1059 ArchiveEntry::kCompress, writer);
1060 } break;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001061 }
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001062 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001063 }
1064
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001065 bool WriteJavaFile(ResourceTable* table, const StringPiece& package_name_to_generate,
Adam Lesinski418763f2017-04-11 17:36:53 -07001066 const StringPiece& out_package, const JavaClassGeneratorOptions& java_options,
Chih-Hung Hsieh4dc58122017-08-03 16:28:10 -07001067 const Maybe<std::string>& out_text_symbols_path = {}) {
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001068 if (!options_.generate_java_class_path && !out_text_symbols_path) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001069 return true;
1070 }
1071
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001072 std::string out_path;
1073 std::unique_ptr<io::FileOutputStream> fout;
1074 if (options_.generate_java_class_path) {
1075 out_path = options_.generate_java_class_path.value();
1076 file::AppendPath(&out_path, file::PackageToPath(out_package));
1077 if (!file::mkdirs(out_path)) {
1078 context_->GetDiagnostics()->Error(DiagMessage()
1079 << "failed to create directory '" << out_path << "'");
1080 return false;
1081 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001082
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001083 file::AppendPath(&out_path, "R.java");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001084
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001085 fout = util::make_unique<io::FileOutputStream>(out_path);
1086 if (fout->HadError()) {
1087 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1088 << "': " << fout->GetError());
1089 return false;
1090 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001091 }
1092
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001093 std::unique_ptr<io::FileOutputStream> fout_text;
Adam Lesinski418763f2017-04-11 17:36:53 -07001094 if (out_text_symbols_path) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001095 fout_text = util::make_unique<io::FileOutputStream>(out_text_symbols_path.value());
1096 if (fout_text->HadError()) {
1097 context_->GetDiagnostics()->Error(DiagMessage()
1098 << "failed writing to '" << out_text_symbols_path.value()
1099 << "': " << fout_text->GetError());
Adam Lesinski418763f2017-04-11 17:36:53 -07001100 return false;
1101 }
1102 }
1103
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001104 JavaClassGenerator generator(context_, table, java_options);
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001105 if (!generator.Generate(package_name_to_generate, out_package, fout.get(), fout_text.get())) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001106 context_->GetDiagnostics()->Error(DiagMessage(out_path) << generator.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001107 return false;
1108 }
1109
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001110 return true;
1111 }
1112
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001113 bool GenerateJavaClasses() {
1114 // The set of packages whose R class to call in the main classes onResourcesLoaded callback.
1115 std::vector<std::string> packages_to_callback;
1116
1117 JavaClassGeneratorOptions template_options;
1118 template_options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1119 template_options.javadoc_annotations = options_.javadoc_annotations;
1120
1121 if (context_->GetPackageType() == PackageType::kStaticLib || options_.generate_non_final_ids) {
1122 template_options.use_final = false;
1123 }
1124
1125 if (context_->GetPackageType() == PackageType::kSharedLib) {
1126 template_options.use_final = false;
1127 template_options.rewrite_callback_options = OnResourcesLoadedCallbackOptions{};
1128 }
1129
1130 const StringPiece actual_package = context_->GetCompilationPackage();
1131 StringPiece output_package = context_->GetCompilationPackage();
1132 if (options_.custom_java_package) {
1133 // Override the output java package to the custom one.
1134 output_package = options_.custom_java_package.value();
1135 }
1136
1137 // Generate the private symbols if required.
1138 if (options_.private_symbols) {
1139 packages_to_callback.push_back(options_.private_symbols.value());
1140
1141 // If we defined a private symbols package, we only emit Public symbols
1142 // to the original package, and private and public symbols to the private package.
1143 JavaClassGeneratorOptions options = template_options;
1144 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublicPrivate;
1145 if (!WriteJavaFile(&final_table_, actual_package, options_.private_symbols.value(),
1146 options)) {
1147 return false;
1148 }
1149 }
1150
1151 // Generate copies of the original package R class but with different package names.
1152 // This is to support non-namespaced builds.
1153 for (const std::string& extra_package : options_.extra_java_packages) {
1154 packages_to_callback.push_back(extra_package);
1155
1156 JavaClassGeneratorOptions options = template_options;
1157 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1158 if (!WriteJavaFile(&final_table_, actual_package, extra_package, options)) {
1159 return false;
1160 }
1161 }
1162
1163 // Generate R classes for each package that was merged (static library).
1164 // Use the actual package's resources only.
1165 for (const std::string& package : table_merger_->merged_packages()) {
1166 packages_to_callback.push_back(package);
1167
1168 JavaClassGeneratorOptions options = template_options;
1169 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1170 if (!WriteJavaFile(&final_table_, package, package, options)) {
1171 return false;
1172 }
1173 }
1174
1175 // Generate the main public R class.
1176 JavaClassGeneratorOptions options = template_options;
1177
1178 // Only generate public symbols if we have a private package.
1179 if (options_.private_symbols) {
1180 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublic;
1181 }
1182
1183 if (options.rewrite_callback_options) {
1184 options.rewrite_callback_options.value().packages_to_callback =
1185 std::move(packages_to_callback);
1186 }
1187
1188 if (!WriteJavaFile(&final_table_, actual_package, output_package, options,
1189 options_.generate_text_symbols_path)) {
1190 return false;
1191 }
1192
1193 return true;
1194 }
1195
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001196 bool WriteManifestJavaFile(xml::XmlResource* manifest_xml) {
1197 if (!options_.generate_java_class_path) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001198 return true;
1199 }
1200
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001201 std::unique_ptr<ClassDefinition> manifest_class =
1202 GenerateManifestClass(context_->GetDiagnostics(), manifest_xml);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001203
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001204 if (!manifest_class) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001205 // Something bad happened, but we already logged it, so exit.
1206 return false;
1207 }
1208
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001209 if (manifest_class->empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001210 // Empty Manifest class, no need to generate it.
1211 return true;
1212 }
1213
1214 // Add any JavaDoc annotations to the generated class.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001215 for (const std::string& annotation : options_.javadoc_annotations) {
1216 std::string proper_annotation = "@";
1217 proper_annotation += annotation;
1218 manifest_class->GetCommentBuilder()->AppendComment(proper_annotation);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001219 }
1220
Adam Lesinski0d81f702017-06-27 15:51:09 -07001221 const std::string package_utf8 =
1222 options_.custom_java_package.value_or_default(context_->GetCompilationPackage());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001223
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001224 std::string out_path = options_.generate_java_class_path.value();
1225 file::AppendPath(&out_path, file::PackageToPath(package_utf8));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001226
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001227 if (!file::mkdirs(out_path)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001228 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create directory '" << out_path
1229 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001230 return false;
1231 }
1232
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001233 file::AppendPath(&out_path, "Manifest.java");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001234
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001235 io::FileOutputStream fout(out_path);
1236 if (fout.HadError()) {
1237 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open '" << out_path
1238 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001239 return false;
1240 }
1241
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001242 ClassDefinition::WriteJavaFile(manifest_class.get(), package_utf8, true, &fout);
1243 fout.Flush();
1244
1245 if (fout.HadError()) {
1246 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1247 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001248 return false;
1249 }
1250 return true;
1251 }
1252
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001253 bool WriteProguardFile(const Maybe<std::string>& out, const proguard::KeepSet& keep_set) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001254 if (!out) {
1255 return true;
1256 }
1257
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001258 const std::string& out_path = out.value();
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001259 io::FileOutputStream fout(out_path);
1260 if (fout.HadError()) {
1261 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open '" << out_path
1262 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001263 return false;
1264 }
1265
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001266 proguard::WriteKeepSet(keep_set, &fout);
1267 fout.Flush();
1268
1269 if (fout.HadError()) {
1270 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1271 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001272 return false;
1273 }
1274 return true;
1275 }
1276
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001277 bool MergeStaticLibrary(const std::string& input, bool override) {
1278 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001279 context_->GetDiagnostics()->Note(DiagMessage() << "merging static library " << input);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001280 }
1281
Adam Lesinski8780eb62017-10-31 17:44:39 -07001282 std::unique_ptr<LoadedApk> apk = LoadedApk::LoadApkFromPath(input, context_->GetDiagnostics());
1283 if (apk == nullptr) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001284 context_->GetDiagnostics()->Error(DiagMessage(input) << "invalid static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001285 return false;
1286 }
1287
Adam Lesinski8780eb62017-10-31 17:44:39 -07001288 ResourceTable* table = apk->GetResourceTable();
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001289 ResourceTablePackage* pkg = table->FindPackageById(kAppPackageId);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001290 if (!pkg) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001291 context_->GetDiagnostics()->Error(DiagMessage(input) << "static library has no package");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001292 return false;
1293 }
1294
1295 bool result;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001296 if (options_.no_static_lib_packages) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001297 // Merge all resources as if they were in the compilation package. This is the old behavior
1298 // of aapt.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001299
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001300 // Add the package to the set of --extra-packages so we emit an R.java for each library
1301 // package.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001302 if (!pkg->name.empty()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001303 options_.extra_java_packages.insert(pkg->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001304 }
1305
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001306 // Clear the package name, so as to make the resources look like they are coming from the
1307 // local package.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001308 pkg->name = "";
Adam Lesinski8780eb62017-10-31 17:44:39 -07001309 result = table_merger_->Merge(Source(input), table, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001310
1311 } else {
1312 // This is the proper way to merge libraries, where the package name is
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001313 // preserved and resource names are mangled.
Adam Lesinski8780eb62017-10-31 17:44:39 -07001314 result = table_merger_->MergeAndMangle(Source(input), pkg->name, table);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001315 }
1316
1317 if (!result) {
1318 return false;
1319 }
1320
1321 // Make sure to move the collection into the set of IFileCollections.
Adam Lesinski8780eb62017-10-31 17:44:39 -07001322 merged_apks_.push_back(std::move(apk));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001323 return true;
1324 }
1325
Adam Lesinski2427dce2017-11-30 15:10:28 -08001326 bool MergeExportedSymbols(const Source& source,
1327 const std::vector<SourcedResourceName>& exported_symbols) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001328 // Add the exports of this file to the table.
Adam Lesinski2427dce2017-11-30 15:10:28 -08001329 for (const SourcedResourceName& exported_symbol : exported_symbols) {
Adam Lesinski00451162017-10-03 07:44:08 -07001330 ResourceName res_name = exported_symbol.name;
1331 if (res_name.package.empty()) {
1332 res_name.package = context_->GetCompilationPackage();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001333 }
1334
Adam Lesinski00451162017-10-03 07:44:08 -07001335 Maybe<ResourceName> mangled_name = context_->GetNameMangler()->MangleName(res_name);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001336 if (mangled_name) {
1337 res_name = mangled_name.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001338 }
1339
1340 std::unique_ptr<Id> id = util::make_unique<Id>();
Adam Lesinski2427dce2017-11-30 15:10:28 -08001341 id->SetSource(source.WithLine(exported_symbol.line));
Adam Lesinski71be7052017-12-12 16:48:07 -08001342 bool result =
1343 final_table_.AddResourceMangled(res_name, ConfigDescription::DefaultConfig(),
1344 std::string(), std::move(id), context_->GetDiagnostics());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001345 if (!result) {
1346 return false;
1347 }
1348 }
1349 return true;
1350 }
1351
Adam Lesinski2427dce2017-11-30 15:10:28 -08001352 bool MergeCompiledFile(const ResourceFile& compiled_file, io::IFile* file, bool override) {
1353 if (context_->IsVerbose()) {
1354 context_->GetDiagnostics()->Note(DiagMessage()
1355 << "merging '" << compiled_file.name
1356 << "' from compiled file " << compiled_file.source);
1357 }
1358
1359 if (!table_merger_->MergeFile(compiled_file, override, file)) {
1360 return false;
1361 }
1362 return MergeExportedSymbols(compiled_file.source, compiled_file.exported_symbols);
1363 }
1364
Adam Lesinski00451162017-10-03 07:44:08 -07001365 // Takes a path to load as a ZIP file and merges the files within into the master ResourceTable.
1366 // If override is true, conflicting resources are allowed to override each other, in order of last
1367 // seen.
1368 // An io::IFileCollection is created from the ZIP file and added to the set of
1369 // io::IFileCollections that are open.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001370 bool MergeArchive(const std::string& input, bool override) {
1371 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001372 context_->GetDiagnostics()->Note(DiagMessage() << "merging archive " << input);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001373 }
1374
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001375 std::string error_str;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001376 std::unique_ptr<io::ZipFileCollection> collection =
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001377 io::ZipFileCollection::Create(input, &error_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001378 if (!collection) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001379 context_->GetDiagnostics()->Error(DiagMessage(input) << error_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001380 return false;
1381 }
1382
1383 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001384 for (auto iter = collection->Iterator(); iter->HasNext();) {
1385 if (!MergeFile(iter->Next(), override)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001386 error = true;
1387 }
1388 }
1389
1390 // Make sure to move the collection into the set of IFileCollections.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001391 collections_.push_back(std::move(collection));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001392 return !error;
1393 }
1394
Adam Lesinski00451162017-10-03 07:44:08 -07001395 // Takes a path to load and merge into the master ResourceTable. If override is true,
1396 // conflicting resources are allowed to override each other, in order of last seen.
1397 // If the file path ends with .flata, .jar, .jack, or .zip the file is treated
1398 // as ZIP archive and the files within are merged individually.
1399 // Otherwise the file is processed on its own.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001400 bool MergePath(const std::string& path, bool override) {
1401 if (util::EndsWith(path, ".flata") || util::EndsWith(path, ".jar") ||
1402 util::EndsWith(path, ".jack") || util::EndsWith(path, ".zip")) {
1403 return MergeArchive(path, override);
1404 } else if (util::EndsWith(path, ".apk")) {
1405 return MergeStaticLibrary(path, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001406 }
1407
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001408 io::IFile* file = file_collection_->InsertFile(path);
1409 return MergeFile(file, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001410 }
1411
Adam Lesinski00451162017-10-03 07:44:08 -07001412 // Takes an AAPT Container file (.apc/.flat) to load and merge into the master ResourceTable.
1413 // If override is true, conflicting resources are allowed to override each other, in order of last
1414 // seen.
1415 // All other file types are ignored. This is because these files could be coming from a zip,
1416 // where we could have other files like classes.dex.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001417 bool MergeFile(io::IFile* file, bool override) {
1418 const Source& src = file->GetSource();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001419
Adam Lesinski00451162017-10-03 07:44:08 -07001420 if (util::EndsWith(src.path, ".xml") || util::EndsWith(src.path, ".png")) {
Adam Lesinski6a396c12016-10-20 14:38:23 -07001421 // Since AAPT compiles these file types and appends .flat to them, seeing
1422 // their raw extensions is a sign that they weren't compiled.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001423 const StringPiece file_type = util::EndsWith(src.path, ".xml") ? "XML" : "PNG";
1424 context_->GetDiagnostics()->Error(DiagMessage(src) << "uncompiled " << file_type
1425 << " file passed as argument. Must be "
1426 "compiled first into .flat file.");
Adam Lesinski6a396c12016-10-20 14:38:23 -07001427 return false;
Adam Lesinski00451162017-10-03 07:44:08 -07001428 } else if (!util::EndsWith(src.path, ".apc") && !util::EndsWith(src.path, ".flat")) {
1429 if (context_->IsVerbose()) {
1430 context_->GetDiagnostics()->Warn(DiagMessage(src) << "ignoring unrecognized file");
1431 return true;
1432 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001433 }
1434
Adam Lesinski00451162017-10-03 07:44:08 -07001435 std::unique_ptr<io::InputStream> input_stream = file->OpenInputStream();
1436 if (input_stream == nullptr) {
1437 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to open file");
1438 return false;
1439 }
1440
1441 if (input_stream->HadError()) {
1442 context_->GetDiagnostics()->Error(DiagMessage(src)
1443 << "failed to open file: " << input_stream->GetError());
1444 return false;
1445 }
1446
1447 ContainerReaderEntry* entry;
1448 ContainerReader reader(input_stream.get());
Mohamed Heikal10844322018-02-07 15:17:38 -05001449
1450 if (reader.HadError()) {
1451 context_->GetDiagnostics()->Error(DiagMessage(src)
1452 << "failed to read file: " << reader.GetError());
1453 return false;
1454 }
1455
Adam Lesinski00451162017-10-03 07:44:08 -07001456 while ((entry = reader.Next()) != nullptr) {
1457 if (entry->Type() == ContainerEntryType::kResTable) {
1458 pb::ResourceTable pb_table;
1459 if (!entry->GetResTable(&pb_table)) {
1460 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to read resource table: "
1461 << entry->GetError());
1462 return false;
1463 }
1464
1465 ResourceTable table;
1466 std::string error;
Adam Lesinski8780eb62017-10-31 17:44:39 -07001467 if (!DeserializeTableFromPb(pb_table, nullptr /*files*/, &table, &error)) {
Adam Lesinski00451162017-10-03 07:44:08 -07001468 context_->GetDiagnostics()->Error(DiagMessage(src)
1469 << "failed to deserialize resource table: " << error);
1470 return false;
1471 }
1472
1473 if (!table_merger_->Merge(src, &table, override)) {
1474 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to merge resource table");
1475 return false;
1476 }
1477 } else if (entry->Type() == ContainerEntryType::kResFile) {
1478 pb::internal::CompiledFile pb_compiled_file;
1479 off64_t offset;
1480 size_t len;
1481 if (!entry->GetResFileOffsets(&pb_compiled_file, &offset, &len)) {
1482 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to get resource file: "
1483 << entry->GetError());
1484 return false;
1485 }
1486
1487 ResourceFile resource_file;
1488 std::string error;
1489 if (!DeserializeCompiledFileFromPb(pb_compiled_file, &resource_file, &error)) {
1490 context_->GetDiagnostics()->Error(DiagMessage(src)
1491 << "failed to read compiled header: " << error);
1492 return false;
1493 }
1494
1495 if (!MergeCompiledFile(resource_file, file->CreateFileSegment(offset, len), override)) {
1496 return false;
1497 }
1498 }
1499 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001500 return true;
1501 }
1502
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001503 bool CopyAssetsDirsToApk(IArchiveWriter* writer) {
1504 std::map<std::string, std::unique_ptr<io::RegularFile>> merged_assets;
1505 for (const std::string& assets_dir : options_.assets_dirs) {
1506 Maybe<std::vector<std::string>> files =
1507 file::FindFiles(assets_dir, context_->GetDiagnostics(), nullptr);
1508 if (!files) {
1509 return false;
1510 }
1511
1512 for (const std::string& file : files.value()) {
1513 std::string full_key = "assets/" + file;
1514 std::string full_path = assets_dir;
1515 file::AppendPath(&full_path, file);
1516
1517 auto iter = merged_assets.find(full_key);
1518 if (iter == merged_assets.end()) {
1519 merged_assets.emplace(std::move(full_key),
1520 util::make_unique<io::RegularFile>(Source(std::move(full_path))));
1521 } else if (context_->IsVerbose()) {
1522 context_->GetDiagnostics()->Warn(DiagMessage(iter->second->GetSource())
1523 << "asset file overrides '" << full_path << "'");
1524 }
1525 }
1526 }
1527
1528 for (auto& entry : merged_assets) {
1529 uint32_t compression_flags = ArchiveEntry::kCompress;
1530 std::string extension = file::GetExtension(entry.first).to_string();
1531 if (options_.extensions_to_not_compress.count(extension) > 0) {
1532 compression_flags = 0u;
1533 }
1534
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001535 if (!io::CopyFileToArchive(context_, entry.second.get(), entry.first, compression_flags,
1536 writer)) {
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001537 return false;
1538 }
1539 }
1540 return true;
1541 }
1542
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001543 // Writes the AndroidManifest, ResourceTable, and all XML files referenced by the ResourceTable
1544 // to the IArchiveWriter.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001545 bool WriteApk(IArchiveWriter* writer, proguard::KeepSet* keep_set, xml::XmlResource* manifest,
1546 ResourceTable* table) {
Adam Lesinskib522f042017-04-21 16:57:59 -07001547 const bool keep_raw_values = context_->GetPackageType() == PackageType::kStaticLib;
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001548 bool result = FlattenXml(context_, *manifest, "AndroidManifest.xml", keep_raw_values,
1549 true /*utf16*/, options_.output_format, writer);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001550 if (!result) {
1551 return false;
1552 }
1553
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001554 ResourceFileFlattenerOptions file_flattener_options;
1555 file_flattener_options.keep_raw_values = keep_raw_values;
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001556 file_flattener_options.do_not_compress_anything = options_.do_not_compress_anything;
1557 file_flattener_options.extensions_to_not_compress = options_.extensions_to_not_compress;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001558 file_flattener_options.no_auto_version = options_.no_auto_version;
1559 file_flattener_options.no_version_vectors = options_.no_version_vectors;
Yuichi Araki4d35cca2017-01-18 20:42:17 +09001560 file_flattener_options.no_version_transitions = options_.no_version_transitions;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001561 file_flattener_options.no_xml_namespaces = options_.no_xml_namespaces;
1562 file_flattener_options.update_proguard_spec =
1563 static_cast<bool>(options_.generate_proguard_rules_path);
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001564 file_flattener_options.output_format = options_.output_format;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001565
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001566 ResourceFileFlattener file_flattener(file_flattener_options, context_, keep_set);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001567
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001568 if (!file_flattener.Flatten(table, writer)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001569 context_->GetDiagnostics()->Error(DiagMessage() << "failed linking file resources");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001570 return false;
1571 }
1572
Adam Lesinski490595a2017-11-07 17:08:07 -08001573 // Hack to fix b/68820737.
1574 // We need to modify the ResourceTable's package name, but that should NOT affect
1575 // anything else being generated, which includes the Java classes.
1576 // If required, the package name is modifed before flattening, and then modified back
1577 // to its original name.
1578 ResourceTablePackage* package_to_rewrite = nullptr;
1579 if (context_->GetPackageId() > kAppPackageId &&
1580 included_feature_base_ == make_value(context_->GetCompilationPackage())) {
1581 // The base APK is included, and this is a feature split. If the base package is
1582 // the same as this package, then we are building an old style Android Instant Apps feature
1583 // split and must apply this workaround to avoid requiring namespaces support.
1584 package_to_rewrite = table->FindPackage(context_->GetCompilationPackage());
1585 if (package_to_rewrite != nullptr) {
1586 CHECK_EQ(1u, table->packages.size()) << "can't change name of package when > 1 package";
1587
1588 std::string new_package_name =
1589 StringPrintf("%s.%s", package_to_rewrite->name.c_str(),
1590 app_info_.split_name.value_or_default("feature").c_str());
1591
1592 if (context_->IsVerbose()) {
1593 context_->GetDiagnostics()->Note(
1594 DiagMessage() << "rewriting resource package name for feature split to '"
1595 << new_package_name << "'");
1596 }
1597 package_to_rewrite->name = new_package_name;
1598 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001599 }
Adam Lesinski490595a2017-11-07 17:08:07 -08001600
1601 bool success = FlattenTable(table, options_.output_format, writer);
1602
1603 if (package_to_rewrite != nullptr) {
1604 // Change the name back.
1605 package_to_rewrite->name = context_->GetCompilationPackage();
1606 if (package_to_rewrite->id) {
1607 table->included_packages_.erase(package_to_rewrite->id.value());
1608 }
1609 }
1610
1611 if (!success) {
1612 context_->GetDiagnostics()->Error(DiagMessage() << "failed to write resource table");
1613 }
1614 return success;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001615 }
1616
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001617 int Run(const std::vector<std::string>& input_files) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001618 // Load the AndroidManifest.xml
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001619 std::unique_ptr<xml::XmlResource> manifest_xml =
1620 LoadXml(options_.manifest_path, context_->GetDiagnostics());
1621 if (!manifest_xml) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001622 return 1;
1623 }
1624
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001625 // First extract the Package name without modifying it (via --rename-manifest-package).
1626 if (Maybe<AppInfo> maybe_app_info =
1627 ExtractAppInfoFromManifest(manifest_xml.get(), context_->GetDiagnostics())) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001628 const AppInfo& app_info = maybe_app_info.value();
1629 context_->SetCompilationPackage(app_info.package);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001630 }
1631
Adam Lesinskic6284372017-12-04 13:46:23 -08001632 // Now that the compilation package is set, load the dependencies. This will also extract
1633 // the Android framework's versionCode and versionName, if they exist.
1634 if (!LoadSymbolsFromIncludePaths()) {
1635 return 1;
1636 }
1637
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001638 ManifestFixer manifest_fixer(options_.manifest_fixer_options);
1639 if (!manifest_fixer.Consume(context_, manifest_xml.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001640 return 1;
1641 }
1642
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001643 Maybe<AppInfo> maybe_app_info =
1644 ExtractAppInfoFromManifest(manifest_xml.get(), context_->GetDiagnostics());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001645 if (!maybe_app_info) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001646 return 1;
1647 }
1648
Adam Lesinski490595a2017-11-07 17:08:07 -08001649 app_info_ = maybe_app_info.value();
1650 context_->SetMinSdkVersion(app_info_.min_sdk_version.value_or_default(0));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001651
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001652 context_->SetNameManglerPolicy(NameManglerPolicy{context_->GetCompilationPackage()});
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001653
1654 // Override the package ID when it is "android".
1655 if (context_->GetCompilationPackage() == "android") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001656 context_->SetPackageId(0x01);
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001657
1658 // Verify we're building a regular app.
Adam Lesinskib522f042017-04-21 16:57:59 -07001659 if (context_->GetPackageType() != PackageType::kApp) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001660 context_->GetDiagnostics()->Error(
1661 DiagMessage() << "package 'android' can only be built as a regular app");
1662 return 1;
1663 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001664 }
1665
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001666 TableMergerOptions table_merger_options;
1667 table_merger_options.auto_add_overlay = options_.auto_add_overlay;
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001668 table_merger_ = util::make_unique<TableMerger>(context_, &final_table_, table_merger_options);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001669
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001670 if (context_->IsVerbose()) {
1671 context_->GetDiagnostics()->Note(DiagMessage()
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001672 << StringPrintf("linking package '%s' using package ID %02x",
1673 context_->GetCompilationPackage().data(),
1674 context_->GetPackageId()));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001675 }
1676
Adam Lesinski2427dce2017-11-30 15:10:28 -08001677 // Extract symbols from AndroidManifest.xml, since this isn't merged like the other XML files
1678 // in res/**/*.
1679 {
1680 XmlIdCollector collector;
1681 if (!collector.Consume(context_, manifest_xml.get())) {
1682 return false;
1683 }
1684
1685 if (!MergeExportedSymbols(manifest_xml->file.source, manifest_xml->file.exported_symbols)) {
1686 return false;
1687 }
1688 }
1689
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001690 for (const std::string& input : input_files) {
1691 if (!MergePath(input, false)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001692 context_->GetDiagnostics()->Error(DiagMessage() << "failed parsing input");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001693 return 1;
1694 }
1695 }
1696
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001697 for (const std::string& input : options_.overlay_files) {
1698 if (!MergePath(input, true)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001699 context_->GetDiagnostics()->Error(DiagMessage() << "failed parsing overlays");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001700 return 1;
1701 }
1702 }
1703
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001704 if (!VerifyNoExternalPackages()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001705 return 1;
1706 }
1707
Adam Lesinskib522f042017-04-21 16:57:59 -07001708 if (context_->GetPackageType() != PackageType::kStaticLib) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001709 PrivateAttributeMover mover;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001710 if (!mover.Consume(context_, &final_table_)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001711 context_->GetDiagnostics()->Error(DiagMessage() << "failed moving private attributes");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001712 return 1;
1713 }
1714
1715 // Assign IDs if we are building a regular app.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001716 IdAssigner id_assigner(&options_.stable_id_map);
1717 if (!id_assigner.Consume(context_, &final_table_)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001718 context_->GetDiagnostics()->Error(DiagMessage() << "failed assigning IDs");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001719 return 1;
1720 }
1721
1722 // Now grab each ID and emit it as a file.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001723 if (options_.resource_id_map_path) {
1724 for (auto& package : final_table_.packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001725 for (auto& type : package->types) {
1726 for (auto& entry : type->entries) {
1727 ResourceName name(package->name, type->type, entry->name);
1728 // The IDs are guaranteed to exist.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001729 options_.stable_id_map[std::move(name)] =
1730 ResourceId(package->id.value(), type->id.value(), entry->id.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001731 }
1732 }
1733 }
1734
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001735 if (!WriteStableIdMapToPath(context_->GetDiagnostics(), options_.stable_id_map,
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001736 options_.resource_id_map_path.value())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001737 return 1;
1738 }
1739 }
1740 } else {
1741 // Static libs are merged with other apps, and ID collisions are bad, so
1742 // verify that
1743 // no IDs have been set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001744 if (!VerifyNoIdsSet()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001745 return 1;
1746 }
1747 }
1748
1749 // Add the names to mangle based on our source merge earlier.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001750 context_->SetNameManglerPolicy(
1751 NameManglerPolicy{context_->GetCompilationPackage(), table_merger_->merged_packages()});
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001752
1753 // Add our table to the symbol table.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001754 context_->GetExternalSymbols()->PrependSource(
1755 util::make_unique<ResourceTableSymbolSource>(&final_table_));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001756
Adam Lesinski1e4b0e52017-04-27 15:01:10 -07001757 // Workaround for pre-O runtime that would treat negative resource IDs
1758 // (any ID with a package ID > 7f) as invalid. Intercept any ID (PPTTEEEE) with PP > 0x7f
1759 // and type == 'id', and return the ID 0x7fPPEEEE. IDs don't need to be real resources, they
1760 // are just identifiers.
1761 if (context_->GetMinSdkVersion() < SDK_O && context_->GetPackageType() == PackageType::kApp) {
1762 if (context_->IsVerbose()) {
1763 context_->GetDiagnostics()->Note(DiagMessage()
1764 << "enabling pre-O feature split ID rewriting");
1765 }
1766 context_->GetExternalSymbols()->SetDelegate(
1767 util::make_unique<FeatureSplitSymbolTableDelegate>(context_));
1768 }
1769
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001770 ReferenceLinker linker;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001771 if (!linker.Consume(context_, &final_table_)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001772 context_->GetDiagnostics()->Error(DiagMessage() << "failed linking references");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001773 return 1;
1774 }
1775
Adam Lesinskib522f042017-04-21 16:57:59 -07001776 if (context_->GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001777 if (!options_.products.empty()) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001778 context_->GetDiagnostics()->Warn(DiagMessage()
1779 << "can't select products when building static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001780 }
1781 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001782 ProductFilter product_filter(options_.products);
1783 if (!product_filter.Consume(context_, &final_table_)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001784 context_->GetDiagnostics()->Error(DiagMessage() << "failed stripping products");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001785 return 1;
1786 }
1787 }
1788
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001789 if (!options_.no_auto_version) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001790 AutoVersioner versioner;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001791 if (!versioner.Consume(context_, &final_table_)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001792 context_->GetDiagnostics()->Error(DiagMessage() << "failed versioning styles");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001793 return 1;
1794 }
1795 }
1796
Adam Lesinskib522f042017-04-21 16:57:59 -07001797 if (context_->GetPackageType() != PackageType::kStaticLib && context_->GetMinSdkVersion() > 0) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001798 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001799 context_->GetDiagnostics()->Note(DiagMessage()
1800 << "collapsing resource versions for minimum SDK "
1801 << context_->GetMinSdkVersion());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001802 }
1803
1804 VersionCollapser collapser;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001805 if (!collapser.Consume(context_, &final_table_)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001806 return 1;
1807 }
1808 }
1809
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001810 if (!options_.no_resource_deduping) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001811 ResourceDeduper deduper;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001812 if (!deduper.Consume(context_, &final_table_)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001813 context_->GetDiagnostics()->Error(DiagMessage() << "failed deduping resources");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001814 return 1;
1815 }
1816 }
1817
Adam Koskidc21dea2017-07-21 10:55:27 -07001818 proguard::KeepSet proguard_keep_set =
1819 proguard::KeepSet(options_.generate_conditional_proguard_rules);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001820 proguard::KeepSet proguard_main_dex_keep_set;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001821
Adam Lesinskib522f042017-04-21 16:57:59 -07001822 if (context_->GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001823 if (options_.table_splitter_options.config_filter != nullptr ||
Pierre Lecesne672384b2017-02-06 10:29:02 +00001824 !options_.table_splitter_options.preferred_densities.empty()) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001825 context_->GetDiagnostics()->Warn(DiagMessage()
1826 << "can't strip resources when building static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001827 }
1828 } else {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001829 // Adjust the SplitConstraints so that their SDK version is stripped if it is less than or
1830 // equal to the minSdk.
1831 options_.split_constraints =
1832 AdjustSplitConstraintsForMinSdk(context_->GetMinSdkVersion(), options_.split_constraints);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001833
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001834 TableSplitter table_splitter(options_.split_constraints, options_.table_splitter_options);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001835 if (!table_splitter.VerifySplitConstraints(context_)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001836 return 1;
1837 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001838 table_splitter.SplitTable(&final_table_);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001839
1840 // Now we need to write out the Split APKs.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001841 auto path_iter = options_.split_paths.begin();
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001842 auto split_constraints_iter = options_.split_constraints.begin();
1843 for (std::unique_ptr<ResourceTable>& split_table : table_splitter.splits()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001844 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001845 context_->GetDiagnostics()->Note(DiagMessage(*path_iter)
1846 << "generating split with configurations '"
1847 << util::Joiner(split_constraints_iter->configs, ", ")
1848 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001849 }
1850
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001851 std::unique_ptr<IArchiveWriter> archive_writer = MakeArchiveWriter(*path_iter);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001852 if (!archive_writer) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001853 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create archive");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001854 return 1;
1855 }
1856
1857 // Generate an AndroidManifest.xml for each split.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001858 std::unique_ptr<xml::XmlResource> split_manifest =
Adam Lesinski490595a2017-11-07 17:08:07 -08001859 GenerateSplitManifest(app_info_, *split_constraints_iter);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001860
1861 XmlReferenceLinker linker;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001862 if (!linker.Consume(context_, split_manifest.get())) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001863 context_->GetDiagnostics()->Error(DiagMessage()
1864 << "failed to create Split AndroidManifest.xml");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001865 return 1;
1866 }
1867
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001868 if (!WriteApk(archive_writer.get(), &proguard_keep_set, split_manifest.get(),
1869 split_table.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001870 return 1;
1871 }
1872
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001873 ++path_iter;
1874 ++split_constraints_iter;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001875 }
1876 }
1877
1878 // Start writing the base APK.
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001879 std::unique_ptr<IArchiveWriter> archive_writer = MakeArchiveWriter(options_.output_path);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001880 if (!archive_writer) {
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001881 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create archive");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001882 return 1;
1883 }
1884
1885 bool error = false;
1886 {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001887 // AndroidManifest.xml has no resource name, but the CallSite is built from the name
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001888 // (aka, which package the AndroidManifest.xml is coming from).
1889 // So we give it a package name so it can see local resources.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001890 manifest_xml->file.name.package = context_->GetCompilationPackage();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001891
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001892 XmlReferenceLinker manifest_linker;
1893 if (manifest_linker.Consume(context_, manifest_xml.get())) {
1894 if (options_.generate_proguard_rules_path &&
Adam Koskidc21dea2017-07-21 10:55:27 -07001895 !proguard::CollectProguardRulesForManifest(manifest_xml.get(), &proguard_keep_set)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001896 error = true;
1897 }
1898
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001899 if (options_.generate_main_dex_proguard_rules_path &&
Adam Koskidc21dea2017-07-21 10:55:27 -07001900 !proguard::CollectProguardRulesForManifest(manifest_xml.get(),
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001901 &proguard_main_dex_keep_set, true)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001902 error = true;
Alexandria Cornwall637b4822016-08-11 09:53:16 -07001903 }
1904
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001905 if (options_.generate_java_class_path) {
1906 if (!WriteManifestJavaFile(manifest_xml.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001907 error = true;
1908 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001909 }
1910
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001911 if (options_.no_xml_namespaces) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001912 // PackageParser will fail if URIs are removed from
1913 // AndroidManifest.xml.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001914 XmlNamespaceRemover namespace_remover(true /* keepUris */);
1915 if (!namespace_remover.Consume(context_, manifest_xml.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001916 error = true;
1917 }
Rohit Agrawale49bb302016-04-22 12:27:55 -07001918 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001919 } else {
1920 error = true;
1921 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001922 }
Adam Lesinskifb48d292015-11-07 15:52:13 -08001923
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001924 if (error) {
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001925 context_->GetDiagnostics()->Error(DiagMessage() << "failed processing manifest");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001926 return 1;
1927 }
Adam Lesinskia6fe3452015-12-09 15:20:52 -08001928
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001929 if (!WriteApk(archive_writer.get(), &proguard_keep_set, manifest_xml.get(), &final_table_)) {
1930 return 1;
1931 }
1932
1933 if (!CopyAssetsDirsToApk(archive_writer.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001934 return 1;
1935 }
Adam Lesinskifb48d292015-11-07 15:52:13 -08001936
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001937 if (options_.generate_java_class_path || options_.generate_text_symbols_path) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001938 if (!GenerateJavaClasses()) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001939 return 1;
1940 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001941 }
1942
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001943 if (!WriteProguardFile(options_.generate_proguard_rules_path, proguard_keep_set)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001944 return 1;
1945 }
1946
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001947 if (!WriteProguardFile(options_.generate_main_dex_proguard_rules_path,
1948 proguard_main_dex_keep_set)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001949 return 1;
1950 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001951 return 0;
1952 }
1953
1954 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001955 LinkOptions options_;
1956 LinkContext* context_;
1957 ResourceTable final_table_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001958
Adam Lesinski490595a2017-11-07 17:08:07 -08001959 AppInfo app_info_;
1960
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001961 std::unique_ptr<TableMerger> table_merger_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001962
1963 // A pointer to the FileCollection representing the filesystem (not archives).
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001964 std::unique_ptr<io::FileCollection> file_collection_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001965
Adam Lesinski8780eb62017-10-31 17:44:39 -07001966 // A vector of IFileCollections. This is mainly here to retain ownership of the
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001967 // collections.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001968 std::vector<std::unique_ptr<io::IFileCollection>> collections_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001969
Adam Lesinski8780eb62017-10-31 17:44:39 -07001970 // The set of merged APKs. This is mainly here to retain ownership of the APKs.
1971 std::vector<std::unique_ptr<LoadedApk>> merged_apks_;
1972
1973 // The set of included APKs (not merged). This is mainly here to retain ownership of the APKs.
1974 std::vector<std::unique_ptr<LoadedApk>> static_library_includes_;
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001975
1976 // The set of shared libraries being used, mapping their assigned package ID to package name.
1977 std::map<size_t, std::string> shared_libs_;
Adam Lesinski490595a2017-11-07 17:08:07 -08001978
1979 // The package name of the base application, if it is included.
1980 Maybe<std::string> included_feature_base_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001981};
1982
Chris Warrington820d72a2017-04-27 15:27:01 +01001983int Link(const std::vector<StringPiece>& args, IDiagnostics* diagnostics) {
1984 LinkContext context(diagnostics);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001985 LinkOptions options;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001986 std::vector<std::string> overlay_arg_list;
1987 std::vector<std::string> extra_java_packages;
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001988 Maybe<std::string> package_id;
Adam Lesinski113ee092017-04-03 19:38:25 -07001989 std::vector<std::string> configs;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001990 Maybe<std::string> preferred_density;
1991 Maybe<std::string> product_list;
1992 bool legacy_x_flag = false;
1993 bool require_localization = false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001994 bool verbose = false;
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001995 bool shared_lib = false;
1996 bool static_lib = false;
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001997 bool proto_format = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001998 Maybe<std::string> stable_id_file_path;
1999 std::vector<std::string> split_args;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002000 Flags flags =
2001 Flags()
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002002 .RequiredFlag("-o", "Output path.", &options.output_path)
2003 .RequiredFlag("--manifest", "Path to the Android manifest to build.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002004 &options.manifest_path)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002005 .OptionalFlagList("-I", "Adds an Android APK to link against.", &options.include_paths)
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07002006 .OptionalFlagList("-A",
2007 "An assets directory to include in the APK. These are unprocessed.",
2008 &options.assets_dirs)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002009 .OptionalFlagList("-R",
2010 "Compilation unit to link, using `overlay` semantics.\n"
2011 "The last conflicting resource given takes precedence.",
2012 &overlay_arg_list)
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002013 .OptionalFlag("--package-id",
2014 "Specify the package ID to use for this app. Must be greater or equal to\n"
2015 "0x7f and can't be used with --static-lib or --shared-lib.",
2016 &package_id)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002017 .OptionalFlag("--java", "Directory in which to generate R.java.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002018 &options.generate_java_class_path)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002019 .OptionalFlag("--proguard", "Output file for generated Proguard rules.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002020 &options.generate_proguard_rules_path)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002021 .OptionalFlag("--proguard-main-dex",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002022 "Output file for generated Proguard rules for the main dex.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002023 &options.generate_main_dex_proguard_rules_path)
Adam Koskidc21dea2017-07-21 10:55:27 -07002024 .OptionalSwitch("--proguard-conditional-keep-rules",
2025 "Generate conditional Proguard keep rules.",
2026 &options.generate_conditional_proguard_rules)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002027 .OptionalSwitch("--no-auto-version",
2028 "Disables automatic style and layout SDK versioning.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002029 &options.no_auto_version)
2030 .OptionalSwitch("--no-version-vectors",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002031 "Disables automatic versioning of vector drawables. Use this only\n"
2032 "when building with vector drawable support library.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002033 &options.no_version_vectors)
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002034 .OptionalSwitch("--no-version-transitions",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002035 "Disables automatic versioning of transition resources. Use this only\n"
2036 "when building with transition support library.",
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002037 &options.no_version_transitions)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002038 .OptionalSwitch("--no-resource-deduping",
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002039 "Disables automatic deduping of resources with\n"
2040 "identical values across compatible configurations.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002041 &options.no_resource_deduping)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002042 .OptionalSwitch("--enable-sparse-encoding",
2043 "Enables encoding sparse entries using a binary search tree.\n"
2044 "This decreases APK size at the cost of resource retrieval performance.",
2045 &options.table_flattener_options.use_sparse_entries)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002046 .OptionalSwitch("-x", "Legacy flag that specifies to use the package identifier 0x01.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002047 &legacy_x_flag)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002048 .OptionalSwitch("-z", "Require localization of strings marked 'suggested'.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002049 &require_localization)
Adam Lesinski113ee092017-04-03 19:38:25 -07002050 .OptionalFlagList("-c",
Adam Lesinski418763f2017-04-11 17:36:53 -07002051 "Comma separated list of configurations to include. The default\n"
2052 "is all configurations.",
2053 &configs)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002054 .OptionalFlag("--preferred-density",
2055 "Selects the closest matching density and strips out all others.",
2056 &preferred_density)
2057 .OptionalFlag("--product", "Comma separated list of product names to keep", &product_list)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002058 .OptionalSwitch("--output-to-dir",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002059 "Outputs the APK contents to a directory specified by -o.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002060 &options.output_to_directory)
2061 .OptionalSwitch("--no-xml-namespaces",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002062 "Removes XML namespace prefix and URI information from\n"
2063 "AndroidManifest.xml and XML binaries in res/*.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002064 &options.no_xml_namespaces)
2065 .OptionalFlag("--min-sdk-version",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002066 "Default minimum SDK version to use for AndroidManifest.xml.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002067 &options.manifest_fixer_options.min_sdk_version_default)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002068 .OptionalFlag("--target-sdk-version",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002069 "Default target SDK version to use for AndroidManifest.xml.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002070 &options.manifest_fixer_options.target_sdk_version_default)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002071 .OptionalFlag("--version-code",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002072 "Version code (integer) to inject into the AndroidManifest.xml if none is\n"
2073 "present.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002074 &options.manifest_fixer_options.version_code_default)
2075 .OptionalFlag("--version-name",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002076 "Version name to inject into the AndroidManifest.xml if none is present.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002077 &options.manifest_fixer_options.version_name_default)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002078 .OptionalSwitch("--shared-lib", "Generates a shared Android runtime library.",
2079 &shared_lib)
2080 .OptionalSwitch("--static-lib", "Generate a static Android library.", &static_lib)
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002081 .OptionalSwitch("--proto-format",
2082 "Generates compiled resources in Protobuf format.\n"
2083 "Suitable as input to the bundle tool for generating an App Bundle.",
2084 &proto_format)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002085 .OptionalSwitch("--no-static-lib-packages",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002086 "Merge all library resources under the app's package.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002087 &options.no_static_lib_packages)
2088 .OptionalSwitch("--non-final-ids",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002089 "Generates R.java without the final modifier. This is implied when\n"
2090 "--static-lib is specified.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002091 &options.generate_non_final_ids)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002092 .OptionalFlag("--stable-ids", "File containing a list of name to ID mapping.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002093 &stable_id_file_path)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002094 .OptionalFlag("--emit-ids",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002095 "Emit a file at the given path with a list of name to ID mappings,\n"
2096 "suitable for use with --stable-ids.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002097 &options.resource_id_map_path)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002098 .OptionalFlag("--private-symbols",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002099 "Package name to use when generating R.java for private symbols.\n"
2100 "If not specified, public and private symbols will use the application's\n"
2101 "package name.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002102 &options.private_symbols)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002103 .OptionalFlag("--custom-package", "Custom Java package under which to generate R.java.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002104 &options.custom_java_package)
2105 .OptionalFlagList("--extra-packages",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002106 "Generate the same R.java but with different package names.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002107 &extra_java_packages)
2108 .OptionalFlagList("--add-javadoc-annotation",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002109 "Adds a JavaDoc annotation to all generated Java classes.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002110 &options.javadoc_annotations)
Adam Lesinski418763f2017-04-11 17:36:53 -07002111 .OptionalFlag("--output-text-symbols",
2112 "Generates a text file containing the resource symbols of the R class in\n"
2113 "the specified folder.",
2114 &options.generate_text_symbols_path)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002115 .OptionalSwitch("--auto-add-overlay",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002116 "Allows the addition of new resources in overlays without\n"
2117 "<add-resource> tags.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002118 &options.auto_add_overlay)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002119 .OptionalFlag("--rename-manifest-package", "Renames the package in AndroidManifest.xml.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002120 &options.manifest_fixer_options.rename_manifest_package)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002121 .OptionalFlag("--rename-instrumentation-target-package",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002122 "Changes the name of the target package for instrumentation. Most useful\n"
2123 "when used in conjunction with --rename-manifest-package.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002124 &options.manifest_fixer_options.rename_instrumentation_target_package)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002125 .OptionalFlagList("-0", "File extensions not to compress.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002126 &options.extensions_to_not_compress)
Izabela Orlowskaad9e1322017-12-19 16:22:42 +00002127 .OptionalSwitch("--warn-manifest-validation",
2128 "Treat manifest validation errors as warnings.",
2129 &options.manifest_fixer_options.warn_validation)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002130 .OptionalFlagList("--split",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002131 "Split resources matching a set of configs out to a Split APK.\n"
Adam Lesinskidb091572017-04-13 12:48:56 -07002132 "Syntax: path/to/output.apk:<config>[,<config>[...]].\n"
2133 "On Windows, use a semicolon ';' separator instead.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002134 &split_args)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002135 .OptionalSwitch("-v", "Enables verbose logging.", &verbose);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002136
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002137 if (!flags.Parse("aapt2 link", args, &std::cerr)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002138 return 1;
2139 }
2140
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002141 // Expand all argument-files passed into the command line. These start with '@'.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002142 std::vector<std::string> arg_list;
2143 for (const std::string& arg : flags.GetArgs()) {
2144 if (util::StartsWith(arg, "@")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002145 const std::string path = arg.substr(1, arg.size() - 1);
2146 std::string error;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002147 if (!file::AppendArgsFromFile(path, &arg_list, &error)) {
2148 context.GetDiagnostics()->Error(DiagMessage(path) << error);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002149 return 1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002150 }
2151 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002152 arg_list.push_back(arg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002153 }
2154 }
2155
2156 // Expand all argument-files passed to -R.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002157 for (const std::string& arg : overlay_arg_list) {
2158 if (util::StartsWith(arg, "@")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002159 const std::string path = arg.substr(1, arg.size() - 1);
2160 std::string error;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002161 if (!file::AppendArgsFromFile(path, &options.overlay_files, &error)) {
2162 context.GetDiagnostics()->Error(DiagMessage(path) << error);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002163 return 1;
2164 }
2165 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002166 options.overlay_files.push_back(arg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002167 }
2168 }
2169
2170 if (verbose) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002171 context.SetVerbose(verbose);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002172 }
2173
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002174 if (int{shared_lib} + int{static_lib} + int{proto_format} > 1) {
2175 context.GetDiagnostics()->Error(
2176 DiagMessage()
2177 << "only one of --shared-lib, --static-lib, or --proto_format can be defined");
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002178 return 1;
2179 }
2180
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002181 // The default build type.
2182 context.SetPackageType(PackageType::kApp);
2183 context.SetPackageId(kAppPackageId);
2184
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002185 if (shared_lib) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002186 context.SetPackageType(PackageType::kSharedLib);
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002187 context.SetPackageId(0x00);
2188 } else if (static_lib) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002189 context.SetPackageType(PackageType::kStaticLib);
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002190 options.output_format = OutputFormat::kProto;
2191 } else if (proto_format) {
2192 options.output_format = OutputFormat::kProto;
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002193 }
2194
2195 if (package_id) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002196 if (context.GetPackageType() != PackageType::kApp) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002197 context.GetDiagnostics()->Error(
2198 DiagMessage() << "can't specify --package-id when not building a regular app");
2199 return 1;
2200 }
2201
2202 const Maybe<uint32_t> maybe_package_id_int = ResourceUtils::ParseInt(package_id.value());
2203 if (!maybe_package_id_int) {
2204 context.GetDiagnostics()->Error(DiagMessage() << "package ID '" << package_id.value()
2205 << "' is not a valid integer");
2206 return 1;
2207 }
2208
2209 const uint32_t package_id_int = maybe_package_id_int.value();
2210 if (package_id_int < kAppPackageId || package_id_int > std::numeric_limits<uint8_t>::max()) {
2211 context.GetDiagnostics()->Error(
2212 DiagMessage() << StringPrintf(
2213 "invalid package ID 0x%02x. Must be in the range 0x7f-0xff.", package_id_int));
2214 return 1;
2215 }
2216 context.SetPackageId(static_cast<uint8_t>(package_id_int));
2217 }
2218
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002219 // Populate the set of extra packages for which to generate R.java.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002220 for (std::string& extra_package : extra_java_packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002221 // A given package can actually be a colon separated list of packages.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002222 for (StringPiece package : util::Split(extra_package, ':')) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08002223 options.extra_java_packages.insert(package.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002224 }
2225 }
2226
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002227 if (product_list) {
2228 for (StringPiece product : util::Tokenize(product_list.value(), ',')) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002229 if (product != "" && product != "default") {
Adam Lesinskid5083f62017-01-16 15:07:21 -08002230 options.products.insert(product.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002231 }
2232 }
2233 }
2234
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002235 std::unique_ptr<IConfigFilter> filter;
Mihai Nitaf4dacf22017-04-07 08:25:06 -07002236 if (!configs.empty()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002237 filter = ParseConfigFilterParameters(configs, context.GetDiagnostics());
2238 if (filter == nullptr) {
2239 return 1;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002240 }
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002241 options.table_splitter_options.config_filter = filter.get();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002242 }
2243
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002244 if (preferred_density) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002245 Maybe<uint16_t> density =
2246 ParseTargetDensityParameter(preferred_density.value(), context.GetDiagnostics());
2247 if (!density) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002248 return 1;
Adam Lesinskic51562c2016-04-28 11:12:38 -07002249 }
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002250 options.table_splitter_options.preferred_densities.push_back(density.value());
2251 }
Adam Lesinskic51562c2016-04-28 11:12:38 -07002252
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002253 // Parse the split parameters.
2254 for (const std::string& split_arg : split_args) {
2255 options.split_paths.push_back({});
2256 options.split_constraints.push_back({});
2257 if (!ParseSplitParameter(split_arg, context.GetDiagnostics(), &options.split_paths.back(),
2258 &options.split_constraints.back())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002259 return 1;
Adam Lesinski1e21ff02016-06-24 14:57:58 -07002260 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002261 }
Adam Lesinski1e21ff02016-06-24 14:57:58 -07002262
Adam Lesinskib522f042017-04-21 16:57:59 -07002263 if (context.GetPackageType() != PackageType::kStaticLib && stable_id_file_path) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002264 if (!LoadStableIdMap(context.GetDiagnostics(), stable_id_file_path.value(),
2265 &options.stable_id_map)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002266 return 1;
Adam Lesinski64587af2016-02-18 18:33:06 -08002267 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002268 }
Adam Lesinski64587af2016-02-18 18:33:06 -08002269
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002270 // Populate some default no-compress extensions that are already compressed.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002271 options.extensions_to_not_compress.insert(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002272 {".jpg", ".jpeg", ".png", ".gif", ".wav", ".mp2", ".mp3", ".ogg",
2273 ".aac", ".mpg", ".mpeg", ".mid", ".midi", ".smf", ".jet", ".rtttl",
2274 ".imy", ".xmf", ".mp4", ".m4a", ".m4v", ".3gp", ".3gpp", ".3g2",
2275 ".3gpp2", ".amr", ".awb", ".wma", ".wmv", ".webm", ".mkv"});
2276
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002277 // Turn off auto versioning for static-libs.
Adam Lesinskib522f042017-04-21 16:57:59 -07002278 if (context.GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002279 options.no_auto_version = true;
2280 options.no_version_vectors = true;
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002281 options.no_version_transitions = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002282 }
Adam Lesinskie4bb9eb2016-02-12 22:18:51 -08002283
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002284 LinkCommand cmd(&context, options);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002285 return cmd.Run(arg_list);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002286}
2287
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002288} // namespace aapt