blob: 13dd93e83b6467caa34ef12159b368eaa5eba1f1 [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{
391 {"paddingLeft", R::attr::paddingLeft,
392 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
393 {"paddingRight", R::attr::paddingRight,
394 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
395 };
396 rules_[R::attr::paddingHorizontal] =
397 util::make_unique<DegradeToManyRule>(std::move(replacements));
398 }
399
400 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::paddingVertical)) {
401 std::vector<ReplacementAttr> replacements{
402 {"paddingTop", R::attr::paddingTop,
403 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
404 {"paddingBottom", R::attr::paddingBottom,
405 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
406 };
407 rules_[R::attr::paddingVertical] =
408 util::make_unique<DegradeToManyRule>(std::move(replacements));
409 }
410
411 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::layout_marginHorizontal)) {
412 std::vector<ReplacementAttr> replacements{
413 {"layout_marginLeft", R::attr::layout_marginLeft,
414 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
415 {"layout_marginRight", R::attr::layout_marginRight,
416 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
417 };
418 rules_[R::attr::layout_marginHorizontal] =
419 util::make_unique<DegradeToManyRule>(std::move(replacements));
420 }
421
422 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::layout_marginVertical)) {
423 std::vector<ReplacementAttr> replacements{
424 {"layout_marginTop", R::attr::layout_marginTop,
425 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
426 {"layout_marginBottom", R::attr::layout_marginBottom,
427 Attribute(false, android::ResTable_map::TYPE_DIMENSION)},
428 };
429 rules_[R::attr::layout_marginVertical] =
430 util::make_unique<DegradeToManyRule>(std::move(replacements));
431 }
432}
433
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700434uint32_t ResourceFileFlattener::GetCompressionFlags(const StringPiece& str) {
435 if (options_.do_not_compress_anything) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700436 return 0;
437 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800438
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700439 for (const std::string& extension : options_.extensions_to_not_compress) {
440 if (util::EndsWith(str, extension)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700441 return 0;
Adam Lesinski355f2852016-02-13 20:26:45 -0800442 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700443 }
444 return ArchiveEntry::kCompress;
Adam Lesinski355f2852016-02-13 20:26:45 -0800445}
446
Adam Lesinskibb94f322017-07-12 07:41:55 -0700447static bool IsTransitionElement(const std::string& name) {
448 return name == "fade" || name == "changeBounds" || name == "slide" || name == "explode" ||
449 name == "changeImageTransform" || name == "changeTransform" ||
450 name == "changeClipBounds" || name == "autoTransition" || name == "recolor" ||
451 name == "changeScroll" || name == "transitionSet" || name == "transition" ||
452 name == "transitionManager";
453}
454
455static bool IsVectorElement(const std::string& name) {
456 return name == "vector" || name == "animated-vector" || name == "pathInterpolator" ||
ztenghuiab2a38c2017-10-13 15:56:08 -0700457 name == "objectAnimator" || name == "gradient";
Adam Lesinskibb94f322017-07-12 07:41:55 -0700458}
459
Adam Lesinskic744ae82017-05-17 19:28:38 -0700460template <typename T>
461std::vector<T> make_singleton_vec(T&& val) {
462 std::vector<T> vec;
463 vec.emplace_back(std::forward<T>(val));
464 return vec;
465}
466
467std::vector<std::unique_ptr<xml::XmlResource>> ResourceFileFlattener::LinkAndVersionXmlFile(
468 ResourceTable* table, FileOperation* file_op) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700469 xml::XmlResource* doc = file_op->xml_to_flatten.get();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700470 const Source& src = doc->file.source;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700471
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700472 if (context_->IsVerbose()) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700473 context_->GetDiagnostics()->Note(DiagMessage()
474 << "linking " << src.path << " (" << doc->file.name << ")");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700475 }
476
Adam Lesinski00451162017-10-03 07:44:08 -0700477 // First, strip out any tools namespace attributes. AAPT stripped them out early, which means
478 // that existing projects have out-of-date references which pass compilation.
479 xml::StripAndroidStudioAttributes(doc->root.get());
480
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700481 XmlReferenceLinker xml_linker;
482 if (!xml_linker.Consume(context_, doc)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700483 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700484 }
485
Adam Koskidc21dea2017-07-21 10:55:27 -0700486 if (options_.update_proguard_spec && !proguard::CollectProguardRules(doc, keep_set_)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700487 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700488 }
489
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700490 if (options_.no_xml_namespaces) {
491 XmlNamespaceRemover namespace_remover;
492 if (!namespace_remover.Consume(context_, doc)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700493 return {};
Adam Lesinski355f2852016-02-13 20:26:45 -0800494 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700495 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800496
Adam Lesinskibb94f322017-07-12 07:41:55 -0700497 if (options_.no_auto_version) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700498 return make_singleton_vec(std::move(file_op->xml_to_flatten));
499 }
Alexandria Cornwalla7cc3f12016-08-16 13:33:32 -0700500
Adam Lesinskibb94f322017-07-12 07:41:55 -0700501 if (options_.no_version_vectors || options_.no_version_transitions) {
502 // Skip this if it is a vector or animated-vector.
Adam Lesinski6b372992017-08-09 10:54:23 -0700503 xml::Element* el = doc->root.get();
Adam Lesinskibb94f322017-07-12 07:41:55 -0700504 if (el && el->namespace_uri.empty()) {
505 if ((options_.no_version_vectors && IsVectorElement(el->name)) ||
506 (options_.no_version_transitions && IsTransitionElement(el->name))) {
507 return make_singleton_vec(std::move(file_op->xml_to_flatten));
508 }
509 }
510 }
511
Adam Lesinskic744ae82017-05-17 19:28:38 -0700512 const ConfigDescription& config = file_op->config;
513 ResourceEntry* entry = file_op->entry;
514
515 XmlCompatVersioner xml_compat_versioner(&rules_);
516 const util::Range<ApiVersion> api_range{config.sdkVersion,
517 FindNextApiVersionForConfig(entry, config)};
518 return xml_compat_versioner.Process(context_, doc, api_range);
Adam Lesinski355f2852016-02-13 20:26:45 -0800519}
520
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700521bool ResourceFileFlattener::Flatten(ResourceTable* table, IArchiveWriter* archive_writer) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700522 bool error = false;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700523 std::map<std::pair<ConfigDescription, StringPiece>, FileOperation> config_sorted_files;
Adam Lesinski355f2852016-02-13 20:26:45 -0800524
Adam Koskidc21dea2017-07-21 10:55:27 -0700525 proguard::CollectResourceReferences(context_, table, keep_set_);
526
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700527 for (auto& pkg : table->packages) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700528 CHECK(!pkg->name.empty()) << "Packages must have names when being linked";
529
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700530 for (auto& type : pkg->types) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700531 // Sort by config and name, so that we get better locality in the zip file.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700532 config_sorted_files.clear();
Adam Lesinskibb94f322017-07-12 07:41:55 -0700533 std::queue<FileOperation> file_operations;
Adam Lesinski355f2852016-02-13 20:26:45 -0800534
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700535 // Populate the queue with all files in the ResourceTable.
536 for (auto& entry : type->entries) {
Adam Lesinskibb94f322017-07-12 07:41:55 -0700537 for (auto& config_value : entry->values) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700538 // WARNING! Do not insert or remove any resources while executing in this scope. It will
539 // corrupt the iteration order.
540
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700541 FileReference* file_ref = ValueCast<FileReference>(config_value->value.get());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700542 if (!file_ref) {
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700543 continue;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700544 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700545
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700546 io::IFile* file = file_ref->file;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700547 if (!file) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700548 context_->GetDiagnostics()->Error(DiagMessage(file_ref->GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700549 << "file not found");
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700550 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700551 }
552
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700553 FileOperation file_op;
554 file_op.entry = entry.get();
555 file_op.dst_path = *file_ref->path;
556 file_op.config = config_value->config;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700557 file_op.file_to_copy = file;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700558
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700559 if (type->type != ResourceType::kRaw &&
Adam Lesinski00451162017-10-03 07:44:08 -0700560 (file_ref->type == ResourceFile::Type::kBinaryXml ||
561 file_ref->type == ResourceFile::Type::kProtoXml)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700562 std::unique_ptr<io::IData> data = file->OpenAsData();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700563 if (!data) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700564 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700565 << "failed to open file");
566 return false;
567 }
568
Adam Lesinski00451162017-10-03 07:44:08 -0700569 if (file_ref->type == ResourceFile::Type::kProtoXml) {
570 pb::XmlNode pb_xml_node;
571 if (!pb_xml_node.ParseFromArray(data->data(), static_cast<int>(data->size()))) {
572 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinski8780eb62017-10-31 17:44:39 -0700573 << "failed to parse proto XML");
Adam Lesinski00451162017-10-03 07:44:08 -0700574 return false;
575 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700576
Adam Lesinski00451162017-10-03 07:44:08 -0700577 std::string error;
578 file_op.xml_to_flatten = DeserializeXmlResourceFromPb(pb_xml_node, &error);
579 if (file_op.xml_to_flatten == nullptr) {
580 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinski8780eb62017-10-31 17:44:39 -0700581 << "failed to deserialize proto XML: " << error);
Adam Lesinski00451162017-10-03 07:44:08 -0700582 return false;
583 }
584 } else {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700585 std::string error_str;
586 file_op.xml_to_flatten = xml::Inflate(data->data(), data->size(), &error_str);
Adam Lesinski00451162017-10-03 07:44:08 -0700587 if (file_op.xml_to_flatten == nullptr) {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700588 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
589 << "failed to parse binary XML: " << error_str);
Adam Lesinski00451162017-10-03 07:44:08 -0700590 return false;
591 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700592 }
593
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700594 file_op.xml_to_flatten->file.config = config_value->config;
595 file_op.xml_to_flatten->file.source = file_ref->GetSource();
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700596 file_op.xml_to_flatten->file.name = ResourceName(pkg->name, type->type, entry->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700597 }
Adam Lesinskic744ae82017-05-17 19:28:38 -0700598
599 // NOTE(adamlesinski): Explicitly construct a StringPiece here, or
600 // else we end up copying the string in the std::make_pair() method,
601 // then creating a StringPiece from the copy, which would cause us
602 // to end up referencing garbage in the map.
603 const StringPiece entry_name(entry->name);
604 config_sorted_files[std::make_pair(config_value->config, entry_name)] =
605 std::move(file_op);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700606 }
607 }
608
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700609 // Now flatten the sorted values.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700610 for (auto& map_entry : config_sorted_files) {
611 const ConfigDescription& config = map_entry.first.first;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700612 FileOperation& file_op = map_entry.second;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700613
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700614 if (file_op.xml_to_flatten) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700615 std::vector<std::unique_ptr<xml::XmlResource>> versioned_docs =
616 LinkAndVersionXmlFile(table, &file_op);
Adam Lesinskic0a5e1e2017-08-07 11:56:32 -0700617 if (versioned_docs.empty()) {
618 error = true;
619 continue;
620 }
621
Adam Lesinskic744ae82017-05-17 19:28:38 -0700622 for (std::unique_ptr<xml::XmlResource>& doc : versioned_docs) {
623 std::string dst_path = file_op.dst_path;
624 if (doc->file.config != file_op.config) {
625 // Only add the new versioned configurations.
626 if (context_->IsVerbose()) {
627 context_->GetDiagnostics()->Note(DiagMessage(doc->file.source)
628 << "auto-versioning resource from config '"
629 << config << "' -> '" << doc->file.config << "'");
630 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700631
Adam Lesinskic744ae82017-05-17 19:28:38 -0700632 dst_path =
633 ResourceUtils::BuildResourceFileName(doc->file, context_->GetNameMangler());
634 bool result = table->AddFileReferenceAllowMangled(doc->file.name, doc->file.config,
635 doc->file.source, dst_path, nullptr,
636 context_->GetDiagnostics());
637 if (!result) {
638 return false;
639 }
640 }
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700641
642 error |= !FlattenXml(context_, *doc, dst_path, options_.keep_raw_values,
643 false /*utf16*/, options_.output_format, archive_writer);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700644 }
645 } else {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700646 error |= !io::CopyFileToArchive(context_, file_op.file_to_copy, file_op.dst_path,
647 GetCompressionFlags(file_op.dst_path), archive_writer);
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700648 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700649 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700650 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700651 }
652 return !error;
653}
654
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700655static bool WriteStableIdMapToPath(IDiagnostics* diag,
656 const std::unordered_map<ResourceName, ResourceId>& id_map,
657 const std::string& id_map_path) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800658 io::FileOutputStream fout(id_map_path);
659 if (fout.HadError()) {
660 diag->Error(DiagMessage(id_map_path) << "failed to open: " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700661 return false;
662 }
663
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800664 text::Printer printer(&fout);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700665 for (const auto& entry : id_map) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700666 const ResourceName& name = entry.first;
667 const ResourceId& id = entry.second;
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800668 printer.Print(name.to_string());
669 printer.Print(" = ");
670 printer.Println(id.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700671 }
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800672 fout.Flush();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700673
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800674 if (fout.HadError()) {
675 diag->Error(DiagMessage(id_map_path) << "failed writing to file: " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700676 return false;
677 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700678 return true;
679}
680
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700681static bool LoadStableIdMap(IDiagnostics* diag, const std::string& path,
682 std::unordered_map<ResourceName, ResourceId>* out_id_map) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700683 std::string content;
Adam Lesinski2354b562017-05-26 16:31:38 -0700684 if (!android::base::ReadFileToString(path, &content, true /*follow_symlinks*/)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700685 diag->Error(DiagMessage(path) << "failed reading stable ID file");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700686 return false;
687 }
688
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700689 out_id_map->clear();
690 size_t line_no = 0;
691 for (StringPiece line : util::Tokenize(content, '\n')) {
692 line_no++;
693 line = util::TrimWhitespace(line);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700694 if (line.empty()) {
695 continue;
696 }
697
698 auto iter = std::find(line.begin(), line.end(), '=');
699 if (iter == line.end()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700700 diag->Error(DiagMessage(Source(path, line_no)) << "missing '='");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700701 return false;
702 }
703
704 ResourceNameRef name;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700705 StringPiece res_name_str =
706 util::TrimWhitespace(line.substr(0, std::distance(line.begin(), iter)));
707 if (!ResourceUtils::ParseResourceName(res_name_str, &name)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700708 diag->Error(DiagMessage(Source(path, line_no)) << "invalid resource name '" << res_name_str
709 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700710 return false;
711 }
712
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700713 const size_t res_id_start_idx = std::distance(line.begin(), iter) + 1;
714 const size_t res_id_str_len = line.size() - res_id_start_idx;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700715 StringPiece res_id_str = util::TrimWhitespace(line.substr(res_id_start_idx, res_id_str_len));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700716
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700717 Maybe<ResourceId> maybe_id = ResourceUtils::ParseResourceId(res_id_str);
718 if (!maybe_id) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700719 diag->Error(DiagMessage(Source(path, line_no)) << "invalid resource ID '" << res_id_str
720 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700721 return false;
722 }
723
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700724 (*out_id_map)[name.ToResourceName()] = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700725 }
726 return true;
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700727}
728
Adam Lesinskic6284372017-12-04 13:46:23 -0800729static int32_t FindFrameworkAssetManagerCookie(const android::AssetManager& assets) {
730 using namespace android;
731
732 // Find the system package (0x01). AAPT always generates attributes with the type 0x01, so
733 // we're looking for the first attribute resource in the system package.
734 const ResTable& table = assets.getResources(true);
735 Res_value val;
736 ssize_t idx = table.getResource(0x01010000, &val, true);
737 if (idx != NO_ERROR) {
738 // Try as a bag.
739 const ResTable::bag_entry* entry;
740 ssize_t cnt = table.lockBag(0x01010000, &entry);
741 if (cnt >= 0) {
742 idx = entry->stringBlock;
743 }
744 table.unlockBag(entry);
745 }
746
747 if (idx < 0) {
748 return 0;
749 }
750 return table.getTableCookie(idx);
751}
752
Adam Lesinskifb48d292015-11-07 15:52:13 -0800753class LinkCommand {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700754 public:
755 LinkCommand(LinkContext* context, const LinkOptions& options)
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700756 : options_(options),
757 context_(context),
758 final_table_(),
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700759 file_collection_(util::make_unique<io::FileCollection>()) {
760 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700761
Adam Lesinskic6284372017-12-04 13:46:23 -0800762 void ExtractCompileSdkVersions(android::AssetManager* assets) {
763 using namespace android;
764
765 int32_t cookie = FindFrameworkAssetManagerCookie(*assets);
766 if (cookie == 0) {
767 // No Framework assets loaded. Not a failure.
768 return;
769 }
770
771 std::unique_ptr<Asset> manifest(
772 assets->openNonAsset(cookie, kAndroidManifestPath, Asset::AccessMode::ACCESS_BUFFER));
773 if (manifest == nullptr) {
774 // No errors.
775 return;
776 }
777
778 std::string error;
779 std::unique_ptr<xml::XmlResource> manifest_xml =
780 xml::Inflate(manifest->getBuffer(true /*wordAligned*/), manifest->getLength(), &error);
781 if (manifest_xml == nullptr) {
782 // No errors.
783 return;
784 }
785
786 xml::Attribute* attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionCode");
787 if (attr != nullptr) {
788 Maybe<std::string>& compile_sdk_version = options_.manifest_fixer_options.compile_sdk_version;
789 if (BinaryPrimitive* prim = ValueCast<BinaryPrimitive>(attr->compiled_value.get())) {
790 switch (prim->value.dataType) {
791 case Res_value::TYPE_INT_DEC:
792 compile_sdk_version = StringPrintf("%" PRId32, static_cast<int32_t>(prim->value.data));
793 break;
794 case Res_value::TYPE_INT_HEX:
795 compile_sdk_version = StringPrintf("%" PRIx32, prim->value.data);
796 break;
797 default:
798 break;
799 }
800 } else if (String* str = ValueCast<String>(attr->compiled_value.get())) {
801 compile_sdk_version = *str->value;
802 } else {
803 compile_sdk_version = attr->value;
804 }
805 }
806
807 attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionName");
808 if (attr != nullptr) {
809 Maybe<std::string>& compile_sdk_version_codename =
810 options_.manifest_fixer_options.compile_sdk_version_codename;
811 if (String* str = ValueCast<String>(attr->compiled_value.get())) {
812 compile_sdk_version_codename = *str->value;
813 } else {
814 compile_sdk_version_codename = attr->value;
815 }
816 }
817 }
818
Adam Lesinski8780eb62017-10-31 17:44:39 -0700819 // Creates a SymbolTable that loads symbols from the various APKs.
Adam Lesinskic6284372017-12-04 13:46:23 -0800820 // Pre-condition: context_->GetCompilationPackage() needs to be set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700821 bool LoadSymbolsFromIncludePaths() {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700822 auto asset_source = util::make_unique<AssetManagerSymbolSource>();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700823 for (const std::string& path : options_.include_paths) {
824 if (context_->IsVerbose()) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700825 context_->GetDiagnostics()->Note(DiagMessage() << "including " << path);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700826 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700827
Adam Lesinski8780eb62017-10-31 17:44:39 -0700828 std::string error;
829 auto zip_collection = io::ZipFileCollection::Create(path, &error);
830 if (zip_collection == nullptr) {
831 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open APK: " << error);
832 return false;
833 }
834
835 if (zip_collection->FindFile(kProtoResourceTablePath) != nullptr) {
836 // Load this as a static library include.
837 std::unique_ptr<LoadedApk> static_apk = LoadedApk::LoadProtoApkFromFileCollection(
838 Source(path), std::move(zip_collection), context_->GetDiagnostics());
839 if (static_apk == nullptr) {
840 return false;
841 }
842
Adam Lesinskib522f042017-04-21 16:57:59 -0700843 if (context_->GetPackageType() != PackageType::kStaticLib) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800844 // Can't include static libraries when not building a static library (they have no IDs
845 // assigned).
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700846 context_->GetDiagnostics()->Error(
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800847 DiagMessage(path) << "can't include static library when not building a static lib");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700848 return false;
849 }
850
Adam Lesinski8780eb62017-10-31 17:44:39 -0700851 ResourceTable* table = static_apk->GetResourceTable();
852
853 // If we are using --no-static-lib-packages, we need to rename the package of this table to
854 // our compilation package.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700855 if (options_.no_static_lib_packages) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800856 // Since package names can differ, and multiple packages can exist in a ResourceTable,
857 // we place the requirement that all static libraries are built with the package
858 // ID 0x7f. So if one is not found, this is an error.
Adam Lesinski8780eb62017-10-31 17:44:39 -0700859 if (ResourceTablePackage* pkg = table->FindPackageById(kAppPackageId)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700860 pkg->name = context_->GetCompilationPackage();
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800861 } else {
862 context_->GetDiagnostics()->Error(DiagMessage(path)
863 << "no package with ID 0x7f found in static library");
864 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700865 }
866 }
867
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700868 context_->GetExternalSymbols()->AppendSource(
Adam Lesinski8780eb62017-10-31 17:44:39 -0700869 util::make_unique<ResourceTableSymbolSource>(table));
870 static_library_includes_.push_back(std::move(static_apk));
871 } else {
872 if (!asset_source->AddAssetPath(path)) {
873 context_->GetDiagnostics()->Error(DiagMessage()
874 << "failed to load include path " << path);
875 return false;
876 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700877 }
878 }
879
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800880 // Capture the shared libraries so that the final resource table can be properly flattened
881 // with support for shared libraries.
882 for (auto& entry : asset_source->GetAssignedPackageIds()) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800883 if (entry.first > kFrameworkPackageId && entry.first < kAppPackageId) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800884 final_table_.included_packages_[entry.first] = entry.second;
Adam Lesinski490595a2017-11-07 17:08:07 -0800885 } else if (entry.first == kAppPackageId) {
886 // Capture the included base feature package.
887 included_feature_base_ = entry.second;
Adam Lesinskic6284372017-12-04 13:46:23 -0800888 } else if (entry.first == kFrameworkPackageId) {
889 // Try to embed which version of the framework we're compiling against.
890 // First check if we should use compileSdkVersion at all. Otherwise compilation may fail
891 // when linking our synthesized 'android:compileSdkVersion' attribute.
892 std::unique_ptr<SymbolTable::Symbol> symbol = asset_source->FindByName(
893 ResourceName("android", ResourceType::kAttr, "compileSdkVersion"));
894 if (symbol != nullptr && symbol->is_public) {
895 // The symbol is present and public, extract the android:versionName and
896 // android:versionCode from the framework AndroidManifest.xml.
897 ExtractCompileSdkVersions(asset_source->GetAssetManager());
898 }
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800899 }
900 }
901
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700902 context_->GetExternalSymbols()->AppendSource(std::move(asset_source));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700903 return true;
904 }
905
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800906 Maybe<AppInfo> ExtractAppInfoFromManifest(xml::XmlResource* xml_res, IDiagnostics* diag) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700907 // Make sure the first element is <manifest> with package attribute.
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800908 xml::Element* manifest_el = xml::FindRootElement(xml_res->root.get());
909 if (manifest_el == nullptr) {
910 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700911 }
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800912
913 AppInfo app_info;
914
915 if (!manifest_el->namespace_uri.empty() || manifest_el->name != "manifest") {
916 diag->Error(DiagMessage(xml_res->file.source) << "root tag must be <manifest>");
917 return {};
918 }
919
920 xml::Attribute* package_attr = manifest_el->FindAttribute({}, "package");
921 if (!package_attr) {
922 diag->Error(DiagMessage(xml_res->file.source)
923 << "<manifest> must have a 'package' attribute");
924 return {};
925 }
926 app_info.package = package_attr->value;
927
928 if (xml::Attribute* version_code_attr =
929 manifest_el->FindAttribute(xml::kSchemaAndroid, "versionCode")) {
930 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(version_code_attr->value);
931 if (!maybe_code) {
932 diag->Error(DiagMessage(xml_res->file.source.WithLine(manifest_el->line_number))
933 << "invalid android:versionCode '" << version_code_attr->value << "'");
934 return {};
935 }
936 app_info.version_code = maybe_code.value();
937 }
938
939 if (xml::Attribute* revision_code_attr =
940 manifest_el->FindAttribute(xml::kSchemaAndroid, "revisionCode")) {
941 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(revision_code_attr->value);
942 if (!maybe_code) {
943 diag->Error(DiagMessage(xml_res->file.source.WithLine(manifest_el->line_number))
944 << "invalid android:revisionCode '" << revision_code_attr->value << "'");
945 return {};
946 }
947 app_info.revision_code = maybe_code.value();
948 }
949
950 if (xml::Attribute* split_name_attr = manifest_el->FindAttribute({}, "split")) {
951 if (!split_name_attr->value.empty()) {
952 app_info.split_name = split_name_attr->value;
953 }
954 }
955
956 if (xml::Element* uses_sdk_el = manifest_el->FindChild({}, "uses-sdk")) {
957 if (xml::Attribute* min_sdk =
958 uses_sdk_el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion")) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700959 app_info.min_sdk_version = ResourceUtils::ParseSdkVersion(min_sdk->value);
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800960 }
961 }
962 return app_info;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700963 }
964
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700965 // Precondition: ResourceTable doesn't have any IDs assigned yet, nor is it linked.
966 // Postcondition: ResourceTable has only one package left. All others are
967 // stripped, or there is an error and false is returned.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700968 bool VerifyNoExternalPackages() {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700969 auto is_ext_package_func = [&](const std::unique_ptr<ResourceTablePackage>& pkg) -> bool {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700970 return context_->GetCompilationPackage() != pkg->name || !pkg->id ||
971 pkg->id.value() != context_->GetPackageId();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700972 };
973
974 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700975 for (const auto& package : final_table_.packages) {
976 if (is_ext_package_func(package)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700977 // We have a package that is not related to the one we're building!
978 for (const auto& type : package->types) {
979 for (const auto& entry : type->entries) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700980 ResourceNameRef res_name(package->name, type->type, entry->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700981
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700982 for (const auto& config_value : entry->values) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700983 // Special case the occurrence of an ID that is being generated
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700984 // for the 'android' package. This is due to legacy reasons.
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700985 if (ValueCast<Id>(config_value->value.get()) && package->name == "android") {
986 context_->GetDiagnostics()->Warn(DiagMessage(config_value->value->GetSource())
987 << "generated id '" << res_name
988 << "' for external package '" << package->name
989 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700990 } else {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700991 context_->GetDiagnostics()->Error(DiagMessage(config_value->value->GetSource())
992 << "defined resource '" << res_name
993 << "' for external package '" << package->name
994 << "'");
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700995 error = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700996 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700997 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700998 }
999 }
1000 }
1001 }
1002
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001003 auto new_end_iter = std::remove_if(final_table_.packages.begin(), final_table_.packages.end(),
1004 is_ext_package_func);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001005 final_table_.packages.erase(new_end_iter, final_table_.packages.end());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001006 return !error;
1007 }
1008
1009 /**
1010 * Returns true if no IDs have been set, false otherwise.
1011 */
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001012 bool VerifyNoIdsSet() {
1013 for (const auto& package : final_table_.packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001014 for (const auto& type : package->types) {
1015 if (type->id) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001016 context_->GetDiagnostics()->Error(DiagMessage() << "type " << type->type << " has ID "
1017 << StringPrintf("%02x", type->id.value())
1018 << " assigned");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001019 return false;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001020 }
1021
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001022 for (const auto& entry : type->entries) {
1023 if (entry->id) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001024 ResourceNameRef res_name(package->name, type->type, entry->name);
1025 context_->GetDiagnostics()->Error(
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001026 DiagMessage() << "entry " << res_name << " has ID "
1027 << StringPrintf("%02x", entry->id.value()) << " assigned");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001028 return false;
1029 }
1030 }
1031 }
1032 }
1033 return true;
1034 }
1035
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001036 std::unique_ptr<IArchiveWriter> MakeArchiveWriter(const StringPiece& out) {
1037 if (options_.output_to_directory) {
1038 return CreateDirectoryArchiveWriter(context_->GetDiagnostics(), out);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001039 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001040 return CreateZipFileArchiveWriter(context_->GetDiagnostics(), out);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001041 }
1042 }
1043
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001044 bool FlattenTable(ResourceTable* table, OutputFormat format, IArchiveWriter* writer) {
1045 switch (format) {
1046 case OutputFormat::kApk: {
1047 BigBuffer buffer(1024);
1048 TableFlattener flattener(options_.table_flattener_options, &buffer);
1049 if (!flattener.Consume(context_, table)) {
1050 context_->GetDiagnostics()->Error(DiagMessage() << "failed to flatten resource table");
1051 return false;
1052 }
1053
1054 io::BigBufferInputStream input_stream(&buffer);
1055 return io::CopyInputStreamToArchive(context_, &input_stream, kApkResourceTablePath,
1056 ArchiveEntry::kAlign, writer);
1057 } break;
1058
1059 case OutputFormat::kProto: {
1060 pb::ResourceTable pb_table;
1061 SerializeTableToPb(*table, &pb_table);
1062 return io::CopyProtoToArchive(context_, &pb_table, kProtoResourceTablePath,
1063 ArchiveEntry::kCompress, writer);
1064 } break;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001065 }
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001066 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001067 }
1068
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001069 bool WriteJavaFile(ResourceTable* table, const StringPiece& package_name_to_generate,
Adam Lesinski418763f2017-04-11 17:36:53 -07001070 const StringPiece& out_package, const JavaClassGeneratorOptions& java_options,
Chih-Hung Hsieh4dc58122017-08-03 16:28:10 -07001071 const Maybe<std::string>& out_text_symbols_path = {}) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001072 if (!options_.generate_java_class_path) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001073 return true;
1074 }
1075
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001076 std::string out_path = options_.generate_java_class_path.value();
1077 file::AppendPath(&out_path, file::PackageToPath(out_package));
1078 if (!file::mkdirs(out_path)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001079 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create directory '" << out_path
1080 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001081 return false;
1082 }
1083
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001084 file::AppendPath(&out_path, "R.java");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001085
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001086 io::FileOutputStream fout(out_path);
1087 if (fout.HadError()) {
1088 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1089 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001090 return false;
1091 }
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);
Adam Lesinski418763f2017-04-11 17:36:53 -07001105 if (!generator.Generate(package_name_to_generate, out_package, &fout, 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 Lesinskia693c4a2017-11-09 11:29:39 -08001110 fout.Flush();
1111
1112 if (fout.HadError()) {
1113 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1114 << "': " << fout.GetError());
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001115 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001116 }
1117 return true;
1118 }
1119
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001120 bool GenerateJavaClasses() {
1121 // The set of packages whose R class to call in the main classes onResourcesLoaded callback.
1122 std::vector<std::string> packages_to_callback;
1123
1124 JavaClassGeneratorOptions template_options;
1125 template_options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1126 template_options.javadoc_annotations = options_.javadoc_annotations;
1127
1128 if (context_->GetPackageType() == PackageType::kStaticLib || options_.generate_non_final_ids) {
1129 template_options.use_final = false;
1130 }
1131
1132 if (context_->GetPackageType() == PackageType::kSharedLib) {
1133 template_options.use_final = false;
1134 template_options.rewrite_callback_options = OnResourcesLoadedCallbackOptions{};
1135 }
1136
1137 const StringPiece actual_package = context_->GetCompilationPackage();
1138 StringPiece output_package = context_->GetCompilationPackage();
1139 if (options_.custom_java_package) {
1140 // Override the output java package to the custom one.
1141 output_package = options_.custom_java_package.value();
1142 }
1143
1144 // Generate the private symbols if required.
1145 if (options_.private_symbols) {
1146 packages_to_callback.push_back(options_.private_symbols.value());
1147
1148 // If we defined a private symbols package, we only emit Public symbols
1149 // to the original package, and private and public symbols to the private package.
1150 JavaClassGeneratorOptions options = template_options;
1151 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublicPrivate;
1152 if (!WriteJavaFile(&final_table_, actual_package, options_.private_symbols.value(),
1153 options)) {
1154 return false;
1155 }
1156 }
1157
1158 // Generate copies of the original package R class but with different package names.
1159 // This is to support non-namespaced builds.
1160 for (const std::string& extra_package : options_.extra_java_packages) {
1161 packages_to_callback.push_back(extra_package);
1162
1163 JavaClassGeneratorOptions options = template_options;
1164 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1165 if (!WriteJavaFile(&final_table_, actual_package, extra_package, options)) {
1166 return false;
1167 }
1168 }
1169
1170 // Generate R classes for each package that was merged (static library).
1171 // Use the actual package's resources only.
1172 for (const std::string& package : table_merger_->merged_packages()) {
1173 packages_to_callback.push_back(package);
1174
1175 JavaClassGeneratorOptions options = template_options;
1176 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1177 if (!WriteJavaFile(&final_table_, package, package, options)) {
1178 return false;
1179 }
1180 }
1181
1182 // Generate the main public R class.
1183 JavaClassGeneratorOptions options = template_options;
1184
1185 // Only generate public symbols if we have a private package.
1186 if (options_.private_symbols) {
1187 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublic;
1188 }
1189
1190 if (options.rewrite_callback_options) {
1191 options.rewrite_callback_options.value().packages_to_callback =
1192 std::move(packages_to_callback);
1193 }
1194
1195 if (!WriteJavaFile(&final_table_, actual_package, output_package, options,
1196 options_.generate_text_symbols_path)) {
1197 return false;
1198 }
1199
1200 return true;
1201 }
1202
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001203 bool WriteManifestJavaFile(xml::XmlResource* manifest_xml) {
1204 if (!options_.generate_java_class_path) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001205 return true;
1206 }
1207
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001208 std::unique_ptr<ClassDefinition> manifest_class =
1209 GenerateManifestClass(context_->GetDiagnostics(), manifest_xml);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001210
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001211 if (!manifest_class) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001212 // Something bad happened, but we already logged it, so exit.
1213 return false;
1214 }
1215
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001216 if (manifest_class->empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001217 // Empty Manifest class, no need to generate it.
1218 return true;
1219 }
1220
1221 // Add any JavaDoc annotations to the generated class.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001222 for (const std::string& annotation : options_.javadoc_annotations) {
1223 std::string proper_annotation = "@";
1224 proper_annotation += annotation;
1225 manifest_class->GetCommentBuilder()->AppendComment(proper_annotation);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001226 }
1227
Adam Lesinski0d81f702017-06-27 15:51:09 -07001228 const std::string package_utf8 =
1229 options_.custom_java_package.value_or_default(context_->GetCompilationPackage());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001230
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001231 std::string out_path = options_.generate_java_class_path.value();
1232 file::AppendPath(&out_path, file::PackageToPath(package_utf8));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001233
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001234 if (!file::mkdirs(out_path)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001235 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create directory '" << out_path
1236 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001237 return false;
1238 }
1239
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001240 file::AppendPath(&out_path, "Manifest.java");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001241
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001242 io::FileOutputStream fout(out_path);
1243 if (fout.HadError()) {
1244 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open '" << out_path
1245 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001246 return false;
1247 }
1248
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001249 ClassDefinition::WriteJavaFile(manifest_class.get(), package_utf8, true, &fout);
1250 fout.Flush();
1251
1252 if (fout.HadError()) {
1253 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1254 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001255 return false;
1256 }
1257 return true;
1258 }
1259
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001260 bool WriteProguardFile(const Maybe<std::string>& out, const proguard::KeepSet& keep_set) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001261 if (!out) {
1262 return true;
1263 }
1264
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001265 const std::string& out_path = out.value();
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001266 io::FileOutputStream fout(out_path);
1267 if (fout.HadError()) {
1268 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open '" << out_path
1269 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001270 return false;
1271 }
1272
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001273 proguard::WriteKeepSet(keep_set, &fout);
1274 fout.Flush();
1275
1276 if (fout.HadError()) {
1277 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1278 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001279 return false;
1280 }
1281 return true;
1282 }
1283
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001284 bool MergeStaticLibrary(const std::string& input, bool override) {
1285 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001286 context_->GetDiagnostics()->Note(DiagMessage() << "merging static library " << input);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001287 }
1288
Adam Lesinski8780eb62017-10-31 17:44:39 -07001289 std::unique_ptr<LoadedApk> apk = LoadedApk::LoadApkFromPath(input, context_->GetDiagnostics());
1290 if (apk == nullptr) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001291 context_->GetDiagnostics()->Error(DiagMessage(input) << "invalid static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001292 return false;
1293 }
1294
Adam Lesinski8780eb62017-10-31 17:44:39 -07001295 ResourceTable* table = apk->GetResourceTable();
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001296 ResourceTablePackage* pkg = table->FindPackageById(kAppPackageId);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001297 if (!pkg) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001298 context_->GetDiagnostics()->Error(DiagMessage(input) << "static library has no package");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001299 return false;
1300 }
1301
1302 bool result;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001303 if (options_.no_static_lib_packages) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001304 // Merge all resources as if they were in the compilation package. This is the old behavior
1305 // of aapt.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001306
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001307 // Add the package to the set of --extra-packages so we emit an R.java for each library
1308 // package.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001309 if (!pkg->name.empty()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001310 options_.extra_java_packages.insert(pkg->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001311 }
1312
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001313 // Clear the package name, so as to make the resources look like they are coming from the
1314 // local package.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001315 pkg->name = "";
Adam Lesinski8780eb62017-10-31 17:44:39 -07001316 result = table_merger_->Merge(Source(input), table, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001317
1318 } else {
1319 // This is the proper way to merge libraries, where the package name is
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001320 // preserved and resource names are mangled.
Adam Lesinski8780eb62017-10-31 17:44:39 -07001321 result = table_merger_->MergeAndMangle(Source(input), pkg->name, table);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001322 }
1323
1324 if (!result) {
1325 return false;
1326 }
1327
1328 // Make sure to move the collection into the set of IFileCollections.
Adam Lesinski8780eb62017-10-31 17:44:39 -07001329 merged_apks_.push_back(std::move(apk));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001330 return true;
1331 }
1332
Adam Lesinski2427dce2017-11-30 15:10:28 -08001333 bool MergeExportedSymbols(const Source& source,
1334 const std::vector<SourcedResourceName>& exported_symbols) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001335 // Add the exports of this file to the table.
Adam Lesinski2427dce2017-11-30 15:10:28 -08001336 for (const SourcedResourceName& exported_symbol : exported_symbols) {
Adam Lesinski00451162017-10-03 07:44:08 -07001337 ResourceName res_name = exported_symbol.name;
1338 if (res_name.package.empty()) {
1339 res_name.package = context_->GetCompilationPackage();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001340 }
1341
Adam Lesinski00451162017-10-03 07:44:08 -07001342 Maybe<ResourceName> mangled_name = context_->GetNameMangler()->MangleName(res_name);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001343 if (mangled_name) {
1344 res_name = mangled_name.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001345 }
1346
1347 std::unique_ptr<Id> id = util::make_unique<Id>();
Adam Lesinski2427dce2017-11-30 15:10:28 -08001348 id->SetSource(source.WithLine(exported_symbol.line));
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001349 bool result = final_table_.AddResourceAllowMangled(
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001350 res_name, ConfigDescription::DefaultConfig(), std::string(), std::move(id),
1351 context_->GetDiagnostics());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001352 if (!result) {
1353 return false;
1354 }
1355 }
1356 return true;
1357 }
1358
Adam Lesinski2427dce2017-11-30 15:10:28 -08001359 bool MergeCompiledFile(const ResourceFile& compiled_file, io::IFile* file, bool override) {
1360 if (context_->IsVerbose()) {
1361 context_->GetDiagnostics()->Note(DiagMessage()
1362 << "merging '" << compiled_file.name
1363 << "' from compiled file " << compiled_file.source);
1364 }
1365
1366 if (!table_merger_->MergeFile(compiled_file, override, file)) {
1367 return false;
1368 }
1369 return MergeExportedSymbols(compiled_file.source, compiled_file.exported_symbols);
1370 }
1371
Adam Lesinski00451162017-10-03 07:44:08 -07001372 // Takes a path to load as a ZIP file and merges the files within into the master ResourceTable.
1373 // If override is true, conflicting resources are allowed to override each other, in order of last
1374 // seen.
1375 // An io::IFileCollection is created from the ZIP file and added to the set of
1376 // io::IFileCollections that are open.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001377 bool MergeArchive(const std::string& input, bool override) {
1378 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001379 context_->GetDiagnostics()->Note(DiagMessage() << "merging archive " << input);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001380 }
1381
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001382 std::string error_str;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001383 std::unique_ptr<io::ZipFileCollection> collection =
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001384 io::ZipFileCollection::Create(input, &error_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001385 if (!collection) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001386 context_->GetDiagnostics()->Error(DiagMessage(input) << error_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001387 return false;
1388 }
1389
1390 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001391 for (auto iter = collection->Iterator(); iter->HasNext();) {
1392 if (!MergeFile(iter->Next(), override)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001393 error = true;
1394 }
1395 }
1396
1397 // Make sure to move the collection into the set of IFileCollections.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001398 collections_.push_back(std::move(collection));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001399 return !error;
1400 }
1401
Adam Lesinski00451162017-10-03 07:44:08 -07001402 // Takes a path to load and merge into the master ResourceTable. If override is true,
1403 // conflicting resources are allowed to override each other, in order of last seen.
1404 // If the file path ends with .flata, .jar, .jack, or .zip the file is treated
1405 // as ZIP archive and the files within are merged individually.
1406 // Otherwise the file is processed on its own.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001407 bool MergePath(const std::string& path, bool override) {
1408 if (util::EndsWith(path, ".flata") || util::EndsWith(path, ".jar") ||
1409 util::EndsWith(path, ".jack") || util::EndsWith(path, ".zip")) {
1410 return MergeArchive(path, override);
1411 } else if (util::EndsWith(path, ".apk")) {
1412 return MergeStaticLibrary(path, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001413 }
1414
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001415 io::IFile* file = file_collection_->InsertFile(path);
1416 return MergeFile(file, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001417 }
1418
Adam Lesinski00451162017-10-03 07:44:08 -07001419 // Takes an AAPT Container file (.apc/.flat) to load and merge into the master ResourceTable.
1420 // If override is true, conflicting resources are allowed to override each other, in order of last
1421 // seen.
1422 // All other file types are ignored. This is because these files could be coming from a zip,
1423 // where we could have other files like classes.dex.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001424 bool MergeFile(io::IFile* file, bool override) {
1425 const Source& src = file->GetSource();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001426
Adam Lesinski00451162017-10-03 07:44:08 -07001427 if (util::EndsWith(src.path, ".xml") || util::EndsWith(src.path, ".png")) {
Adam Lesinski6a396c12016-10-20 14:38:23 -07001428 // Since AAPT compiles these file types and appends .flat to them, seeing
1429 // their raw extensions is a sign that they weren't compiled.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001430 const StringPiece file_type = util::EndsWith(src.path, ".xml") ? "XML" : "PNG";
1431 context_->GetDiagnostics()->Error(DiagMessage(src) << "uncompiled " << file_type
1432 << " file passed as argument. Must be "
1433 "compiled first into .flat file.");
Adam Lesinski6a396c12016-10-20 14:38:23 -07001434 return false;
Adam Lesinski00451162017-10-03 07:44:08 -07001435 } else if (!util::EndsWith(src.path, ".apc") && !util::EndsWith(src.path, ".flat")) {
1436 if (context_->IsVerbose()) {
1437 context_->GetDiagnostics()->Warn(DiagMessage(src) << "ignoring unrecognized file");
1438 return true;
1439 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001440 }
1441
Adam Lesinski00451162017-10-03 07:44:08 -07001442 std::unique_ptr<io::InputStream> input_stream = file->OpenInputStream();
1443 if (input_stream == nullptr) {
1444 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to open file");
1445 return false;
1446 }
1447
1448 if (input_stream->HadError()) {
1449 context_->GetDiagnostics()->Error(DiagMessage(src)
1450 << "failed to open file: " << input_stream->GetError());
1451 return false;
1452 }
1453
1454 ContainerReaderEntry* entry;
1455 ContainerReader reader(input_stream.get());
1456 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
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001937 if (options_.generate_java_class_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)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002127 .OptionalFlagList("--split",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002128 "Split resources matching a set of configs out to a Split APK.\n"
Adam Lesinskidb091572017-04-13 12:48:56 -07002129 "Syntax: path/to/output.apk:<config>[,<config>[...]].\n"
2130 "On Windows, use a semicolon ';' separator instead.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002131 &split_args)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002132 .OptionalSwitch("-v", "Enables verbose logging.", &verbose);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002133
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002134 if (!flags.Parse("aapt2 link", args, &std::cerr)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002135 return 1;
2136 }
2137
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002138 // Expand all argument-files passed into the command line. These start with '@'.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002139 std::vector<std::string> arg_list;
2140 for (const std::string& arg : flags.GetArgs()) {
2141 if (util::StartsWith(arg, "@")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002142 const std::string path = arg.substr(1, arg.size() - 1);
2143 std::string error;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002144 if (!file::AppendArgsFromFile(path, &arg_list, &error)) {
2145 context.GetDiagnostics()->Error(DiagMessage(path) << error);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002146 return 1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002147 }
2148 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002149 arg_list.push_back(arg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002150 }
2151 }
2152
2153 // Expand all argument-files passed to -R.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002154 for (const std::string& arg : overlay_arg_list) {
2155 if (util::StartsWith(arg, "@")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002156 const std::string path = arg.substr(1, arg.size() - 1);
2157 std::string error;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002158 if (!file::AppendArgsFromFile(path, &options.overlay_files, &error)) {
2159 context.GetDiagnostics()->Error(DiagMessage(path) << error);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002160 return 1;
2161 }
2162 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002163 options.overlay_files.push_back(arg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002164 }
2165 }
2166
2167 if (verbose) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002168 context.SetVerbose(verbose);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002169 }
2170
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002171 if (int{shared_lib} + int{static_lib} + int{proto_format} > 1) {
2172 context.GetDiagnostics()->Error(
2173 DiagMessage()
2174 << "only one of --shared-lib, --static-lib, or --proto_format can be defined");
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002175 return 1;
2176 }
2177
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002178 // The default build type.
2179 context.SetPackageType(PackageType::kApp);
2180 context.SetPackageId(kAppPackageId);
2181
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002182 if (shared_lib) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002183 context.SetPackageType(PackageType::kSharedLib);
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002184 context.SetPackageId(0x00);
2185 } else if (static_lib) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002186 context.SetPackageType(PackageType::kStaticLib);
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002187 options.output_format = OutputFormat::kProto;
2188 } else if (proto_format) {
2189 options.output_format = OutputFormat::kProto;
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002190 }
2191
2192 if (package_id) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002193 if (context.GetPackageType() != PackageType::kApp) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002194 context.GetDiagnostics()->Error(
2195 DiagMessage() << "can't specify --package-id when not building a regular app");
2196 return 1;
2197 }
2198
2199 const Maybe<uint32_t> maybe_package_id_int = ResourceUtils::ParseInt(package_id.value());
2200 if (!maybe_package_id_int) {
2201 context.GetDiagnostics()->Error(DiagMessage() << "package ID '" << package_id.value()
2202 << "' is not a valid integer");
2203 return 1;
2204 }
2205
2206 const uint32_t package_id_int = maybe_package_id_int.value();
2207 if (package_id_int < kAppPackageId || package_id_int > std::numeric_limits<uint8_t>::max()) {
2208 context.GetDiagnostics()->Error(
2209 DiagMessage() << StringPrintf(
2210 "invalid package ID 0x%02x. Must be in the range 0x7f-0xff.", package_id_int));
2211 return 1;
2212 }
2213 context.SetPackageId(static_cast<uint8_t>(package_id_int));
2214 }
2215
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002216 // Populate the set of extra packages for which to generate R.java.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002217 for (std::string& extra_package : extra_java_packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002218 // A given package can actually be a colon separated list of packages.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002219 for (StringPiece package : util::Split(extra_package, ':')) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08002220 options.extra_java_packages.insert(package.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002221 }
2222 }
2223
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002224 if (product_list) {
2225 for (StringPiece product : util::Tokenize(product_list.value(), ',')) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002226 if (product != "" && product != "default") {
Adam Lesinskid5083f62017-01-16 15:07:21 -08002227 options.products.insert(product.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002228 }
2229 }
2230 }
2231
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002232 std::unique_ptr<IConfigFilter> filter;
Mihai Nitaf4dacf22017-04-07 08:25:06 -07002233 if (!configs.empty()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002234 filter = ParseConfigFilterParameters(configs, context.GetDiagnostics());
2235 if (filter == nullptr) {
2236 return 1;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002237 }
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002238 options.table_splitter_options.config_filter = filter.get();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002239 }
2240
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002241 if (preferred_density) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002242 Maybe<uint16_t> density =
2243 ParseTargetDensityParameter(preferred_density.value(), context.GetDiagnostics());
2244 if (!density) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002245 return 1;
Adam Lesinskic51562c2016-04-28 11:12:38 -07002246 }
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002247 options.table_splitter_options.preferred_densities.push_back(density.value());
2248 }
Adam Lesinskic51562c2016-04-28 11:12:38 -07002249
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002250 // Parse the split parameters.
2251 for (const std::string& split_arg : split_args) {
2252 options.split_paths.push_back({});
2253 options.split_constraints.push_back({});
2254 if (!ParseSplitParameter(split_arg, context.GetDiagnostics(), &options.split_paths.back(),
2255 &options.split_constraints.back())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002256 return 1;
Adam Lesinski1e21ff02016-06-24 14:57:58 -07002257 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002258 }
Adam Lesinski1e21ff02016-06-24 14:57:58 -07002259
Adam Lesinskib522f042017-04-21 16:57:59 -07002260 if (context.GetPackageType() != PackageType::kStaticLib && stable_id_file_path) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002261 if (!LoadStableIdMap(context.GetDiagnostics(), stable_id_file_path.value(),
2262 &options.stable_id_map)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002263 return 1;
Adam Lesinski64587af2016-02-18 18:33:06 -08002264 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002265 }
Adam Lesinski64587af2016-02-18 18:33:06 -08002266
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002267 // Populate some default no-compress extensions that are already compressed.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002268 options.extensions_to_not_compress.insert(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002269 {".jpg", ".jpeg", ".png", ".gif", ".wav", ".mp2", ".mp3", ".ogg",
2270 ".aac", ".mpg", ".mpeg", ".mid", ".midi", ".smf", ".jet", ".rtttl",
2271 ".imy", ".xmf", ".mp4", ".m4a", ".m4v", ".3gp", ".3gpp", ".3g2",
2272 ".3gpp2", ".amr", ".awb", ".wma", ".wmv", ".webm", ".mkv"});
2273
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002274 // Turn off auto versioning for static-libs.
Adam Lesinskib522f042017-04-21 16:57:59 -07002275 if (context.GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002276 options.no_auto_version = true;
2277 options.no_version_vectors = true;
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002278 options.no_version_transitions = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002279 }
Adam Lesinskie4bb9eb2016-02-12 22:18:51 -08002280
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002281 LinkCommand cmd(&context, options);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002282 return cmd.Run(arg_list);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002283}
2284
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002285} // namespace aapt