blob: db42e7cb3e021c103b77a59c7179f4e9185e8667 [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 Lesinski34a16872018-02-23 16:18:10 -080058#include "link/NoDefaultResourceRemover.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080059#include "link/ReferenceLinker.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070060#include "link/TableMerger.h"
Adam Lesinskic744ae82017-05-17 19:28:38 -070061#include "link/XmlCompatVersioner.h"
Adam Lesinskid48944a2017-02-21 14:22:30 -080062#include "optimize/ResourceDeduper.h"
63#include "optimize/VersionCollapser.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070064#include "process/IResourceTableConsumer.h"
65#include "process/SymbolTable.h"
Adam Lesinski355f2852016-02-13 20:26:45 -080066#include "split/TableSplitter.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070067#include "util/Files.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080068#include "xml/XmlDom.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070069
Adam Lesinskiefeb7af2017-08-02 14:57:43 -070070using ::aapt::io::FileInputStream;
71using ::android::StringPiece;
72using ::android::base::StringPrintf;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -070073
Adam Lesinski1ab598f2015-08-14 14:26:04 -070074namespace aapt {
75
Adam Lesinskie59f0d82017-10-13 09:36:53 -070076enum class OutputFormat {
77 kApk,
78 kProto,
79};
80
Adam Lesinski1ab598f2015-08-14 14:26:04 -070081struct LinkOptions {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070082 std::string output_path;
83 std::string manifest_path;
84 std::vector<std::string> include_paths;
85 std::vector<std::string> overlay_files;
Adam Lesinskib39ad7c2017-03-13 11:40:48 -070086 std::vector<std::string> assets_dirs;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070087 bool output_to_directory = false;
88 bool auto_add_overlay = false;
Adam Lesinskie59f0d82017-10-13 09:36:53 -070089 OutputFormat output_format = OutputFormat::kApk;
Adam Lesinski36c73a52016-08-11 13:39:24 -070090
Adam Lesinskicacb28f2016-10-19 12:18:14 -070091 // Java/Proguard options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070092 Maybe<std::string> generate_java_class_path;
93 Maybe<std::string> custom_java_package;
94 std::set<std::string> extra_java_packages;
Adam Lesinski418763f2017-04-11 17:36:53 -070095 Maybe<std::string> generate_text_symbols_path;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070096 Maybe<std::string> generate_proguard_rules_path;
97 Maybe<std::string> generate_main_dex_proguard_rules_path;
Adam Koskidc21dea2017-07-21 10:55:27 -070098 bool generate_conditional_proguard_rules = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070099 bool generate_non_final_ids = false;
100 std::vector<std::string> javadoc_annotations;
101 Maybe<std::string> private_symbols;
Adam Lesinski36c73a52016-08-11 13:39:24 -0700102
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700103 // Optimizations/features.
104 bool no_auto_version = false;
105 bool no_version_vectors = false;
Yuichi Araki4d35cca2017-01-18 20:42:17 +0900106 bool no_version_transitions = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700107 bool no_resource_deduping = false;
108 bool no_xml_namespaces = false;
109 bool do_not_compress_anything = false;
110 std::unordered_set<std::string> extensions_to_not_compress;
111
112 // Static lib options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700113 bool no_static_lib_packages = false;
114
115 // AndroidManifest.xml massaging options.
116 ManifestFixerOptions manifest_fixer_options;
117
118 // Products to use/filter on.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700119 std::unordered_set<std::string> products;
Adam Lesinski36c73a52016-08-11 13:39:24 -0700120
Adam Lesinskic8f71aa2017-02-08 07:03:50 -0800121 // Flattening options.
122 TableFlattenerOptions table_flattener_options;
123
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700124 // Split APK options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700125 TableSplitterOptions table_splitter_options;
126 std::vector<SplitConstraints> split_constraints;
127 std::vector<std::string> split_paths;
Adam Lesinski36c73a52016-08-11 13:39:24 -0700128
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700129 // Stable ID options.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700130 std::unordered_map<ResourceName, ResourceId> stable_id_map;
131 Maybe<std::string> resource_id_map_path;
Todd Kennedy32512992018-04-25 16:45:59 -0700132
133 // When 'true', allow reserved package IDs to be used for applications. Pre-O, the platform
134 // treats negative resource IDs [those with a package ID of 0x80 or higher] as invalid.
135 // In order to work around this limitation, we allow the use of traditionally reserved
136 // resource IDs [those between 0x02 and 0x7E].
137 bool allow_reserved_package_id = false;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700138};
139
Adam Lesinski64587af2016-02-18 18:33:06 -0800140class LinkContext : public IAaptContext {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700141 public:
Chris Warrington820d72a2017-04-27 15:27:01 +0100142 LinkContext(IDiagnostics* diagnostics)
143 : diagnostics_(diagnostics), name_mangler_({}), symbols_(&name_mangler_) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700144 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700145
Adam Lesinskib522f042017-04-21 16:57:59 -0700146 PackageType GetPackageType() override {
147 return package_type_;
148 }
149
150 void SetPackageType(PackageType type) {
151 package_type_ = type;
152 }
153
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700154 IDiagnostics* GetDiagnostics() override {
Chris Warrington820d72a2017-04-27 15:27:01 +0100155 return diagnostics_;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700156 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700157
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700158 NameMangler* GetNameMangler() override {
159 return &name_mangler_;
160 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700161
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700162 void SetNameManglerPolicy(const NameManglerPolicy& policy) {
163 name_mangler_ = NameMangler(policy);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700164 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800165
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700166 const std::string& GetCompilationPackage() override {
167 return compilation_package_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700168 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700169
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700170 void SetCompilationPackage(const StringPiece& package_name) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800171 compilation_package_ = package_name.to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700172 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800173
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700174 uint8_t GetPackageId() override {
175 return package_id_;
176 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700177
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700178 void SetPackageId(uint8_t id) {
179 package_id_ = id;
180 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800181
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700182 SymbolTable* GetExternalSymbols() override {
183 return &symbols_;
184 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800185
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700186 bool IsVerbose() override {
187 return verbose_;
188 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800189
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700190 void SetVerbose(bool val) {
191 verbose_ = val;
192 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800193
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700194 int GetMinSdkVersion() override {
195 return min_sdk_version_;
196 }
Adam Lesinskifb6312f2016-06-28 14:40:32 -0700197
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700198 void SetMinSdkVersion(int minSdk) {
199 min_sdk_version_ = minSdk;
200 }
Adam Lesinskifb6312f2016-06-28 14:40:32 -0700201
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700202 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700203 DISALLOW_COPY_AND_ASSIGN(LinkContext);
204
Adam Lesinskib522f042017-04-21 16:57:59 -0700205 PackageType package_type_ = PackageType::kApp;
Chris Warrington820d72a2017-04-27 15:27:01 +0100206 IDiagnostics* diagnostics_;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700207 NameMangler name_mangler_;
208 std::string compilation_package_;
209 uint8_t package_id_ = 0x0;
210 SymbolTable symbols_;
211 bool verbose_ = false;
212 int min_sdk_version_ = 0;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700213};
214
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700215// A custom delegate that generates compatible pre-O IDs for use with feature splits.
216// Feature splits use package IDs > 7f, which in Java (since Java doesn't have unsigned ints)
217// is interpreted as a negative number. Some verification was wrongly assuming negative values
218// were invalid.
219//
220// This delegate will attempt to masquerade any '@id/' references with ID 0xPPTTEEEE,
221// where PP > 7f, as 0x7fPPEEEE. Any potential overlapping is verified and an error occurs if such
222// an overlap exists.
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800223//
224// See b/37498913.
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700225class FeatureSplitSymbolTableDelegate : public DefaultSymbolTableDelegate {
226 public:
227 FeatureSplitSymbolTableDelegate(IAaptContext* context) : context_(context) {
228 }
229
230 virtual ~FeatureSplitSymbolTableDelegate() = default;
231
232 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
233 const ResourceName& name,
234 const std::vector<std::unique_ptr<ISymbolSource>>& sources) override {
235 std::unique_ptr<SymbolTable::Symbol> symbol =
236 DefaultSymbolTableDelegate::FindByName(name, sources);
237 if (symbol == nullptr) {
238 return {};
239 }
240
241 // Check to see if this is an 'id' with the target package.
242 if (name.type == ResourceType::kId && symbol->id) {
243 ResourceId* id = &symbol->id.value();
244 if (id->package_id() > kAppPackageId) {
245 // Rewrite the resource ID to be compatible pre-O.
246 ResourceId rewritten_id(kAppPackageId, id->package_id(), id->entry_id());
247
248 // Check that this doesn't overlap another resource.
249 if (DefaultSymbolTableDelegate::FindById(rewritten_id, sources) != nullptr) {
250 // The ID overlaps, so log a message (since this is a weird failure) and fail.
251 context_->GetDiagnostics()->Error(DiagMessage() << "Failed to rewrite " << name
252 << " for pre-O feature split support");
253 return {};
254 }
255
256 if (context_->IsVerbose()) {
257 context_->GetDiagnostics()->Note(DiagMessage() << "rewriting " << name << " (" << *id
258 << ") -> (" << rewritten_id << ")");
259 }
260
261 *id = rewritten_id;
262 }
263 }
264 return symbol;
265 }
266
267 private:
268 DISALLOW_COPY_AND_ASSIGN(FeatureSplitSymbolTableDelegate);
269
270 IAaptContext* context_;
271};
272
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700273static bool FlattenXml(IAaptContext* context, const xml::XmlResource& xml_res,
274 const StringPiece& path, bool keep_raw_values, bool utf16,
275 OutputFormat format, IArchiveWriter* writer) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700276 if (context->IsVerbose()) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700277 context->GetDiagnostics()->Note(DiagMessage(path) << "writing to archive (keep_raw_values="
278 << (keep_raw_values ? "true" : "false")
279 << ")");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700280 }
281
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700282 switch (format) {
283 case OutputFormat::kApk: {
284 BigBuffer buffer(1024);
285 XmlFlattenerOptions options = {};
286 options.keep_raw_values = keep_raw_values;
287 options.use_utf16 = utf16;
288 XmlFlattener flattener(&buffer, options);
289 if (!flattener.Consume(context, &xml_res)) {
290 return false;
291 }
292
293 io::BigBufferInputStream input_stream(&buffer);
294 return io::CopyInputStreamToArchive(context, &input_stream, path.to_string(),
295 ArchiveEntry::kCompress, writer);
296 } break;
297
298 case OutputFormat::kProto: {
299 pb::XmlNode pb_node;
300 SerializeXmlResourceToPb(xml_res, &pb_node);
301 return io::CopyProtoToArchive(context, &pb_node, path.to_string(), ArchiveEntry::kCompress,
302 writer);
303 } break;
304 }
305 return false;
Adam Lesinski355f2852016-02-13 20:26:45 -0800306}
307
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700308// Inflates an XML file from the source path.
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700309static std::unique_ptr<xml::XmlResource> LoadXml(const std::string& path, IDiagnostics* diag) {
Adam Lesinskiefeb7af2017-08-02 14:57:43 -0700310 FileInputStream fin(path);
311 if (fin.HadError()) {
312 diag->Error(DiagMessage(path) << "failed to load XML file: " << fin.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700313 return {};
314 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700315 return xml::Inflate(&fin, diag, Source(path));
Adam Lesinski355f2852016-02-13 20:26:45 -0800316}
317
Adam Lesinski355f2852016-02-13 20:26:45 -0800318struct ResourceFileFlattenerOptions {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700319 bool no_auto_version = false;
320 bool no_version_vectors = false;
Yuichi Araki4d35cca2017-01-18 20:42:17 +0900321 bool no_version_transitions = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700322 bool no_xml_namespaces = false;
323 bool keep_raw_values = false;
324 bool do_not_compress_anything = false;
325 bool update_proguard_spec = false;
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700326 OutputFormat output_format = OutputFormat::kApk;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700327 std::unordered_set<std::string> extensions_to_not_compress;
Adam Lesinski355f2852016-02-13 20:26:45 -0800328};
329
Adam Lesinskic744ae82017-05-17 19:28:38 -0700330// A sampling of public framework resource IDs.
331struct R {
332 struct attr {
333 enum : uint32_t {
334 paddingLeft = 0x010100d6u,
335 paddingRight = 0x010100d8u,
336 paddingHorizontal = 0x0101053du,
337
338 paddingTop = 0x010100d7u,
339 paddingBottom = 0x010100d9u,
340 paddingVertical = 0x0101053eu,
341
342 layout_marginLeft = 0x010100f7u,
343 layout_marginRight = 0x010100f9u,
344 layout_marginHorizontal = 0x0101053bu,
345
346 layout_marginTop = 0x010100f8u,
347 layout_marginBottom = 0x010100fau,
348 layout_marginVertical = 0x0101053cu,
349 };
350 };
351};
352
Adam Lesinski355f2852016-02-13 20:26:45 -0800353class ResourceFileFlattener {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700354 public:
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700355 ResourceFileFlattener(const ResourceFileFlattenerOptions& options, IAaptContext* context,
Adam Lesinskic744ae82017-05-17 19:28:38 -0700356 proguard::KeepSet* keep_set);
Adam Lesinski355f2852016-02-13 20:26:45 -0800357
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700358 bool Flatten(ResourceTable* table, IArchiveWriter* archive_writer);
Adam Lesinski355f2852016-02-13 20:26:45 -0800359
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700360 private:
361 struct FileOperation {
362 ConfigDescription config;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700363
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700364 // The entry this file came from.
Adam Lesinskibb94f322017-07-12 07:41:55 -0700365 ResourceEntry* entry;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700366
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700367 // The file to copy as-is.
Adam Lesinskibb94f322017-07-12 07:41:55 -0700368 io::IFile* file_to_copy;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700369
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700370 // The XML to process and flatten.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700371 std::unique_ptr<xml::XmlResource> xml_to_flatten;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700372
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700373 // The destination to write this file to.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700374 std::string dst_path;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700375 };
Adam Lesinski355f2852016-02-13 20:26:45 -0800376
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700377 uint32_t GetCompressionFlags(const StringPiece& str);
Adam Lesinski355f2852016-02-13 20:26:45 -0800378
Adam Lesinskic744ae82017-05-17 19:28:38 -0700379 std::vector<std::unique_ptr<xml::XmlResource>> LinkAndVersionXmlFile(ResourceTable* table,
380 FileOperation* file_op);
Adam Lesinski355f2852016-02-13 20:26:45 -0800381
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700382 ResourceFileFlattenerOptions options_;
383 IAaptContext* context_;
384 proguard::KeepSet* keep_set_;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700385 XmlCompatVersioner::Rules rules_;
Adam Lesinski355f2852016-02-13 20:26:45 -0800386};
387
Adam Lesinskic744ae82017-05-17 19:28:38 -0700388ResourceFileFlattener::ResourceFileFlattener(const ResourceFileFlattenerOptions& options,
389 IAaptContext* context, proguard::KeepSet* keep_set)
390 : options_(options), context_(context), keep_set_(keep_set) {
391 SymbolTable* symm = context_->GetExternalSymbols();
392
393 // Build up the rules for degrading newer attributes to older ones.
394 // NOTE(adamlesinski): These rules are hardcoded right now, but they should be
395 // generated from the attribute definitions themselves (b/62028956).
396 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::paddingHorizontal)) {
397 std::vector<ReplacementAttr> replacements{
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800398 {"paddingLeft", R::attr::paddingLeft, Attribute(android::ResTable_map::TYPE_DIMENSION)},
399 {"paddingRight", R::attr::paddingRight, Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700400 };
401 rules_[R::attr::paddingHorizontal] =
402 util::make_unique<DegradeToManyRule>(std::move(replacements));
403 }
404
405 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::paddingVertical)) {
406 std::vector<ReplacementAttr> replacements{
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800407 {"paddingTop", R::attr::paddingTop, Attribute(android::ResTable_map::TYPE_DIMENSION)},
408 {"paddingBottom", R::attr::paddingBottom, Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700409 };
410 rules_[R::attr::paddingVertical] =
411 util::make_unique<DegradeToManyRule>(std::move(replacements));
412 }
413
414 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::layout_marginHorizontal)) {
415 std::vector<ReplacementAttr> replacements{
416 {"layout_marginLeft", R::attr::layout_marginLeft,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800417 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700418 {"layout_marginRight", R::attr::layout_marginRight,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800419 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700420 };
421 rules_[R::attr::layout_marginHorizontal] =
422 util::make_unique<DegradeToManyRule>(std::move(replacements));
423 }
424
425 if (const SymbolTable::Symbol* s = symm->FindById(R::attr::layout_marginVertical)) {
426 std::vector<ReplacementAttr> replacements{
427 {"layout_marginTop", R::attr::layout_marginTop,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800428 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700429 {"layout_marginBottom", R::attr::layout_marginBottom,
Adam Lesinski73bff1e2017-12-08 16:06:10 -0800430 Attribute(android::ResTable_map::TYPE_DIMENSION)},
Adam Lesinskic744ae82017-05-17 19:28:38 -0700431 };
432 rules_[R::attr::layout_marginVertical] =
433 util::make_unique<DegradeToManyRule>(std::move(replacements));
434 }
435}
436
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700437uint32_t ResourceFileFlattener::GetCompressionFlags(const StringPiece& str) {
438 if (options_.do_not_compress_anything) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700439 return 0;
440 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800441
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700442 for (const std::string& extension : options_.extensions_to_not_compress) {
443 if (util::EndsWith(str, extension)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700444 return 0;
Adam Lesinski355f2852016-02-13 20:26:45 -0800445 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700446 }
447 return ArchiveEntry::kCompress;
Adam Lesinski355f2852016-02-13 20:26:45 -0800448}
449
Adam Lesinskibb94f322017-07-12 07:41:55 -0700450static bool IsTransitionElement(const std::string& name) {
451 return name == "fade" || name == "changeBounds" || name == "slide" || name == "explode" ||
452 name == "changeImageTransform" || name == "changeTransform" ||
453 name == "changeClipBounds" || name == "autoTransition" || name == "recolor" ||
454 name == "changeScroll" || name == "transitionSet" || name == "transition" ||
455 name == "transitionManager";
456}
457
458static bool IsVectorElement(const std::string& name) {
459 return name == "vector" || name == "animated-vector" || name == "pathInterpolator" ||
Nick Butchere78a8162018-01-09 15:24:21 +0000460 name == "objectAnimator" || name == "gradient" || name == "animated-selector";
Adam Lesinskibb94f322017-07-12 07:41:55 -0700461}
462
Adam Lesinskic744ae82017-05-17 19:28:38 -0700463template <typename T>
464std::vector<T> make_singleton_vec(T&& val) {
465 std::vector<T> vec;
466 vec.emplace_back(std::forward<T>(val));
467 return vec;
468}
469
470std::vector<std::unique_ptr<xml::XmlResource>> ResourceFileFlattener::LinkAndVersionXmlFile(
471 ResourceTable* table, FileOperation* file_op) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700472 xml::XmlResource* doc = file_op->xml_to_flatten.get();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700473 const Source& src = doc->file.source;
Adam Lesinski5eeaadd2016-08-25 12:26:56 -0700474
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700475 if (context_->IsVerbose()) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700476 context_->GetDiagnostics()->Note(DiagMessage()
477 << "linking " << src.path << " (" << doc->file.name << ")");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700478 }
479
Adam Lesinski00451162017-10-03 07:44:08 -0700480 // First, strip out any tools namespace attributes. AAPT stripped them out early, which means
481 // that existing projects have out-of-date references which pass compilation.
482 xml::StripAndroidStudioAttributes(doc->root.get());
483
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700484 XmlReferenceLinker xml_linker;
485 if (!xml_linker.Consume(context_, doc)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700486 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700487 }
488
Adam Koskidc21dea2017-07-21 10:55:27 -0700489 if (options_.update_proguard_spec && !proguard::CollectProguardRules(doc, keep_set_)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700490 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700491 }
492
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700493 if (options_.no_xml_namespaces) {
494 XmlNamespaceRemover namespace_remover;
495 if (!namespace_remover.Consume(context_, doc)) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700496 return {};
Adam Lesinski355f2852016-02-13 20:26:45 -0800497 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700498 }
Adam Lesinski355f2852016-02-13 20:26:45 -0800499
Adam Lesinskibb94f322017-07-12 07:41:55 -0700500 if (options_.no_auto_version) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700501 return make_singleton_vec(std::move(file_op->xml_to_flatten));
502 }
Alexandria Cornwalla7cc3f12016-08-16 13:33:32 -0700503
Adam Lesinskibb94f322017-07-12 07:41:55 -0700504 if (options_.no_version_vectors || options_.no_version_transitions) {
505 // Skip this if it is a vector or animated-vector.
Adam Lesinski6b372992017-08-09 10:54:23 -0700506 xml::Element* el = doc->root.get();
Adam Lesinskibb94f322017-07-12 07:41:55 -0700507 if (el && el->namespace_uri.empty()) {
508 if ((options_.no_version_vectors && IsVectorElement(el->name)) ||
509 (options_.no_version_transitions && IsTransitionElement(el->name))) {
510 return make_singleton_vec(std::move(file_op->xml_to_flatten));
511 }
512 }
513 }
514
Adam Lesinskic744ae82017-05-17 19:28:38 -0700515 const ConfigDescription& config = file_op->config;
516 ResourceEntry* entry = file_op->entry;
517
518 XmlCompatVersioner xml_compat_versioner(&rules_);
519 const util::Range<ApiVersion> api_range{config.sdkVersion,
520 FindNextApiVersionForConfig(entry, config)};
521 return xml_compat_versioner.Process(context_, doc, api_range);
Adam Lesinski355f2852016-02-13 20:26:45 -0800522}
523
Adam Lesinskia65bbdf2018-02-15 12:39:44 -0800524ResourceFile::Type XmlFileTypeForOutputFormat(OutputFormat format) {
525 switch (format) {
526 case OutputFormat::kApk:
527 return ResourceFile::Type::kBinaryXml;
528 case OutputFormat::kProto:
529 return ResourceFile::Type::kProtoXml;
530 }
531 LOG_ALWAYS_FATAL("unreachable");
532 return ResourceFile::Type::kUnknown;
533}
534
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700535bool ResourceFileFlattener::Flatten(ResourceTable* table, IArchiveWriter* archive_writer) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700536 bool error = false;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700537 std::map<std::pair<ConfigDescription, StringPiece>, FileOperation> config_sorted_files;
Adam Lesinski355f2852016-02-13 20:26:45 -0800538
Adam Koskidc21dea2017-07-21 10:55:27 -0700539 proguard::CollectResourceReferences(context_, table, keep_set_);
540
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700541 for (auto& pkg : table->packages) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700542 CHECK(!pkg->name.empty()) << "Packages must have names when being linked";
543
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700544 for (auto& type : pkg->types) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700545 // Sort by config and name, so that we get better locality in the zip file.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700546 config_sorted_files.clear();
Adam Lesinskibb94f322017-07-12 07:41:55 -0700547 std::queue<FileOperation> file_operations;
Adam Lesinski355f2852016-02-13 20:26:45 -0800548
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700549 // Populate the queue with all files in the ResourceTable.
550 for (auto& entry : type->entries) {
Adam Lesinskibb94f322017-07-12 07:41:55 -0700551 for (auto& config_value : entry->values) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700552 // WARNING! Do not insert or remove any resources while executing in this scope. It will
553 // corrupt the iteration order.
554
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700555 FileReference* file_ref = ValueCast<FileReference>(config_value->value.get());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700556 if (!file_ref) {
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700557 continue;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700558 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700559
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700560 io::IFile* file = file_ref->file;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700561 if (!file) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700562 context_->GetDiagnostics()->Error(DiagMessage(file_ref->GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700563 << "file not found");
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700564 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700565 }
566
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700567 FileOperation file_op;
568 file_op.entry = entry.get();
569 file_op.dst_path = *file_ref->path;
570 file_op.config = config_value->config;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700571 file_op.file_to_copy = file;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700572
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700573 if (type->type != ResourceType::kRaw &&
Adam Lesinski00451162017-10-03 07:44:08 -0700574 (file_ref->type == ResourceFile::Type::kBinaryXml ||
575 file_ref->type == ResourceFile::Type::kProtoXml)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700576 std::unique_ptr<io::IData> data = file->OpenAsData();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700577 if (!data) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700578 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700579 << "failed to open file");
580 return false;
581 }
582
Adam Lesinski00451162017-10-03 07:44:08 -0700583 if (file_ref->type == ResourceFile::Type::kProtoXml) {
584 pb::XmlNode pb_xml_node;
585 if (!pb_xml_node.ParseFromArray(data->data(), static_cast<int>(data->size()))) {
586 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinski8780eb62017-10-31 17:44:39 -0700587 << "failed to parse proto XML");
Adam Lesinski00451162017-10-03 07:44:08 -0700588 return false;
589 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700590
Adam Lesinski00451162017-10-03 07:44:08 -0700591 std::string error;
592 file_op.xml_to_flatten = DeserializeXmlResourceFromPb(pb_xml_node, &error);
593 if (file_op.xml_to_flatten == nullptr) {
594 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
Adam Lesinski8780eb62017-10-31 17:44:39 -0700595 << "failed to deserialize proto XML: " << error);
Adam Lesinski00451162017-10-03 07:44:08 -0700596 return false;
597 }
598 } else {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700599 std::string error_str;
600 file_op.xml_to_flatten = xml::Inflate(data->data(), data->size(), &error_str);
Adam Lesinski00451162017-10-03 07:44:08 -0700601 if (file_op.xml_to_flatten == nullptr) {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700602 context_->GetDiagnostics()->Error(DiagMessage(file->GetSource())
603 << "failed to parse binary XML: " << error_str);
Adam Lesinski00451162017-10-03 07:44:08 -0700604 return false;
605 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700606 }
607
Adam Lesinskia65bbdf2018-02-15 12:39:44 -0800608 // Update the type that this file will be written as.
609 file_ref->type = XmlFileTypeForOutputFormat(options_.output_format);
610
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700611 file_op.xml_to_flatten->file.config = config_value->config;
612 file_op.xml_to_flatten->file.source = file_ref->GetSource();
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700613 file_op.xml_to_flatten->file.name = ResourceName(pkg->name, type->type, entry->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700614 }
Adam Lesinskic744ae82017-05-17 19:28:38 -0700615
616 // NOTE(adamlesinski): Explicitly construct a StringPiece here, or
617 // else we end up copying the string in the std::make_pair() method,
618 // then creating a StringPiece from the copy, which would cause us
619 // to end up referencing garbage in the map.
620 const StringPiece entry_name(entry->name);
621 config_sorted_files[std::make_pair(config_value->config, entry_name)] =
622 std::move(file_op);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700623 }
624 }
625
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700626 // Now flatten the sorted values.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700627 for (auto& map_entry : config_sorted_files) {
628 const ConfigDescription& config = map_entry.first.first;
Adam Lesinskic744ae82017-05-17 19:28:38 -0700629 FileOperation& file_op = map_entry.second;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700630
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700631 if (file_op.xml_to_flatten) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700632 std::vector<std::unique_ptr<xml::XmlResource>> versioned_docs =
633 LinkAndVersionXmlFile(table, &file_op);
Adam Lesinskic0a5e1e2017-08-07 11:56:32 -0700634 if (versioned_docs.empty()) {
635 error = true;
636 continue;
637 }
638
Adam Lesinskic744ae82017-05-17 19:28:38 -0700639 for (std::unique_ptr<xml::XmlResource>& doc : versioned_docs) {
640 std::string dst_path = file_op.dst_path;
641 if (doc->file.config != file_op.config) {
642 // Only add the new versioned configurations.
643 if (context_->IsVerbose()) {
644 context_->GetDiagnostics()->Note(DiagMessage(doc->file.source)
645 << "auto-versioning resource from config '"
646 << config << "' -> '" << doc->file.config << "'");
647 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700648
Adam Lesinskia65bbdf2018-02-15 12:39:44 -0800649 const ResourceFile& file = doc->file;
650 dst_path = ResourceUtils::BuildResourceFileName(file, context_->GetNameMangler());
651
652 std::unique_ptr<FileReference> file_ref =
653 util::make_unique<FileReference>(table->string_pool.MakeRef(dst_path));
654 file_ref->SetSource(doc->file.source);
655 // Update the output format of this XML file.
656 file_ref->type = XmlFileTypeForOutputFormat(options_.output_format);
657 if (!table->AddResourceMangled(file.name, file.config, {}, std::move(file_ref),
658 context_->GetDiagnostics())) {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700659 return false;
660 }
661 }
Adam Lesinskie59f0d82017-10-13 09:36:53 -0700662
663 error |= !FlattenXml(context_, *doc, dst_path, options_.keep_raw_values,
664 false /*utf16*/, options_.output_format, archive_writer);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700665 }
666 } else {
Adam Lesinskic744ae82017-05-17 19:28:38 -0700667 error |= !io::CopyFileToArchive(context_, file_op.file_to_copy, file_op.dst_path,
668 GetCompressionFlags(file_op.dst_path), archive_writer);
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700669 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700670 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700671 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700672 }
673 return !error;
674}
675
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700676static bool WriteStableIdMapToPath(IDiagnostics* diag,
677 const std::unordered_map<ResourceName, ResourceId>& id_map,
678 const std::string& id_map_path) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800679 io::FileOutputStream fout(id_map_path);
680 if (fout.HadError()) {
681 diag->Error(DiagMessage(id_map_path) << "failed to open: " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700682 return false;
683 }
684
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800685 text::Printer printer(&fout);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700686 for (const auto& entry : id_map) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700687 const ResourceName& name = entry.first;
688 const ResourceId& id = entry.second;
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800689 printer.Print(name.to_string());
690 printer.Print(" = ");
691 printer.Println(id.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700692 }
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800693 fout.Flush();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700694
Adam Lesinskia693c4a2017-11-09 11:29:39 -0800695 if (fout.HadError()) {
696 diag->Error(DiagMessage(id_map_path) << "failed writing to file: " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700697 return false;
698 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700699 return true;
700}
701
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700702static bool LoadStableIdMap(IDiagnostics* diag, const std::string& path,
703 std::unordered_map<ResourceName, ResourceId>* out_id_map) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700704 std::string content;
Adam Lesinski2354b562017-05-26 16:31:38 -0700705 if (!android::base::ReadFileToString(path, &content, true /*follow_symlinks*/)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700706 diag->Error(DiagMessage(path) << "failed reading stable ID file");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700707 return false;
708 }
709
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700710 out_id_map->clear();
711 size_t line_no = 0;
712 for (StringPiece line : util::Tokenize(content, '\n')) {
713 line_no++;
714 line = util::TrimWhitespace(line);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700715 if (line.empty()) {
716 continue;
717 }
718
719 auto iter = std::find(line.begin(), line.end(), '=');
720 if (iter == line.end()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700721 diag->Error(DiagMessage(Source(path, line_no)) << "missing '='");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700722 return false;
723 }
724
725 ResourceNameRef name;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700726 StringPiece res_name_str =
727 util::TrimWhitespace(line.substr(0, std::distance(line.begin(), iter)));
728 if (!ResourceUtils::ParseResourceName(res_name_str, &name)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700729 diag->Error(DiagMessage(Source(path, line_no)) << "invalid resource name '" << res_name_str
730 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700731 return false;
732 }
733
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700734 const size_t res_id_start_idx = std::distance(line.begin(), iter) + 1;
735 const size_t res_id_str_len = line.size() - res_id_start_idx;
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700736 StringPiece res_id_str = util::TrimWhitespace(line.substr(res_id_start_idx, res_id_str_len));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700737
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700738 Maybe<ResourceId> maybe_id = ResourceUtils::ParseResourceId(res_id_str);
739 if (!maybe_id) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700740 diag->Error(DiagMessage(Source(path, line_no)) << "invalid resource ID '" << res_id_str
741 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700742 return false;
743 }
744
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700745 (*out_id_map)[name.ToResourceName()] = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700746 }
747 return true;
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700748}
749
Adam Lesinskic6284372017-12-04 13:46:23 -0800750static int32_t FindFrameworkAssetManagerCookie(const android::AssetManager& assets) {
751 using namespace android;
752
753 // Find the system package (0x01). AAPT always generates attributes with the type 0x01, so
754 // we're looking for the first attribute resource in the system package.
755 const ResTable& table = assets.getResources(true);
756 Res_value val;
757 ssize_t idx = table.getResource(0x01010000, &val, true);
758 if (idx != NO_ERROR) {
759 // Try as a bag.
760 const ResTable::bag_entry* entry;
761 ssize_t cnt = table.lockBag(0x01010000, &entry);
762 if (cnt >= 0) {
763 idx = entry->stringBlock;
764 }
765 table.unlockBag(entry);
766 }
767
768 if (idx < 0) {
769 return 0;
770 }
771 return table.getTableCookie(idx);
772}
773
Adam Lesinskifb48d292015-11-07 15:52:13 -0800774class LinkCommand {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700775 public:
776 LinkCommand(LinkContext* context, const LinkOptions& options)
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700777 : options_(options),
778 context_(context),
779 final_table_(),
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700780 file_collection_(util::make_unique<io::FileCollection>()) {
781 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700782
Adam Lesinskic6284372017-12-04 13:46:23 -0800783 void ExtractCompileSdkVersions(android::AssetManager* assets) {
784 using namespace android;
785
786 int32_t cookie = FindFrameworkAssetManagerCookie(*assets);
787 if (cookie == 0) {
788 // No Framework assets loaded. Not a failure.
789 return;
790 }
791
792 std::unique_ptr<Asset> manifest(
793 assets->openNonAsset(cookie, kAndroidManifestPath, Asset::AccessMode::ACCESS_BUFFER));
794 if (manifest == nullptr) {
795 // No errors.
796 return;
797 }
798
799 std::string error;
800 std::unique_ptr<xml::XmlResource> manifest_xml =
801 xml::Inflate(manifest->getBuffer(true /*wordAligned*/), manifest->getLength(), &error);
802 if (manifest_xml == nullptr) {
803 // No errors.
804 return;
805 }
806
Todd Kennedy9f6dec12018-04-20 12:29:29 -0700807 if (!options_.manifest_fixer_options.compile_sdk_version) {
808 xml::Attribute* attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionCode");
809 if (attr != nullptr) {
810 Maybe<std::string>& compile_sdk_version = options_.manifest_fixer_options.compile_sdk_version;
811 if (BinaryPrimitive* prim = ValueCast<BinaryPrimitive>(attr->compiled_value.get())) {
812 switch (prim->value.dataType) {
813 case Res_value::TYPE_INT_DEC:
814 compile_sdk_version = StringPrintf("%" PRId32, static_cast<int32_t>(prim->value.data));
815 break;
816 case Res_value::TYPE_INT_HEX:
817 compile_sdk_version = StringPrintf("%" PRIx32, prim->value.data);
818 break;
819 default:
820 break;
821 }
822 } else if (String* str = ValueCast<String>(attr->compiled_value.get())) {
823 compile_sdk_version = *str->value;
824 } else {
825 compile_sdk_version = attr->value;
Adam Lesinskic6284372017-12-04 13:46:23 -0800826 }
Adam Lesinskic6284372017-12-04 13:46:23 -0800827 }
828 }
829
Todd Kennedy9f6dec12018-04-20 12:29:29 -0700830 if (!options_.manifest_fixer_options.compile_sdk_version_codename) {
831 xml::Attribute* attr = manifest_xml->root->FindAttribute(xml::kSchemaAndroid, "versionName");
832 if (attr != nullptr) {
833 Maybe<std::string>& compile_sdk_version_codename =
834 options_.manifest_fixer_options.compile_sdk_version_codename;
835 if (String* str = ValueCast<String>(attr->compiled_value.get())) {
836 compile_sdk_version_codename = *str->value;
837 } else {
838 compile_sdk_version_codename = attr->value;
839 }
Adam Lesinskic6284372017-12-04 13:46:23 -0800840 }
841 }
842 }
843
Adam Lesinski8780eb62017-10-31 17:44:39 -0700844 // Creates a SymbolTable that loads symbols from the various APKs.
Adam Lesinskic6284372017-12-04 13:46:23 -0800845 // Pre-condition: context_->GetCompilationPackage() needs to be set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700846 bool LoadSymbolsFromIncludePaths() {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700847 auto asset_source = util::make_unique<AssetManagerSymbolSource>();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700848 for (const std::string& path : options_.include_paths) {
849 if (context_->IsVerbose()) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700850 context_->GetDiagnostics()->Note(DiagMessage() << "including " << path);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700851 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700852
Adam Lesinski8780eb62017-10-31 17:44:39 -0700853 std::string error;
854 auto zip_collection = io::ZipFileCollection::Create(path, &error);
855 if (zip_collection == nullptr) {
856 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open APK: " << error);
857 return false;
858 }
859
860 if (zip_collection->FindFile(kProtoResourceTablePath) != nullptr) {
861 // Load this as a static library include.
862 std::unique_ptr<LoadedApk> static_apk = LoadedApk::LoadProtoApkFromFileCollection(
863 Source(path), std::move(zip_collection), context_->GetDiagnostics());
864 if (static_apk == nullptr) {
865 return false;
866 }
867
Adam Lesinskib522f042017-04-21 16:57:59 -0700868 if (context_->GetPackageType() != PackageType::kStaticLib) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800869 // Can't include static libraries when not building a static library (they have no IDs
870 // assigned).
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700871 context_->GetDiagnostics()->Error(
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800872 DiagMessage(path) << "can't include static library when not building a static lib");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700873 return false;
874 }
875
Adam Lesinski8780eb62017-10-31 17:44:39 -0700876 ResourceTable* table = static_apk->GetResourceTable();
877
878 // If we are using --no-static-lib-packages, we need to rename the package of this table to
879 // our compilation package.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700880 if (options_.no_static_lib_packages) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800881 // Since package names can differ, and multiple packages can exist in a ResourceTable,
882 // we place the requirement that all static libraries are built with the package
883 // ID 0x7f. So if one is not found, this is an error.
Adam Lesinski8780eb62017-10-31 17:44:39 -0700884 if (ResourceTablePackage* pkg = table->FindPackageById(kAppPackageId)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700885 pkg->name = context_->GetCompilationPackage();
Adam Lesinskif34b6f42017-03-03 16:33:26 -0800886 } else {
887 context_->GetDiagnostics()->Error(DiagMessage(path)
888 << "no package with ID 0x7f found in static library");
889 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700890 }
891 }
892
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700893 context_->GetExternalSymbols()->AppendSource(
Adam Lesinski8780eb62017-10-31 17:44:39 -0700894 util::make_unique<ResourceTableSymbolSource>(table));
895 static_library_includes_.push_back(std::move(static_apk));
896 } else {
897 if (!asset_source->AddAssetPath(path)) {
898 context_->GetDiagnostics()->Error(DiagMessage()
899 << "failed to load include path " << path);
900 return false;
901 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700902 }
903 }
904
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800905 // Capture the shared libraries so that the final resource table can be properly flattened
906 // with support for shared libraries.
907 for (auto& entry : asset_source->GetAssignedPackageIds()) {
Todd Kennedy32512992018-04-25 16:45:59 -0700908 if (entry.first == kAppPackageId) {
Adam Lesinski490595a2017-11-07 17:08:07 -0800909 // Capture the included base feature package.
910 included_feature_base_ = entry.second;
Adam Lesinskic6284372017-12-04 13:46:23 -0800911 } else if (entry.first == kFrameworkPackageId) {
912 // Try to embed which version of the framework we're compiling against.
913 // First check if we should use compileSdkVersion at all. Otherwise compilation may fail
914 // when linking our synthesized 'android:compileSdkVersion' attribute.
915 std::unique_ptr<SymbolTable::Symbol> symbol = asset_source->FindByName(
916 ResourceName("android", ResourceType::kAttr, "compileSdkVersion"));
917 if (symbol != nullptr && symbol->is_public) {
918 // The symbol is present and public, extract the android:versionName and
919 // android:versionCode from the framework AndroidManifest.xml.
920 ExtractCompileSdkVersions(asset_source->GetAssetManager());
921 }
Todd Kennedy32512992018-04-25 16:45:59 -0700922 } else if (asset_source->IsPackageDynamic(entry.first)) {
923 final_table_.included_packages_[entry.first] = entry.second;
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800924 }
925 }
926
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700927 context_->GetExternalSymbols()->AppendSource(std::move(asset_source));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700928 return true;
929 }
930
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800931 Maybe<AppInfo> ExtractAppInfoFromManifest(xml::XmlResource* xml_res, IDiagnostics* diag) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700932 // Make sure the first element is <manifest> with package attribute.
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800933 xml::Element* manifest_el = xml::FindRootElement(xml_res->root.get());
934 if (manifest_el == nullptr) {
935 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700936 }
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800937
938 AppInfo app_info;
939
940 if (!manifest_el->namespace_uri.empty() || manifest_el->name != "manifest") {
941 diag->Error(DiagMessage(xml_res->file.source) << "root tag must be <manifest>");
942 return {};
943 }
944
945 xml::Attribute* package_attr = manifest_el->FindAttribute({}, "package");
946 if (!package_attr) {
947 diag->Error(DiagMessage(xml_res->file.source)
948 << "<manifest> must have a 'package' attribute");
949 return {};
950 }
951 app_info.package = package_attr->value;
952
953 if (xml::Attribute* version_code_attr =
954 manifest_el->FindAttribute(xml::kSchemaAndroid, "versionCode")) {
955 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(version_code_attr->value);
956 if (!maybe_code) {
957 diag->Error(DiagMessage(xml_res->file.source.WithLine(manifest_el->line_number))
958 << "invalid android:versionCode '" << version_code_attr->value << "'");
959 return {};
960 }
961 app_info.version_code = maybe_code.value();
962 }
963
964 if (xml::Attribute* revision_code_attr =
965 manifest_el->FindAttribute(xml::kSchemaAndroid, "revisionCode")) {
966 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(revision_code_attr->value);
967 if (!maybe_code) {
968 diag->Error(DiagMessage(xml_res->file.source.WithLine(manifest_el->line_number))
969 << "invalid android:revisionCode '" << revision_code_attr->value << "'");
970 return {};
971 }
972 app_info.revision_code = maybe_code.value();
973 }
974
975 if (xml::Attribute* split_name_attr = manifest_el->FindAttribute({}, "split")) {
976 if (!split_name_attr->value.empty()) {
977 app_info.split_name = split_name_attr->value;
978 }
979 }
980
981 if (xml::Element* uses_sdk_el = manifest_el->FindChild({}, "uses-sdk")) {
982 if (xml::Attribute* min_sdk =
983 uses_sdk_el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion")) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700984 app_info.min_sdk_version = ResourceUtils::ParseSdkVersion(min_sdk->value);
Adam Lesinskib0c47ef2017-03-06 20:05:57 -0800985 }
986 }
987 return app_info;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700988 }
989
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700990 // Precondition: ResourceTable doesn't have any IDs assigned yet, nor is it linked.
991 // Postcondition: ResourceTable has only one package left. All others are
992 // stripped, or there is an error and false is returned.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700993 bool VerifyNoExternalPackages() {
Adam Lesinskid0f492d2017-04-03 18:12:45 -0700994 auto is_ext_package_func = [&](const std::unique_ptr<ResourceTablePackage>& pkg) -> bool {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700995 return context_->GetCompilationPackage() != pkg->name || !pkg->id ||
996 pkg->id.value() != context_->GetPackageId();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700997 };
998
999 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001000 for (const auto& package : final_table_.packages) {
1001 if (is_ext_package_func(package)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001002 // We have a package that is not related to the one we're building!
1003 for (const auto& type : package->types) {
1004 for (const auto& entry : type->entries) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001005 ResourceNameRef res_name(package->name, type->type, entry->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001006
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001007 for (const auto& config_value : entry->values) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001008 // Special case the occurrence of an ID that is being generated
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001009 // for the 'android' package. This is due to legacy reasons.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001010 if (ValueCast<Id>(config_value->value.get()) && package->name == "android") {
1011 context_->GetDiagnostics()->Warn(DiagMessage(config_value->value->GetSource())
1012 << "generated id '" << res_name
1013 << "' for external package '" << package->name
1014 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001015 } else {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001016 context_->GetDiagnostics()->Error(DiagMessage(config_value->value->GetSource())
1017 << "defined resource '" << res_name
1018 << "' for external package '" << package->name
1019 << "'");
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001020 error = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001021 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001022 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001023 }
1024 }
1025 }
1026 }
1027
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001028 auto new_end_iter = std::remove_if(final_table_.packages.begin(), final_table_.packages.end(),
1029 is_ext_package_func);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001030 final_table_.packages.erase(new_end_iter, final_table_.packages.end());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001031 return !error;
1032 }
1033
1034 /**
1035 * Returns true if no IDs have been set, false otherwise.
1036 */
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001037 bool VerifyNoIdsSet() {
1038 for (const auto& package : final_table_.packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001039 for (const auto& type : package->types) {
1040 if (type->id) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001041 context_->GetDiagnostics()->Error(DiagMessage() << "type " << type->type << " has ID "
1042 << StringPrintf("%02x", type->id.value())
1043 << " assigned");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001044 return false;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001045 }
1046
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001047 for (const auto& entry : type->entries) {
1048 if (entry->id) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001049 ResourceNameRef res_name(package->name, type->type, entry->name);
1050 context_->GetDiagnostics()->Error(
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001051 DiagMessage() << "entry " << res_name << " has ID "
1052 << StringPrintf("%02x", entry->id.value()) << " assigned");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001053 return false;
1054 }
1055 }
1056 }
1057 }
1058 return true;
1059 }
1060
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001061 std::unique_ptr<IArchiveWriter> MakeArchiveWriter(const StringPiece& out) {
1062 if (options_.output_to_directory) {
1063 return CreateDirectoryArchiveWriter(context_->GetDiagnostics(), out);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001064 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001065 return CreateZipFileArchiveWriter(context_->GetDiagnostics(), out);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001066 }
1067 }
1068
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001069 bool FlattenTable(ResourceTable* table, OutputFormat format, IArchiveWriter* writer) {
1070 switch (format) {
1071 case OutputFormat::kApk: {
1072 BigBuffer buffer(1024);
1073 TableFlattener flattener(options_.table_flattener_options, &buffer);
1074 if (!flattener.Consume(context_, table)) {
1075 context_->GetDiagnostics()->Error(DiagMessage() << "failed to flatten resource table");
1076 return false;
1077 }
1078
1079 io::BigBufferInputStream input_stream(&buffer);
1080 return io::CopyInputStreamToArchive(context_, &input_stream, kApkResourceTablePath,
1081 ArchiveEntry::kAlign, writer);
1082 } break;
1083
1084 case OutputFormat::kProto: {
1085 pb::ResourceTable pb_table;
Ryan Mitchell70414f22018-03-26 11:05:31 -07001086 SerializeTableToPb(*table, &pb_table, context_->GetDiagnostics());
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001087 return io::CopyProtoToArchive(context_, &pb_table, kProtoResourceTablePath,
1088 ArchiveEntry::kCompress, writer);
1089 } break;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001090 }
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001091 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001092 }
1093
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001094 bool WriteJavaFile(ResourceTable* table, const StringPiece& package_name_to_generate,
Adam Lesinski418763f2017-04-11 17:36:53 -07001095 const StringPiece& out_package, const JavaClassGeneratorOptions& java_options,
Chih-Hung Hsieh4dc58122017-08-03 16:28:10 -07001096 const Maybe<std::string>& out_text_symbols_path = {}) {
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001097 if (!options_.generate_java_class_path && !out_text_symbols_path) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001098 return true;
1099 }
1100
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001101 std::string out_path;
1102 std::unique_ptr<io::FileOutputStream> fout;
1103 if (options_.generate_java_class_path) {
1104 out_path = options_.generate_java_class_path.value();
1105 file::AppendPath(&out_path, file::PackageToPath(out_package));
1106 if (!file::mkdirs(out_path)) {
1107 context_->GetDiagnostics()->Error(DiagMessage()
1108 << "failed to create directory '" << out_path << "'");
1109 return false;
1110 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001111
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001112 file::AppendPath(&out_path, "R.java");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001113
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001114 fout = util::make_unique<io::FileOutputStream>(out_path);
1115 if (fout->HadError()) {
1116 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1117 << "': " << fout->GetError());
1118 return false;
1119 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001120 }
1121
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001122 std::unique_ptr<io::FileOutputStream> fout_text;
Adam Lesinski418763f2017-04-11 17:36:53 -07001123 if (out_text_symbols_path) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001124 fout_text = util::make_unique<io::FileOutputStream>(out_text_symbols_path.value());
1125 if (fout_text->HadError()) {
1126 context_->GetDiagnostics()->Error(DiagMessage()
1127 << "failed writing to '" << out_text_symbols_path.value()
1128 << "': " << fout_text->GetError());
Adam Lesinski418763f2017-04-11 17:36:53 -07001129 return false;
1130 }
1131 }
1132
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001133 JavaClassGenerator generator(context_, table, java_options);
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001134 if (!generator.Generate(package_name_to_generate, out_package, fout.get(), fout_text.get())) {
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001135 context_->GetDiagnostics()->Error(DiagMessage(out_path) << generator.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001136 return false;
1137 }
1138
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001139 return true;
1140 }
1141
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001142 bool GenerateJavaClasses() {
1143 // The set of packages whose R class to call in the main classes onResourcesLoaded callback.
1144 std::vector<std::string> packages_to_callback;
1145
1146 JavaClassGeneratorOptions template_options;
1147 template_options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1148 template_options.javadoc_annotations = options_.javadoc_annotations;
1149
1150 if (context_->GetPackageType() == PackageType::kStaticLib || options_.generate_non_final_ids) {
1151 template_options.use_final = false;
1152 }
1153
1154 if (context_->GetPackageType() == PackageType::kSharedLib) {
1155 template_options.use_final = false;
1156 template_options.rewrite_callback_options = OnResourcesLoadedCallbackOptions{};
1157 }
1158
1159 const StringPiece actual_package = context_->GetCompilationPackage();
1160 StringPiece output_package = context_->GetCompilationPackage();
1161 if (options_.custom_java_package) {
1162 // Override the output java package to the custom one.
1163 output_package = options_.custom_java_package.value();
1164 }
1165
1166 // Generate the private symbols if required.
1167 if (options_.private_symbols) {
1168 packages_to_callback.push_back(options_.private_symbols.value());
1169
1170 // If we defined a private symbols package, we only emit Public symbols
1171 // to the original package, and private and public symbols to the private package.
1172 JavaClassGeneratorOptions options = template_options;
1173 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublicPrivate;
1174 if (!WriteJavaFile(&final_table_, actual_package, options_.private_symbols.value(),
1175 options)) {
1176 return false;
1177 }
1178 }
1179
1180 // Generate copies of the original package R class but with different package names.
1181 // This is to support non-namespaced builds.
1182 for (const std::string& extra_package : options_.extra_java_packages) {
1183 packages_to_callback.push_back(extra_package);
1184
1185 JavaClassGeneratorOptions options = template_options;
1186 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1187 if (!WriteJavaFile(&final_table_, actual_package, extra_package, options)) {
1188 return false;
1189 }
1190 }
1191
1192 // Generate R classes for each package that was merged (static library).
1193 // Use the actual package's resources only.
1194 for (const std::string& package : table_merger_->merged_packages()) {
1195 packages_to_callback.push_back(package);
1196
1197 JavaClassGeneratorOptions options = template_options;
1198 options.types = JavaClassGeneratorOptions::SymbolTypes::kAll;
1199 if (!WriteJavaFile(&final_table_, package, package, options)) {
1200 return false;
1201 }
1202 }
1203
1204 // Generate the main public R class.
1205 JavaClassGeneratorOptions options = template_options;
1206
1207 // Only generate public symbols if we have a private package.
1208 if (options_.private_symbols) {
1209 options.types = JavaClassGeneratorOptions::SymbolTypes::kPublic;
1210 }
1211
1212 if (options.rewrite_callback_options) {
1213 options.rewrite_callback_options.value().packages_to_callback =
1214 std::move(packages_to_callback);
1215 }
1216
1217 if (!WriteJavaFile(&final_table_, actual_package, output_package, options,
1218 options_.generate_text_symbols_path)) {
1219 return false;
1220 }
1221
1222 return true;
1223 }
1224
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001225 bool WriteManifestJavaFile(xml::XmlResource* manifest_xml) {
1226 if (!options_.generate_java_class_path) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001227 return true;
1228 }
1229
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001230 std::unique_ptr<ClassDefinition> manifest_class =
1231 GenerateManifestClass(context_->GetDiagnostics(), manifest_xml);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001232
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001233 if (!manifest_class) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001234 // Something bad happened, but we already logged it, so exit.
1235 return false;
1236 }
1237
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001238 if (manifest_class->empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001239 // Empty Manifest class, no need to generate it.
1240 return true;
1241 }
1242
1243 // Add any JavaDoc annotations to the generated class.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001244 for (const std::string& annotation : options_.javadoc_annotations) {
1245 std::string proper_annotation = "@";
1246 proper_annotation += annotation;
1247 manifest_class->GetCommentBuilder()->AppendComment(proper_annotation);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001248 }
1249
Adam Lesinski0d81f702017-06-27 15:51:09 -07001250 const std::string package_utf8 =
1251 options_.custom_java_package.value_or_default(context_->GetCompilationPackage());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001252
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001253 std::string out_path = options_.generate_java_class_path.value();
1254 file::AppendPath(&out_path, file::PackageToPath(package_utf8));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001255
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001256 if (!file::mkdirs(out_path)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001257 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create directory '" << out_path
1258 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001259 return false;
1260 }
1261
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001262 file::AppendPath(&out_path, "Manifest.java");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001263
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001264 io::FileOutputStream fout(out_path);
1265 if (fout.HadError()) {
1266 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open '" << out_path
1267 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001268 return false;
1269 }
1270
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001271 ClassDefinition::WriteJavaFile(manifest_class.get(), package_utf8, true, &fout);
1272 fout.Flush();
1273
1274 if (fout.HadError()) {
1275 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1276 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001277 return false;
1278 }
1279 return true;
1280 }
1281
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001282 bool WriteProguardFile(const Maybe<std::string>& out, const proguard::KeepSet& keep_set) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001283 if (!out) {
1284 return true;
1285 }
1286
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001287 const std::string& out_path = out.value();
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001288 io::FileOutputStream fout(out_path);
1289 if (fout.HadError()) {
1290 context_->GetDiagnostics()->Error(DiagMessage() << "failed to open '" << out_path
1291 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001292 return false;
1293 }
1294
Adam Lesinskia693c4a2017-11-09 11:29:39 -08001295 proguard::WriteKeepSet(keep_set, &fout);
1296 fout.Flush();
1297
1298 if (fout.HadError()) {
1299 context_->GetDiagnostics()->Error(DiagMessage() << "failed writing to '" << out_path
1300 << "': " << fout.GetError());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001301 return false;
1302 }
1303 return true;
1304 }
1305
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001306 bool MergeStaticLibrary(const std::string& input, bool override) {
1307 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001308 context_->GetDiagnostics()->Note(DiagMessage() << "merging static library " << input);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001309 }
1310
Adam Lesinski8780eb62017-10-31 17:44:39 -07001311 std::unique_ptr<LoadedApk> apk = LoadedApk::LoadApkFromPath(input, context_->GetDiagnostics());
1312 if (apk == nullptr) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001313 context_->GetDiagnostics()->Error(DiagMessage(input) << "invalid static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001314 return false;
1315 }
1316
Adam Lesinski8780eb62017-10-31 17:44:39 -07001317 ResourceTable* table = apk->GetResourceTable();
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001318 ResourceTablePackage* pkg = table->FindPackageById(kAppPackageId);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001319 if (!pkg) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001320 context_->GetDiagnostics()->Error(DiagMessage(input) << "static library has no package");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001321 return false;
1322 }
1323
1324 bool result;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001325 if (options_.no_static_lib_packages) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001326 // Merge all resources as if they were in the compilation package. This is the old behavior
1327 // of aapt.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001328
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001329 // Add the package to the set of --extra-packages so we emit an R.java for each library
1330 // package.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001331 if (!pkg->name.empty()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001332 options_.extra_java_packages.insert(pkg->name);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001333 }
1334
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001335 // Clear the package name, so as to make the resources look like they are coming from the
1336 // local package.
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001337 pkg->name = "";
Adam Lesinski8780eb62017-10-31 17:44:39 -07001338 result = table_merger_->Merge(Source(input), table, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001339
1340 } else {
1341 // This is the proper way to merge libraries, where the package name is
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001342 // preserved and resource names are mangled.
Adam Lesinski8780eb62017-10-31 17:44:39 -07001343 result = table_merger_->MergeAndMangle(Source(input), pkg->name, table);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001344 }
1345
1346 if (!result) {
1347 return false;
1348 }
1349
1350 // Make sure to move the collection into the set of IFileCollections.
Adam Lesinski8780eb62017-10-31 17:44:39 -07001351 merged_apks_.push_back(std::move(apk));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001352 return true;
1353 }
1354
Adam Lesinski2427dce2017-11-30 15:10:28 -08001355 bool MergeExportedSymbols(const Source& source,
1356 const std::vector<SourcedResourceName>& exported_symbols) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001357 // Add the exports of this file to the table.
Adam Lesinski2427dce2017-11-30 15:10:28 -08001358 for (const SourcedResourceName& exported_symbol : exported_symbols) {
Adam Lesinski00451162017-10-03 07:44:08 -07001359 ResourceName res_name = exported_symbol.name;
1360 if (res_name.package.empty()) {
1361 res_name.package = context_->GetCompilationPackage();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001362 }
1363
Adam Lesinski00451162017-10-03 07:44:08 -07001364 Maybe<ResourceName> mangled_name = context_->GetNameMangler()->MangleName(res_name);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001365 if (mangled_name) {
1366 res_name = mangled_name.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001367 }
1368
1369 std::unique_ptr<Id> id = util::make_unique<Id>();
Adam Lesinski2427dce2017-11-30 15:10:28 -08001370 id->SetSource(source.WithLine(exported_symbol.line));
Adam Lesinski71be7052017-12-12 16:48:07 -08001371 bool result =
1372 final_table_.AddResourceMangled(res_name, ConfigDescription::DefaultConfig(),
1373 std::string(), std::move(id), context_->GetDiagnostics());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001374 if (!result) {
1375 return false;
1376 }
1377 }
1378 return true;
1379 }
1380
Adam Lesinski2427dce2017-11-30 15:10:28 -08001381 bool MergeCompiledFile(const ResourceFile& compiled_file, io::IFile* file, bool override) {
1382 if (context_->IsVerbose()) {
1383 context_->GetDiagnostics()->Note(DiagMessage()
1384 << "merging '" << compiled_file.name
1385 << "' from compiled file " << compiled_file.source);
1386 }
1387
1388 if (!table_merger_->MergeFile(compiled_file, override, file)) {
1389 return false;
1390 }
1391 return MergeExportedSymbols(compiled_file.source, compiled_file.exported_symbols);
1392 }
1393
Adam Lesinski00451162017-10-03 07:44:08 -07001394 // Takes a path to load as a ZIP file and merges the files within into the master ResourceTable.
1395 // If override is true, conflicting resources are allowed to override each other, in order of last
1396 // seen.
1397 // An io::IFileCollection is created from the ZIP file and added to the set of
1398 // io::IFileCollections that are open.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001399 bool MergeArchive(const std::string& input, bool override) {
1400 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001401 context_->GetDiagnostics()->Note(DiagMessage() << "merging archive " << input);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001402 }
1403
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001404 std::string error_str;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001405 std::unique_ptr<io::ZipFileCollection> collection =
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001406 io::ZipFileCollection::Create(input, &error_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001407 if (!collection) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001408 context_->GetDiagnostics()->Error(DiagMessage(input) << error_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001409 return false;
1410 }
1411
1412 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001413 for (auto iter = collection->Iterator(); iter->HasNext();) {
1414 if (!MergeFile(iter->Next(), override)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001415 error = true;
1416 }
1417 }
1418
1419 // Make sure to move the collection into the set of IFileCollections.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001420 collections_.push_back(std::move(collection));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001421 return !error;
1422 }
1423
Adam Lesinski00451162017-10-03 07:44:08 -07001424 // Takes a path to load and merge into the master ResourceTable. If override is true,
1425 // conflicting resources are allowed to override each other, in order of last seen.
1426 // If the file path ends with .flata, .jar, .jack, or .zip the file is treated
1427 // as ZIP archive and the files within are merged individually.
1428 // Otherwise the file is processed on its own.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001429 bool MergePath(const std::string& path, bool override) {
1430 if (util::EndsWith(path, ".flata") || util::EndsWith(path, ".jar") ||
1431 util::EndsWith(path, ".jack") || util::EndsWith(path, ".zip")) {
1432 return MergeArchive(path, override);
1433 } else if (util::EndsWith(path, ".apk")) {
1434 return MergeStaticLibrary(path, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001435 }
1436
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001437 io::IFile* file = file_collection_->InsertFile(path);
1438 return MergeFile(file, override);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001439 }
1440
Adam Lesinski00451162017-10-03 07:44:08 -07001441 // Takes an AAPT Container file (.apc/.flat) to load and merge into the master ResourceTable.
1442 // If override is true, conflicting resources are allowed to override each other, in order of last
1443 // seen.
1444 // All other file types are ignored. This is because these files could be coming from a zip,
1445 // where we could have other files like classes.dex.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001446 bool MergeFile(io::IFile* file, bool override) {
1447 const Source& src = file->GetSource();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001448
Adam Lesinski00451162017-10-03 07:44:08 -07001449 if (util::EndsWith(src.path, ".xml") || util::EndsWith(src.path, ".png")) {
Adam Lesinski6a396c12016-10-20 14:38:23 -07001450 // Since AAPT compiles these file types and appends .flat to them, seeing
1451 // their raw extensions is a sign that they weren't compiled.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001452 const StringPiece file_type = util::EndsWith(src.path, ".xml") ? "XML" : "PNG";
1453 context_->GetDiagnostics()->Error(DiagMessage(src) << "uncompiled " << file_type
1454 << " file passed as argument. Must be "
1455 "compiled first into .flat file.");
Adam Lesinski6a396c12016-10-20 14:38:23 -07001456 return false;
Adam Lesinski00451162017-10-03 07:44:08 -07001457 } else if (!util::EndsWith(src.path, ".apc") && !util::EndsWith(src.path, ".flat")) {
1458 if (context_->IsVerbose()) {
1459 context_->GetDiagnostics()->Warn(DiagMessage(src) << "ignoring unrecognized file");
1460 return true;
1461 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001462 }
1463
Adam Lesinski00451162017-10-03 07:44:08 -07001464 std::unique_ptr<io::InputStream> input_stream = file->OpenInputStream();
1465 if (input_stream == nullptr) {
1466 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to open file");
1467 return false;
1468 }
1469
1470 if (input_stream->HadError()) {
1471 context_->GetDiagnostics()->Error(DiagMessage(src)
1472 << "failed to open file: " << input_stream->GetError());
1473 return false;
1474 }
1475
1476 ContainerReaderEntry* entry;
1477 ContainerReader reader(input_stream.get());
Mohamed Heikal10844322018-02-07 15:17:38 -05001478
1479 if (reader.HadError()) {
1480 context_->GetDiagnostics()->Error(DiagMessage(src)
1481 << "failed to read file: " << reader.GetError());
1482 return false;
1483 }
1484
Adam Lesinski00451162017-10-03 07:44:08 -07001485 while ((entry = reader.Next()) != nullptr) {
1486 if (entry->Type() == ContainerEntryType::kResTable) {
1487 pb::ResourceTable pb_table;
1488 if (!entry->GetResTable(&pb_table)) {
1489 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to read resource table: "
1490 << entry->GetError());
1491 return false;
1492 }
1493
1494 ResourceTable table;
1495 std::string error;
Adam Lesinski8780eb62017-10-31 17:44:39 -07001496 if (!DeserializeTableFromPb(pb_table, nullptr /*files*/, &table, &error)) {
Adam Lesinski00451162017-10-03 07:44:08 -07001497 context_->GetDiagnostics()->Error(DiagMessage(src)
1498 << "failed to deserialize resource table: " << error);
1499 return false;
1500 }
1501
1502 if (!table_merger_->Merge(src, &table, override)) {
1503 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to merge resource table");
1504 return false;
1505 }
1506 } else if (entry->Type() == ContainerEntryType::kResFile) {
1507 pb::internal::CompiledFile pb_compiled_file;
1508 off64_t offset;
1509 size_t len;
1510 if (!entry->GetResFileOffsets(&pb_compiled_file, &offset, &len)) {
1511 context_->GetDiagnostics()->Error(DiagMessage(src) << "failed to get resource file: "
1512 << entry->GetError());
1513 return false;
1514 }
1515
1516 ResourceFile resource_file;
1517 std::string error;
1518 if (!DeserializeCompiledFileFromPb(pb_compiled_file, &resource_file, &error)) {
1519 context_->GetDiagnostics()->Error(DiagMessage(src)
1520 << "failed to read compiled header: " << error);
1521 return false;
1522 }
1523
1524 if (!MergeCompiledFile(resource_file, file->CreateFileSegment(offset, len), override)) {
1525 return false;
1526 }
1527 }
1528 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001529 return true;
1530 }
1531
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001532 bool CopyAssetsDirsToApk(IArchiveWriter* writer) {
1533 std::map<std::string, std::unique_ptr<io::RegularFile>> merged_assets;
1534 for (const std::string& assets_dir : options_.assets_dirs) {
1535 Maybe<std::vector<std::string>> files =
1536 file::FindFiles(assets_dir, context_->GetDiagnostics(), nullptr);
1537 if (!files) {
1538 return false;
1539 }
1540
1541 for (const std::string& file : files.value()) {
1542 std::string full_key = "assets/" + file;
1543 std::string full_path = assets_dir;
1544 file::AppendPath(&full_path, file);
1545
1546 auto iter = merged_assets.find(full_key);
1547 if (iter == merged_assets.end()) {
1548 merged_assets.emplace(std::move(full_key),
1549 util::make_unique<io::RegularFile>(Source(std::move(full_path))));
1550 } else if (context_->IsVerbose()) {
1551 context_->GetDiagnostics()->Warn(DiagMessage(iter->second->GetSource())
1552 << "asset file overrides '" << full_path << "'");
1553 }
1554 }
1555 }
1556
1557 for (auto& entry : merged_assets) {
1558 uint32_t compression_flags = ArchiveEntry::kCompress;
1559 std::string extension = file::GetExtension(entry.first).to_string();
1560 if (options_.extensions_to_not_compress.count(extension) > 0) {
1561 compression_flags = 0u;
1562 }
1563
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001564 if (!io::CopyFileToArchive(context_, entry.second.get(), entry.first, compression_flags,
1565 writer)) {
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001566 return false;
1567 }
1568 }
1569 return true;
1570 }
1571
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001572 // Writes the AndroidManifest, ResourceTable, and all XML files referenced by the ResourceTable
1573 // to the IArchiveWriter.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001574 bool WriteApk(IArchiveWriter* writer, proguard::KeepSet* keep_set, xml::XmlResource* manifest,
1575 ResourceTable* table) {
Adam Lesinskib522f042017-04-21 16:57:59 -07001576 const bool keep_raw_values = context_->GetPackageType() == PackageType::kStaticLib;
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001577 bool result = FlattenXml(context_, *manifest, "AndroidManifest.xml", keep_raw_values,
1578 true /*utf16*/, options_.output_format, writer);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001579 if (!result) {
1580 return false;
1581 }
1582
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001583 ResourceFileFlattenerOptions file_flattener_options;
1584 file_flattener_options.keep_raw_values = keep_raw_values;
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001585 file_flattener_options.do_not_compress_anything = options_.do_not_compress_anything;
1586 file_flattener_options.extensions_to_not_compress = options_.extensions_to_not_compress;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001587 file_flattener_options.no_auto_version = options_.no_auto_version;
1588 file_flattener_options.no_version_vectors = options_.no_version_vectors;
Yuichi Araki4d35cca2017-01-18 20:42:17 +09001589 file_flattener_options.no_version_transitions = options_.no_version_transitions;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001590 file_flattener_options.no_xml_namespaces = options_.no_xml_namespaces;
1591 file_flattener_options.update_proguard_spec =
1592 static_cast<bool>(options_.generate_proguard_rules_path);
Adam Lesinskie59f0d82017-10-13 09:36:53 -07001593 file_flattener_options.output_format = options_.output_format;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001594
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001595 ResourceFileFlattener file_flattener(file_flattener_options, context_, keep_set);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001596
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001597 if (!file_flattener.Flatten(table, writer)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001598 context_->GetDiagnostics()->Error(DiagMessage() << "failed linking file resources");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001599 return false;
1600 }
1601
Adam Lesinski490595a2017-11-07 17:08:07 -08001602 // Hack to fix b/68820737.
1603 // We need to modify the ResourceTable's package name, but that should NOT affect
1604 // anything else being generated, which includes the Java classes.
1605 // If required, the package name is modifed before flattening, and then modified back
1606 // to its original name.
1607 ResourceTablePackage* package_to_rewrite = nullptr;
Todd Kennedy32512992018-04-25 16:45:59 -07001608 // Pre-O, the platform treats negative resource IDs [those with a package ID of 0x80
1609 // or higher] as invalid. In order to work around this limitation, we allow the use
1610 // of traditionally reserved resource IDs [those between 0x02 and 0x7E]. Allow the
1611 // definition of what a valid "split" package ID is to account for this.
1612 const bool isSplitPackage = (options_.allow_reserved_package_id &&
1613 context_->GetPackageId() != kAppPackageId &&
1614 context_->GetPackageId() != kFrameworkPackageId)
1615 || (!options_.allow_reserved_package_id && context_->GetPackageId() > kAppPackageId);
1616 if (isSplitPackage &&
Adam Lesinski490595a2017-11-07 17:08:07 -08001617 included_feature_base_ == make_value(context_->GetCompilationPackage())) {
1618 // The base APK is included, and this is a feature split. If the base package is
1619 // the same as this package, then we are building an old style Android Instant Apps feature
1620 // split and must apply this workaround to avoid requiring namespaces support.
1621 package_to_rewrite = table->FindPackage(context_->GetCompilationPackage());
1622 if (package_to_rewrite != nullptr) {
1623 CHECK_EQ(1u, table->packages.size()) << "can't change name of package when > 1 package";
1624
1625 std::string new_package_name =
1626 StringPrintf("%s.%s", package_to_rewrite->name.c_str(),
1627 app_info_.split_name.value_or_default("feature").c_str());
1628
1629 if (context_->IsVerbose()) {
1630 context_->GetDiagnostics()->Note(
1631 DiagMessage() << "rewriting resource package name for feature split to '"
1632 << new_package_name << "'");
1633 }
1634 package_to_rewrite->name = new_package_name;
1635 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001636 }
Adam Lesinski490595a2017-11-07 17:08:07 -08001637
1638 bool success = FlattenTable(table, options_.output_format, writer);
1639
1640 if (package_to_rewrite != nullptr) {
1641 // Change the name back.
1642 package_to_rewrite->name = context_->GetCompilationPackage();
1643 if (package_to_rewrite->id) {
1644 table->included_packages_.erase(package_to_rewrite->id.value());
1645 }
1646 }
1647
1648 if (!success) {
1649 context_->GetDiagnostics()->Error(DiagMessage() << "failed to write resource table");
1650 }
1651 return success;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001652 }
1653
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001654 int Run(const std::vector<std::string>& input_files) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001655 // Load the AndroidManifest.xml
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001656 std::unique_ptr<xml::XmlResource> manifest_xml =
1657 LoadXml(options_.manifest_path, context_->GetDiagnostics());
1658 if (!manifest_xml) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001659 return 1;
1660 }
1661
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001662 // First extract the Package name without modifying it (via --rename-manifest-package).
1663 if (Maybe<AppInfo> maybe_app_info =
1664 ExtractAppInfoFromManifest(manifest_xml.get(), context_->GetDiagnostics())) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001665 const AppInfo& app_info = maybe_app_info.value();
1666 context_->SetCompilationPackage(app_info.package);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001667 }
1668
Adam Lesinskic6284372017-12-04 13:46:23 -08001669 // Now that the compilation package is set, load the dependencies. This will also extract
1670 // the Android framework's versionCode and versionName, if they exist.
1671 if (!LoadSymbolsFromIncludePaths()) {
1672 return 1;
1673 }
1674
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001675 ManifestFixer manifest_fixer(options_.manifest_fixer_options);
1676 if (!manifest_fixer.Consume(context_, manifest_xml.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001677 return 1;
1678 }
1679
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001680 Maybe<AppInfo> maybe_app_info =
1681 ExtractAppInfoFromManifest(manifest_xml.get(), context_->GetDiagnostics());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001682 if (!maybe_app_info) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001683 return 1;
1684 }
1685
Adam Lesinski490595a2017-11-07 17:08:07 -08001686 app_info_ = maybe_app_info.value();
1687 context_->SetMinSdkVersion(app_info_.min_sdk_version.value_or_default(0));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001688
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001689 context_->SetNameManglerPolicy(NameManglerPolicy{context_->GetCompilationPackage()});
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001690
1691 // Override the package ID when it is "android".
1692 if (context_->GetCompilationPackage() == "android") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001693 context_->SetPackageId(0x01);
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001694
1695 // Verify we're building a regular app.
Adam Lesinskib522f042017-04-21 16:57:59 -07001696 if (context_->GetPackageType() != PackageType::kApp) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001697 context_->GetDiagnostics()->Error(
1698 DiagMessage() << "package 'android' can only be built as a regular app");
1699 return 1;
1700 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001701 }
1702
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001703 TableMergerOptions table_merger_options;
1704 table_merger_options.auto_add_overlay = options_.auto_add_overlay;
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001705 table_merger_ = util::make_unique<TableMerger>(context_, &final_table_, table_merger_options);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001706
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001707 if (context_->IsVerbose()) {
1708 context_->GetDiagnostics()->Note(DiagMessage()
Adam Lesinskif34b6f42017-03-03 16:33:26 -08001709 << StringPrintf("linking package '%s' using package ID %02x",
1710 context_->GetCompilationPackage().data(),
1711 context_->GetPackageId()));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001712 }
1713
Adam Lesinski2427dce2017-11-30 15:10:28 -08001714 // Extract symbols from AndroidManifest.xml, since this isn't merged like the other XML files
1715 // in res/**/*.
1716 {
1717 XmlIdCollector collector;
1718 if (!collector.Consume(context_, manifest_xml.get())) {
1719 return false;
1720 }
1721
1722 if (!MergeExportedSymbols(manifest_xml->file.source, manifest_xml->file.exported_symbols)) {
1723 return false;
1724 }
1725 }
1726
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001727 for (const std::string& input : input_files) {
1728 if (!MergePath(input, false)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001729 context_->GetDiagnostics()->Error(DiagMessage() << "failed parsing input");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001730 return 1;
1731 }
1732 }
1733
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001734 for (const std::string& input : options_.overlay_files) {
1735 if (!MergePath(input, true)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001736 context_->GetDiagnostics()->Error(DiagMessage() << "failed parsing overlays");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001737 return 1;
1738 }
1739 }
1740
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001741 if (!VerifyNoExternalPackages()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001742 return 1;
1743 }
1744
Adam Lesinskib522f042017-04-21 16:57:59 -07001745 if (context_->GetPackageType() != PackageType::kStaticLib) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001746 PrivateAttributeMover mover;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001747 if (!mover.Consume(context_, &final_table_)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001748 context_->GetDiagnostics()->Error(DiagMessage() << "failed moving private attributes");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001749 return 1;
1750 }
1751
1752 // Assign IDs if we are building a regular app.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001753 IdAssigner id_assigner(&options_.stable_id_map);
1754 if (!id_assigner.Consume(context_, &final_table_)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001755 context_->GetDiagnostics()->Error(DiagMessage() << "failed assigning IDs");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001756 return 1;
1757 }
1758
1759 // Now grab each ID and emit it as a file.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001760 if (options_.resource_id_map_path) {
1761 for (auto& package : final_table_.packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001762 for (auto& type : package->types) {
1763 for (auto& entry : type->entries) {
1764 ResourceName name(package->name, type->type, entry->name);
1765 // The IDs are guaranteed to exist.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001766 options_.stable_id_map[std::move(name)] =
1767 ResourceId(package->id.value(), type->id.value(), entry->id.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001768 }
1769 }
1770 }
1771
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001772 if (!WriteStableIdMapToPath(context_->GetDiagnostics(), options_.stable_id_map,
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001773 options_.resource_id_map_path.value())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001774 return 1;
1775 }
1776 }
1777 } else {
1778 // Static libs are merged with other apps, and ID collisions are bad, so
1779 // verify that
1780 // no IDs have been set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001781 if (!VerifyNoIdsSet()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001782 return 1;
1783 }
1784 }
1785
1786 // Add the names to mangle based on our source merge earlier.
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001787 context_->SetNameManglerPolicy(
1788 NameManglerPolicy{context_->GetCompilationPackage(), table_merger_->merged_packages()});
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001789
1790 // Add our table to the symbol table.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001791 context_->GetExternalSymbols()->PrependSource(
1792 util::make_unique<ResourceTableSymbolSource>(&final_table_));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001793
Adam Lesinski1e4b0e52017-04-27 15:01:10 -07001794 // Workaround for pre-O runtime that would treat negative resource IDs
1795 // (any ID with a package ID > 7f) as invalid. Intercept any ID (PPTTEEEE) with PP > 0x7f
1796 // and type == 'id', and return the ID 0x7fPPEEEE. IDs don't need to be real resources, they
1797 // are just identifiers.
1798 if (context_->GetMinSdkVersion() < SDK_O && context_->GetPackageType() == PackageType::kApp) {
1799 if (context_->IsVerbose()) {
1800 context_->GetDiagnostics()->Note(DiagMessage()
1801 << "enabling pre-O feature split ID rewriting");
1802 }
1803 context_->GetExternalSymbols()->SetDelegate(
1804 util::make_unique<FeatureSplitSymbolTableDelegate>(context_));
1805 }
1806
Adam Lesinski34a16872018-02-23 16:18:10 -08001807 // Before we process anything, remove the resources whose default values don't exist.
1808 // We want to force any references to these to fail the build.
1809 if (!NoDefaultResourceRemover{}.Consume(context_, &final_table_)) {
1810 context_->GetDiagnostics()->Error(DiagMessage()
1811 << "failed removing resources with no defaults");
1812 return 1;
1813 }
1814
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001815 ReferenceLinker linker;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001816 if (!linker.Consume(context_, &final_table_)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001817 context_->GetDiagnostics()->Error(DiagMessage() << "failed linking references");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001818 return 1;
1819 }
1820
Adam Lesinskib522f042017-04-21 16:57:59 -07001821 if (context_->GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001822 if (!options_.products.empty()) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001823 context_->GetDiagnostics()->Warn(DiagMessage()
1824 << "can't select products when building static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001825 }
1826 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001827 ProductFilter product_filter(options_.products);
1828 if (!product_filter.Consume(context_, &final_table_)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001829 context_->GetDiagnostics()->Error(DiagMessage() << "failed stripping products");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001830 return 1;
1831 }
1832 }
1833
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001834 if (!options_.no_auto_version) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001835 AutoVersioner versioner;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001836 if (!versioner.Consume(context_, &final_table_)) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001837 context_->GetDiagnostics()->Error(DiagMessage() << "failed versioning styles");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001838 return 1;
1839 }
1840 }
1841
Adam Lesinskib522f042017-04-21 16:57:59 -07001842 if (context_->GetPackageType() != PackageType::kStaticLib && context_->GetMinSdkVersion() > 0) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001843 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001844 context_->GetDiagnostics()->Note(DiagMessage()
1845 << "collapsing resource versions for minimum SDK "
1846 << context_->GetMinSdkVersion());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001847 }
1848
1849 VersionCollapser collapser;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001850 if (!collapser.Consume(context_, &final_table_)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001851 return 1;
1852 }
1853 }
1854
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001855 if (!options_.no_resource_deduping) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001856 ResourceDeduper deduper;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001857 if (!deduper.Consume(context_, &final_table_)) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001858 context_->GetDiagnostics()->Error(DiagMessage() << "failed deduping resources");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001859 return 1;
1860 }
1861 }
1862
Adam Koskidc21dea2017-07-21 10:55:27 -07001863 proguard::KeepSet proguard_keep_set =
1864 proguard::KeepSet(options_.generate_conditional_proguard_rules);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001865 proguard::KeepSet proguard_main_dex_keep_set;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001866
Adam Lesinskib522f042017-04-21 16:57:59 -07001867 if (context_->GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001868 if (options_.table_splitter_options.config_filter != nullptr ||
Pierre Lecesne672384b2017-02-06 10:29:02 +00001869 !options_.table_splitter_options.preferred_densities.empty()) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08001870 context_->GetDiagnostics()->Warn(DiagMessage()
1871 << "can't strip resources when building static library");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001872 }
1873 } else {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001874 // Adjust the SplitConstraints so that their SDK version is stripped if it is less than or
1875 // equal to the minSdk.
1876 options_.split_constraints =
1877 AdjustSplitConstraintsForMinSdk(context_->GetMinSdkVersion(), options_.split_constraints);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001878
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001879 TableSplitter table_splitter(options_.split_constraints, options_.table_splitter_options);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001880 if (!table_splitter.VerifySplitConstraints(context_)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001881 return 1;
1882 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001883 table_splitter.SplitTable(&final_table_);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001884
1885 // Now we need to write out the Split APKs.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001886 auto path_iter = options_.split_paths.begin();
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001887 auto split_constraints_iter = options_.split_constraints.begin();
1888 for (std::unique_ptr<ResourceTable>& split_table : table_splitter.splits()) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001889 if (context_->IsVerbose()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001890 context_->GetDiagnostics()->Note(DiagMessage(*path_iter)
1891 << "generating split with configurations '"
1892 << util::Joiner(split_constraints_iter->configs, ", ")
1893 << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001894 }
1895
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001896 std::unique_ptr<IArchiveWriter> archive_writer = MakeArchiveWriter(*path_iter);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001897 if (!archive_writer) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001898 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create archive");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001899 return 1;
1900 }
1901
1902 // Generate an AndroidManifest.xml for each split.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001903 std::unique_ptr<xml::XmlResource> split_manifest =
Adam Lesinski490595a2017-11-07 17:08:07 -08001904 GenerateSplitManifest(app_info_, *split_constraints_iter);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001905
1906 XmlReferenceLinker linker;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001907 if (!linker.Consume(context_, split_manifest.get())) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001908 context_->GetDiagnostics()->Error(DiagMessage()
1909 << "failed to create Split AndroidManifest.xml");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001910 return 1;
1911 }
1912
Adam Lesinskid0f492d2017-04-03 18:12:45 -07001913 if (!WriteApk(archive_writer.get(), &proguard_keep_set, split_manifest.get(),
1914 split_table.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001915 return 1;
1916 }
1917
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001918 ++path_iter;
1919 ++split_constraints_iter;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001920 }
1921 }
1922
1923 // Start writing the base APK.
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001924 std::unique_ptr<IArchiveWriter> archive_writer = MakeArchiveWriter(options_.output_path);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001925 if (!archive_writer) {
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001926 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create archive");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001927 return 1;
1928 }
1929
1930 bool error = false;
1931 {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001932 // AndroidManifest.xml has no resource name, but the CallSite is built from the name
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001933 // (aka, which package the AndroidManifest.xml is coming from).
1934 // So we give it a package name so it can see local resources.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001935 manifest_xml->file.name.package = context_->GetCompilationPackage();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001936
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001937 XmlReferenceLinker manifest_linker;
1938 if (manifest_linker.Consume(context_, manifest_xml.get())) {
1939 if (options_.generate_proguard_rules_path &&
Adam Koskidc21dea2017-07-21 10:55:27 -07001940 !proguard::CollectProguardRulesForManifest(manifest_xml.get(), &proguard_keep_set)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001941 error = true;
1942 }
1943
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001944 if (options_.generate_main_dex_proguard_rules_path &&
Adam Koskidc21dea2017-07-21 10:55:27 -07001945 !proguard::CollectProguardRulesForManifest(manifest_xml.get(),
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001946 &proguard_main_dex_keep_set, true)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001947 error = true;
Alexandria Cornwall637b4822016-08-11 09:53:16 -07001948 }
1949
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001950 if (options_.generate_java_class_path) {
1951 if (!WriteManifestJavaFile(manifest_xml.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001952 error = true;
1953 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001954 }
1955
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001956 if (options_.no_xml_namespaces) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001957 // PackageParser will fail if URIs are removed from
1958 // AndroidManifest.xml.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001959 XmlNamespaceRemover namespace_remover(true /* keepUris */);
1960 if (!namespace_remover.Consume(context_, manifest_xml.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001961 error = true;
1962 }
Rohit Agrawale49bb302016-04-22 12:27:55 -07001963 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001964 } else {
1965 error = true;
1966 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001967 }
Adam Lesinskifb48d292015-11-07 15:52:13 -08001968
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001969 if (error) {
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001970 context_->GetDiagnostics()->Error(DiagMessage() << "failed processing manifest");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001971 return 1;
1972 }
Adam Lesinskia6fe3452015-12-09 15:20:52 -08001973
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07001974 if (!WriteApk(archive_writer.get(), &proguard_keep_set, manifest_xml.get(), &final_table_)) {
1975 return 1;
1976 }
1977
1978 if (!CopyAssetsDirsToApk(archive_writer.get())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001979 return 1;
1980 }
Adam Lesinskifb48d292015-11-07 15:52:13 -08001981
Izabela Orlowska23a6e1e2017-12-05 14:52:07 +00001982 if (options_.generate_java_class_path || options_.generate_text_symbols_path) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001983 if (!GenerateJavaClasses()) {
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001984 return 1;
1985 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001986 }
1987
Adam Lesinskib5dc4bd2017-02-22 19:29:29 -08001988 if (!WriteProguardFile(options_.generate_proguard_rules_path, proguard_keep_set)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001989 return 1;
1990 }
1991
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001992 if (!WriteProguardFile(options_.generate_main_dex_proguard_rules_path,
1993 proguard_main_dex_keep_set)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001994 return 1;
1995 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001996 return 0;
1997 }
1998
1999 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002000 LinkOptions options_;
2001 LinkContext* context_;
2002 ResourceTable final_table_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002003
Adam Lesinski490595a2017-11-07 17:08:07 -08002004 AppInfo app_info_;
2005
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002006 std::unique_ptr<TableMerger> table_merger_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002007
2008 // A pointer to the FileCollection representing the filesystem (not archives).
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002009 std::unique_ptr<io::FileCollection> file_collection_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002010
Adam Lesinski8780eb62017-10-31 17:44:39 -07002011 // A vector of IFileCollections. This is mainly here to retain ownership of the
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002012 // collections.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002013 std::vector<std::unique_ptr<io::IFileCollection>> collections_;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002014
Adam Lesinski8780eb62017-10-31 17:44:39 -07002015 // The set of merged APKs. This is mainly here to retain ownership of the APKs.
2016 std::vector<std::unique_ptr<LoadedApk>> merged_apks_;
2017
2018 // The set of included APKs (not merged). This is mainly here to retain ownership of the APKs.
2019 std::vector<std::unique_ptr<LoadedApk>> static_library_includes_;
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08002020
2021 // The set of shared libraries being used, mapping their assigned package ID to package name.
2022 std::map<size_t, std::string> shared_libs_;
Adam Lesinski490595a2017-11-07 17:08:07 -08002023
2024 // The package name of the base application, if it is included.
2025 Maybe<std::string> included_feature_base_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002026};
2027
Chris Warrington820d72a2017-04-27 15:27:01 +01002028int Link(const std::vector<StringPiece>& args, IDiagnostics* diagnostics) {
2029 LinkContext context(diagnostics);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002030 LinkOptions options;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002031 std::vector<std::string> overlay_arg_list;
2032 std::vector<std::string> extra_java_packages;
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002033 Maybe<std::string> package_id;
Adam Lesinski113ee092017-04-03 19:38:25 -07002034 std::vector<std::string> configs;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002035 Maybe<std::string> preferred_density;
2036 Maybe<std::string> product_list;
2037 bool legacy_x_flag = false;
2038 bool require_localization = false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002039 bool verbose = false;
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -08002040 bool shared_lib = false;
2041 bool static_lib = false;
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002042 bool proto_format = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002043 Maybe<std::string> stable_id_file_path;
2044 std::vector<std::string> split_args;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002045 Flags flags =
2046 Flags()
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002047 .RequiredFlag("-o", "Output path.", &options.output_path)
2048 .RequiredFlag("--manifest", "Path to the Android manifest to build.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002049 &options.manifest_path)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002050 .OptionalFlagList("-I", "Adds an Android APK to link against.", &options.include_paths)
Adam Lesinskib39ad7c2017-03-13 11:40:48 -07002051 .OptionalFlagList("-A",
2052 "An assets directory to include in the APK. These are unprocessed.",
2053 &options.assets_dirs)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002054 .OptionalFlagList("-R",
2055 "Compilation unit to link, using `overlay` semantics.\n"
2056 "The last conflicting resource given takes precedence.",
2057 &overlay_arg_list)
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002058 .OptionalFlag("--package-id",
2059 "Specify the package ID to use for this app. Must be greater or equal to\n"
2060 "0x7f and can't be used with --static-lib or --shared-lib.",
2061 &package_id)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002062 .OptionalFlag("--java", "Directory in which to generate R.java.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002063 &options.generate_java_class_path)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002064 .OptionalFlag("--proguard", "Output file for generated Proguard rules.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002065 &options.generate_proguard_rules_path)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002066 .OptionalFlag("--proguard-main-dex",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002067 "Output file for generated Proguard rules for the main dex.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002068 &options.generate_main_dex_proguard_rules_path)
Adam Koskidc21dea2017-07-21 10:55:27 -07002069 .OptionalSwitch("--proguard-conditional-keep-rules",
2070 "Generate conditional Proguard keep rules.",
2071 &options.generate_conditional_proguard_rules)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002072 .OptionalSwitch("--no-auto-version",
2073 "Disables automatic style and layout SDK versioning.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002074 &options.no_auto_version)
2075 .OptionalSwitch("--no-version-vectors",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002076 "Disables automatic versioning of vector drawables. Use this only\n"
2077 "when building with vector drawable support library.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002078 &options.no_version_vectors)
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002079 .OptionalSwitch("--no-version-transitions",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002080 "Disables automatic versioning of transition resources. Use this only\n"
2081 "when building with transition support library.",
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002082 &options.no_version_transitions)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002083 .OptionalSwitch("--no-resource-deduping",
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002084 "Disables automatic deduping of resources with\n"
2085 "identical values across compatible configurations.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002086 &options.no_resource_deduping)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002087 .OptionalSwitch("--enable-sparse-encoding",
2088 "Enables encoding sparse entries using a binary search tree.\n"
2089 "This decreases APK size at the cost of resource retrieval performance.",
2090 &options.table_flattener_options.use_sparse_entries)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002091 .OptionalSwitch("-x", "Legacy flag that specifies to use the package identifier 0x01.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002092 &legacy_x_flag)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002093 .OptionalSwitch("-z", "Require localization of strings marked 'suggested'.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002094 &require_localization)
Adam Lesinski113ee092017-04-03 19:38:25 -07002095 .OptionalFlagList("-c",
Adam Lesinski418763f2017-04-11 17:36:53 -07002096 "Comma separated list of configurations to include. The default\n"
2097 "is all configurations.",
2098 &configs)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002099 .OptionalFlag("--preferred-density",
2100 "Selects the closest matching density and strips out all others.",
2101 &preferred_density)
2102 .OptionalFlag("--product", "Comma separated list of product names to keep", &product_list)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002103 .OptionalSwitch("--output-to-dir",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002104 "Outputs the APK contents to a directory specified by -o.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002105 &options.output_to_directory)
2106 .OptionalSwitch("--no-xml-namespaces",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002107 "Removes XML namespace prefix and URI information from\n"
2108 "AndroidManifest.xml and XML binaries in res/*.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002109 &options.no_xml_namespaces)
2110 .OptionalFlag("--min-sdk-version",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002111 "Default minimum SDK version to use for AndroidManifest.xml.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002112 &options.manifest_fixer_options.min_sdk_version_default)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002113 .OptionalFlag("--target-sdk-version",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002114 "Default target SDK version to use for AndroidManifest.xml.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002115 &options.manifest_fixer_options.target_sdk_version_default)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002116 .OptionalFlag("--version-code",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002117 "Version code (integer) to inject into the AndroidManifest.xml if none is\n"
2118 "present.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002119 &options.manifest_fixer_options.version_code_default)
2120 .OptionalFlag("--version-name",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002121 "Version name to inject into the AndroidManifest.xml if none is present.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002122 &options.manifest_fixer_options.version_name_default)
Colin Crossda02fea2018-05-25 22:46:35 -07002123 .OptionalSwitch("--replace-version",
2124 "If --version-code and/or --version-name are specified, these\n"
2125 "values will replace any value already in the manifest. By\n"
2126 "default, nothing is changed if the manifest already defines\n"
2127 "these attributes.",
2128 &options.manifest_fixer_options.replace_version)
Todd Kennedy9f6dec12018-04-20 12:29:29 -07002129 .OptionalFlag("--compile-sdk-version-code",
2130 "Version code (integer) to inject into the AndroidManifest.xml if none is\n"
2131 "present.",
2132 &options.manifest_fixer_options.compile_sdk_version)
2133 .OptionalFlag("--compile-sdk-version-name",
2134 "Version name to inject into the AndroidManifest.xml if none is present.",
2135 &options.manifest_fixer_options.compile_sdk_version_codename)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002136 .OptionalSwitch("--shared-lib", "Generates a shared Android runtime library.",
2137 &shared_lib)
2138 .OptionalSwitch("--static-lib", "Generate a static Android library.", &static_lib)
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002139 .OptionalSwitch("--proto-format",
2140 "Generates compiled resources in Protobuf format.\n"
2141 "Suitable as input to the bundle tool for generating an App Bundle.",
2142 &proto_format)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002143 .OptionalSwitch("--no-static-lib-packages",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002144 "Merge all library resources under the app's package.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002145 &options.no_static_lib_packages)
2146 .OptionalSwitch("--non-final-ids",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002147 "Generates R.java without the final modifier. This is implied when\n"
2148 "--static-lib is specified.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002149 &options.generate_non_final_ids)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002150 .OptionalFlag("--stable-ids", "File containing a list of name to ID mapping.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002151 &stable_id_file_path)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002152 .OptionalFlag("--emit-ids",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002153 "Emit a file at the given path with a list of name to ID mappings,\n"
2154 "suitable for use with --stable-ids.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002155 &options.resource_id_map_path)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002156 .OptionalFlag("--private-symbols",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002157 "Package name to use when generating R.java for private symbols.\n"
2158 "If not specified, public and private symbols will use the application's\n"
2159 "package name.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002160 &options.private_symbols)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002161 .OptionalFlag("--custom-package", "Custom Java package under which to generate R.java.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002162 &options.custom_java_package)
2163 .OptionalFlagList("--extra-packages",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002164 "Generate the same R.java but with different package names.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002165 &extra_java_packages)
2166 .OptionalFlagList("--add-javadoc-annotation",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002167 "Adds a JavaDoc annotation to all generated Java classes.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002168 &options.javadoc_annotations)
Adam Lesinski418763f2017-04-11 17:36:53 -07002169 .OptionalFlag("--output-text-symbols",
2170 "Generates a text file containing the resource symbols of the R class in\n"
2171 "the specified folder.",
2172 &options.generate_text_symbols_path)
Todd Kennedy32512992018-04-25 16:45:59 -07002173 .OptionalSwitch("--allow-reserved-package-id",
2174 "Allows the use of a reserved package ID. This should on be used for\n"
2175 "packages with a pre-O min-sdk\n",
2176 &options.allow_reserved_package_id)
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002177 .OptionalSwitch("--auto-add-overlay",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002178 "Allows the addition of new resources in overlays without\n"
2179 "<add-resource> tags.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002180 &options.auto_add_overlay)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002181 .OptionalFlag("--rename-manifest-package", "Renames the package in AndroidManifest.xml.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002182 &options.manifest_fixer_options.rename_manifest_package)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002183 .OptionalFlag("--rename-instrumentation-target-package",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002184 "Changes the name of the target package for instrumentation. Most useful\n"
2185 "when used in conjunction with --rename-manifest-package.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002186 &options.manifest_fixer_options.rename_instrumentation_target_package)
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002187 .OptionalFlagList("-0", "File extensions not to compress.",
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002188 &options.extensions_to_not_compress)
Izabela Orlowskaad9e1322017-12-19 16:22:42 +00002189 .OptionalSwitch("--warn-manifest-validation",
2190 "Treat manifest validation errors as warnings.",
2191 &options.manifest_fixer_options.warn_validation)
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002192 .OptionalFlagList("--split",
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002193 "Split resources matching a set of configs out to a Split APK.\n"
Adam Lesinskidb091572017-04-13 12:48:56 -07002194 "Syntax: path/to/output.apk:<config>[,<config>[...]].\n"
2195 "On Windows, use a semicolon ';' separator instead.",
Adam Lesinskic8f71aa2017-02-08 07:03:50 -08002196 &split_args)
Ryan Mitchelle5b38a62018-03-23 13:35:00 -07002197 .OptionalSwitch("-v", "Enables verbose logging.", &verbose)
2198 .OptionalSwitch("--debug-mode",
2199 "Inserts android:debuggable=\"true\" in to the application node of the\n"
2200 "manifest, making the application debuggable even on production devices.",
2201 &options.manifest_fixer_options.debug_mode);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002202
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002203 if (!flags.Parse("aapt2 link", args, &std::cerr)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002204 return 1;
2205 }
2206
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002207 // Expand all argument-files passed into the command line. These start with '@'.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002208 std::vector<std::string> arg_list;
2209 for (const std::string& arg : flags.GetArgs()) {
2210 if (util::StartsWith(arg, "@")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002211 const std::string path = arg.substr(1, arg.size() - 1);
2212 std::string error;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002213 if (!file::AppendArgsFromFile(path, &arg_list, &error)) {
2214 context.GetDiagnostics()->Error(DiagMessage(path) << error);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002215 return 1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002216 }
2217 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002218 arg_list.push_back(arg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002219 }
2220 }
2221
2222 // Expand all argument-files passed to -R.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002223 for (const std::string& arg : overlay_arg_list) {
2224 if (util::StartsWith(arg, "@")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002225 const std::string path = arg.substr(1, arg.size() - 1);
2226 std::string error;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002227 if (!file::AppendArgsFromFile(path, &options.overlay_files, &error)) {
2228 context.GetDiagnostics()->Error(DiagMessage(path) << error);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002229 return 1;
2230 }
2231 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002232 options.overlay_files.push_back(arg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002233 }
2234 }
2235
2236 if (verbose) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002237 context.SetVerbose(verbose);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002238 }
2239
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002240 if (int{shared_lib} + int{static_lib} + int{proto_format} > 1) {
2241 context.GetDiagnostics()->Error(
2242 DiagMessage()
2243 << "only one of --shared-lib, --static-lib, or --proto_format can be defined");
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002244 return 1;
2245 }
2246
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002247 // The default build type.
2248 context.SetPackageType(PackageType::kApp);
2249 context.SetPackageId(kAppPackageId);
2250
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002251 if (shared_lib) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002252 context.SetPackageType(PackageType::kSharedLib);
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002253 context.SetPackageId(0x00);
2254 } else if (static_lib) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002255 context.SetPackageType(PackageType::kStaticLib);
Adam Lesinskie59f0d82017-10-13 09:36:53 -07002256 options.output_format = OutputFormat::kProto;
2257 } else if (proto_format) {
2258 options.output_format = OutputFormat::kProto;
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002259 }
2260
2261 if (package_id) {
Adam Lesinskib522f042017-04-21 16:57:59 -07002262 if (context.GetPackageType() != PackageType::kApp) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002263 context.GetDiagnostics()->Error(
2264 DiagMessage() << "can't specify --package-id when not building a regular app");
2265 return 1;
2266 }
2267
2268 const Maybe<uint32_t> maybe_package_id_int = ResourceUtils::ParseInt(package_id.value());
2269 if (!maybe_package_id_int) {
2270 context.GetDiagnostics()->Error(DiagMessage() << "package ID '" << package_id.value()
2271 << "' is not a valid integer");
2272 return 1;
2273 }
2274
2275 const uint32_t package_id_int = maybe_package_id_int.value();
Todd Kennedy32512992018-04-25 16:45:59 -07002276 if (package_id_int > std::numeric_limits<uint8_t>::max()
2277 || package_id_int == kFrameworkPackageId
2278 || (!options.allow_reserved_package_id && package_id_int < kAppPackageId)) {
Adam Lesinskif34b6f42017-03-03 16:33:26 -08002279 context.GetDiagnostics()->Error(
2280 DiagMessage() << StringPrintf(
2281 "invalid package ID 0x%02x. Must be in the range 0x7f-0xff.", package_id_int));
2282 return 1;
2283 }
2284 context.SetPackageId(static_cast<uint8_t>(package_id_int));
2285 }
2286
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002287 // Populate the set of extra packages for which to generate R.java.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002288 for (std::string& extra_package : extra_java_packages) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002289 // A given package can actually be a colon separated list of packages.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002290 for (StringPiece package : util::Split(extra_package, ':')) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08002291 options.extra_java_packages.insert(package.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002292 }
2293 }
2294
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002295 if (product_list) {
2296 for (StringPiece product : util::Tokenize(product_list.value(), ',')) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002297 if (product != "" && product != "default") {
Adam Lesinskid5083f62017-01-16 15:07:21 -08002298 options.products.insert(product.to_string());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002299 }
2300 }
2301 }
2302
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002303 std::unique_ptr<IConfigFilter> filter;
Mihai Nitaf4dacf22017-04-07 08:25:06 -07002304 if (!configs.empty()) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002305 filter = ParseConfigFilterParameters(configs, context.GetDiagnostics());
2306 if (filter == nullptr) {
2307 return 1;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002308 }
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002309 options.table_splitter_options.config_filter = filter.get();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002310 }
2311
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002312 if (preferred_density) {
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002313 Maybe<uint16_t> density =
2314 ParseTargetDensityParameter(preferred_density.value(), context.GetDiagnostics());
2315 if (!density) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002316 return 1;
Adam Lesinskic51562c2016-04-28 11:12:38 -07002317 }
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002318 options.table_splitter_options.preferred_densities.push_back(density.value());
2319 }
Adam Lesinskic51562c2016-04-28 11:12:38 -07002320
Adam Lesinskid0f492d2017-04-03 18:12:45 -07002321 // Parse the split parameters.
2322 for (const std::string& split_arg : split_args) {
2323 options.split_paths.push_back({});
2324 options.split_constraints.push_back({});
2325 if (!ParseSplitParameter(split_arg, context.GetDiagnostics(), &options.split_paths.back(),
2326 &options.split_constraints.back())) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002327 return 1;
Adam Lesinski1e21ff02016-06-24 14:57:58 -07002328 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002329 }
Adam Lesinski1e21ff02016-06-24 14:57:58 -07002330
Adam Lesinskib522f042017-04-21 16:57:59 -07002331 if (context.GetPackageType() != PackageType::kStaticLib && stable_id_file_path) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002332 if (!LoadStableIdMap(context.GetDiagnostics(), stable_id_file_path.value(),
2333 &options.stable_id_map)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002334 return 1;
Adam Lesinski64587af2016-02-18 18:33:06 -08002335 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002336 }
Adam Lesinski64587af2016-02-18 18:33:06 -08002337
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002338 // Populate some default no-compress extensions that are already compressed.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002339 options.extensions_to_not_compress.insert(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002340 {".jpg", ".jpeg", ".png", ".gif", ".wav", ".mp2", ".mp3", ".ogg",
2341 ".aac", ".mpg", ".mpeg", ".mid", ".midi", ".smf", ".jet", ".rtttl",
2342 ".imy", ".xmf", ".mp4", ".m4a", ".m4v", ".3gp", ".3gpp", ".3g2",
2343 ".3gpp2", ".amr", ".awb", ".wma", ".wmv", ".webm", ".mkv"});
2344
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002345 // Turn off auto versioning for static-libs.
Adam Lesinskib522f042017-04-21 16:57:59 -07002346 if (context.GetPackageType() == PackageType::kStaticLib) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002347 options.no_auto_version = true;
2348 options.no_version_vectors = true;
Yuichi Araki4d35cca2017-01-18 20:42:17 +09002349 options.no_version_transitions = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002350 }
Adam Lesinskie4bb9eb2016-02-12 22:18:51 -08002351
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002352 LinkCommand cmd(&context, options);
Adam Lesinskice5e56e2016-10-21 17:56:45 -07002353 return cmd.Run(arg_list);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07002354}
2355
Adam Lesinskicacb28f2016-10-19 12:18:14 -07002356} // namespace aapt