blob: 0271d8bad37a696c5350bab227e5cde1abce7cd8 [file] [log] [blame]
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001/*
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 Lesinski6f6ceb72014-11-14 14:48:12 -080017#include "ResourceParser.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070018
19#include <functional>
Adam Lesinski73bff1e2017-12-08 16:06:10 -080020#include <limits>
Adam Lesinskice5e56e2016-10-21 17:56:45 -070021#include <sstream>
22
23#include "android-base/logging.h"
24
Adam Lesinski1ab598f2015-08-14 14:26:04 -070025#include "ResourceTable.h"
26#include "ResourceUtils.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080027#include "ResourceValues.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070028#include "ValueVisitor.h"
Adam Lesinski2eed52e2018-02-21 15:55:58 -080029#include "text/Utf8Iterator.h"
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080030#include "util/ImmutableMap.h"
Adam Lesinski75421622017-01-06 15:20:04 -080031#include "util/Maybe.h"
Adam Lesinski9e10ac72015-10-16 14:37:48 -070032#include "util/Util.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080033#include "xml/XmlPullParser.h"
Adam Lesinski9e10ac72015-10-16 14:37:48 -070034
Adam Lesinski2eed52e2018-02-21 15:55:58 -080035using ::aapt::ResourceUtils::StringBuilder;
36using ::aapt::text::Utf8Iterator;
Adam Lesinski71be7052017-12-12 16:48:07 -080037using ::android::StringPiece;
Adam Lesinskid5083f62017-01-16 15:07:21 -080038
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080039namespace aapt {
40
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070041constexpr const char* sXliffNamespaceUri = "urn:oasis:names:tc:xliff:document:1.2";
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080042
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070043// Returns true if the element is <skip> or <eat-comment> and can be safely ignored.
44static bool ShouldIgnoreElement(const StringPiece& ns, const StringPiece& name) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070045 return ns.empty() && (name == "skip" || name == "eat-comment");
Adam Lesinski27afb9e2015-11-06 18:25:04 -080046}
47
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070048static uint32_t ParseFormatTypeNoEnumsOrFlags(const StringPiece& piece) {
49 if (piece == "reference") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070050 return android::ResTable_map::TYPE_REFERENCE;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070051 } else if (piece == "string") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070052 return android::ResTable_map::TYPE_STRING;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070053 } else if (piece == "integer") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070054 return android::ResTable_map::TYPE_INTEGER;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070055 } else if (piece == "boolean") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070056 return android::ResTable_map::TYPE_BOOLEAN;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070057 } else if (piece == "color") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070058 return android::ResTable_map::TYPE_COLOR;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070059 } else if (piece == "float") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070060 return android::ResTable_map::TYPE_FLOAT;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070061 } else if (piece == "dimension") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070062 return android::ResTable_map::TYPE_DIMENSION;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070063 } else if (piece == "fraction") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070064 return android::ResTable_map::TYPE_FRACTION;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070065 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -070066 return 0;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080067}
68
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070069static uint32_t ParseFormatType(const StringPiece& piece) {
70 if (piece == "enum") {
71 return android::ResTable_map::TYPE_ENUM;
72 } else if (piece == "flags") {
73 return android::ResTable_map::TYPE_FLAGS;
74 }
75 return ParseFormatTypeNoEnumsOrFlags(piece);
76}
77
Adam Lesinskice5e56e2016-10-21 17:56:45 -070078static uint32_t ParseFormatAttribute(const StringPiece& str) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070079 uint32_t mask = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070080 for (StringPiece part : util::Tokenize(str, '|')) {
81 StringPiece trimmed_part = util::TrimWhitespace(part);
82 uint32_t type = ParseFormatType(trimmed_part);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070083 if (type == 0) {
84 return 0;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080085 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -070086 mask |= type;
87 }
88 return mask;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080089}
90
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070091// A parsed resource ready to be added to the ResourceTable.
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080092struct ParsedResource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070093 ResourceName name;
94 ConfigDescription config;
95 std::string product;
96 Source source;
Adam Lesinski71be7052017-12-12 16:48:07 -080097
Adam Lesinskicacb28f2016-10-19 12:18:14 -070098 ResourceId id;
Adam Lesinski71be7052017-12-12 16:48:07 -080099 Visibility::Level visibility_level = Visibility::Level::kUndefined;
Adam Lesinski4488f1c2017-05-26 17:33:38 -0700100 bool allow_new = false;
Adam Lesinski71be7052017-12-12 16:48:07 -0800101 bool overlayable = false;
102
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700103 std::string comment;
104 std::unique_ptr<Value> value;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700105 std::list<ParsedResource> child_resources;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800106};
107
108// Recursively adds resources to the ResourceTable.
Adam Lesinski4488f1c2017-05-26 17:33:38 -0700109static bool AddResourcesToTable(ResourceTable* table, IDiagnostics* diag, ParsedResource* res) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700110 StringPiece trimmed_comment = util::TrimWhitespace(res->comment);
111 if (trimmed_comment.size() != res->comment.size()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700112 // Only if there was a change do we re-assign.
Adam Lesinskid5083f62017-01-16 15:07:21 -0800113 res->comment = trimmed_comment.to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700114 }
Adam Lesinski7656554f2016-03-10 21:55:04 -0800115
Adam Lesinski71be7052017-12-12 16:48:07 -0800116 if (res->visibility_level != Visibility::Level::kUndefined) {
117 Visibility visibility;
118 visibility.level = res->visibility_level;
119 visibility.source = res->source;
120 visibility.comment = res->comment;
121 if (!table->SetVisibilityWithId(res->name, visibility, res->id, diag)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700122 return false;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800123 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700124 }
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800125
Adam Lesinski71be7052017-12-12 16:48:07 -0800126 if (res->allow_new) {
127 AllowNew allow_new;
128 allow_new.source = res->source;
129 allow_new.comment = res->comment;
130 if (!table->SetAllowNew(res->name, allow_new, diag)) {
131 return false;
132 }
133 }
134
135 if (res->overlayable) {
136 Overlayable overlayable;
137 overlayable.source = res->source;
138 overlayable.comment = res->comment;
139 if (!table->SetOverlayable(res->name, overlayable, diag)) {
140 return false;
141 }
142 }
143
144 if (res->value != nullptr) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700145 // Attach the comment, source and config to the value.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700146 res->value->SetComment(std::move(res->comment));
147 res->value->SetSource(std::move(res->source));
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800148
Adam Lesinski71be7052017-12-12 16:48:07 -0800149 if (!table->AddResourceWithId(res->name, res->id, res->config, res->product,
150 std::move(res->value), diag)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700151 return false;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800152 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700153 }
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800154
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700155 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700156 for (ParsedResource& child : res->child_resources) {
157 error |= !AddResourcesToTable(table, diag, &child);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700158 }
159 return !error;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800160}
161
162// Convenient aliases for more readable function calls.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700163enum { kAllowRawString = true, kNoRawString = false };
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800164
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700165ResourceParser::ResourceParser(IDiagnostics* diag, ResourceTable* table,
166 const Source& source,
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700167 const ConfigDescription& config,
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700168 const ResourceParserOptions& options)
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700169 : diag_(diag),
170 table_(table),
171 source_(source),
172 config_(config),
173 options_(options) {}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800174
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800175// Base class Node for representing the various Spans and UntranslatableSections of an XML string.
176// This will be used to traverse and flatten the XML string into a single std::string, with all
177// Span and Untranslatable data maintained in parallel, as indices into the string.
178class Node {
179 public:
180 virtual ~Node() = default;
181
182 // Adds the given child node to this parent node's set of child nodes, moving ownership to the
183 // parent node as well.
184 // Returns a pointer to the child node that was added as a convenience.
185 template <typename T>
186 T* AddChild(std::unique_ptr<T> node) {
187 T* raw_ptr = node.get();
188 children.push_back(std::move(node));
189 return raw_ptr;
190 }
191
192 virtual void Build(StringBuilder* builder) const {
193 for (const auto& child : children) {
194 child->Build(builder);
195 }
196 }
197
198 std::vector<std::unique_ptr<Node>> children;
199};
200
201// A chunk of text in the XML string. This lives between other tags, such as XLIFF tags and Spans.
202class SegmentNode : public Node {
203 public:
204 std::string data;
205
206 void Build(StringBuilder* builder) const override {
207 builder->AppendText(data);
208 }
209};
210
211// A tag that will be encoded into the final flattened string. Tags like <b> or <i>.
212class SpanNode : public Node {
213 public:
214 std::string name;
215
216 void Build(StringBuilder* builder) const override {
217 StringBuilder::SpanHandle span_handle = builder->StartSpan(name);
218 Node::Build(builder);
219 builder->EndSpan(span_handle);
220 }
221};
222
223// An XLIFF 'g' tag, which marks a section of the string as untranslatable.
224class UntranslatableNode : public Node {
225 public:
226 void Build(StringBuilder* builder) const override {
227 StringBuilder::UntranslatableHandle handle = builder->StartUntranslatable();
228 Node::Build(builder);
229 builder->EndUntranslatable(handle);
230 }
231};
232
233// Build a string from XML that converts nested elements into Span objects.
Adam Lesinski75421622017-01-06 15:20:04 -0800234bool ResourceParser::FlattenXmlSubtree(
235 xml::XmlPullParser* parser, std::string* out_raw_string, StyleString* out_style_string,
236 std::vector<UntranslatableSection>* out_untranslatable_sections) {
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800237 std::string raw_string;
238 std::string current_text;
Adam Lesinski75421622017-01-06 15:20:04 -0800239
240 // The first occurrence of a <xliff:g> tag. Nested <xliff:g> tags are illegal.
241 Maybe<size_t> untranslatable_start_depth;
242
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800243 Node root;
244 std::vector<Node*> node_stack;
245 node_stack.push_back(&root);
246
247 bool saw_span_node = false;
248 SegmentNode* first_segment = nullptr;
249 SegmentNode* last_segment = nullptr;
250
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700251 size_t depth = 1;
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800252 while (depth > 0 && xml::XmlPullParser::IsGoodEvent(parser->Next())) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700253 const xml::XmlPullParser::Event event = parser->event();
Adam Lesinski75421622017-01-06 15:20:04 -0800254
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800255 // First take care of any SegmentNodes that should be created.
256 if (event == xml::XmlPullParser::Event::kStartElement ||
257 event == xml::XmlPullParser::Event::kEndElement) {
258 if (!current_text.empty()) {
259 std::unique_ptr<SegmentNode> segment_node = util::make_unique<SegmentNode>();
260 segment_node->data = std::move(current_text);
261 last_segment = node_stack.back()->AddChild(std::move(segment_node));
262 if (first_segment == nullptr) {
263 first_segment = last_segment;
Adam Lesinski75421622017-01-06 15:20:04 -0800264 }
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800265 current_text = {};
266 }
267 }
Adam Lesinski75421622017-01-06 15:20:04 -0800268
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800269 switch (event) {
270 case xml::XmlPullParser::Event::kText: {
271 current_text += parser->text();
272 raw_string += parser->text();
273 } break;
Adam Lesinski75421622017-01-06 15:20:04 -0800274
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800275 case xml::XmlPullParser::Event::kStartElement: {
276 if (parser->element_namespace().empty()) {
277 // This is an HTML tag which we encode as a span. Add it to the span stack.
278 std::unique_ptr<SpanNode> span_node = util::make_unique<SpanNode>();
279 span_node->name = parser->element_name();
280 const auto end_attr_iter = parser->end_attributes();
281 for (auto attr_iter = parser->begin_attributes(); attr_iter != end_attr_iter;
282 ++attr_iter) {
283 span_node->name += ";";
284 span_node->name += attr_iter->name;
285 span_node->name += "=";
286 span_node->name += attr_iter->value;
Adam Lesinski75421622017-01-06 15:20:04 -0800287 }
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800288
289 node_stack.push_back(node_stack.back()->AddChild(std::move(span_node)));
290 saw_span_node = true;
291 } else if (parser->element_namespace() == sXliffNamespaceUri) {
292 // This is an XLIFF tag, which is not encoded as a span.
293 if (parser->element_name() == "g") {
294 // Check that an 'untranslatable' tag is not already being processed. Nested
295 // <xliff:g> tags are illegal.
296 if (untranslatable_start_depth) {
297 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
298 << "illegal nested XLIFF 'g' tag");
299 return false;
300 } else {
301 // Mark the beginning of an 'untranslatable' section.
302 untranslatable_start_depth = depth;
303 node_stack.push_back(
304 node_stack.back()->AddChild(util::make_unique<UntranslatableNode>()));
305 }
306 } else {
307 // Ignore unknown XLIFF tags, but don't warn.
308 node_stack.push_back(node_stack.back()->AddChild(util::make_unique<Node>()));
309 }
310 } else {
311 // Besides XLIFF, any other namespaced tag is unsupported and ignored.
312 diag_->Warn(DiagMessage(source_.WithLine(parser->line_number()))
313 << "ignoring element '" << parser->element_name()
314 << "' with unknown namespace '" << parser->element_namespace() << "'");
315 node_stack.push_back(node_stack.back()->AddChild(util::make_unique<Node>()));
Adam Lesinski75421622017-01-06 15:20:04 -0800316 }
Adam Lesinski75421622017-01-06 15:20:04 -0800317
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800318 // Enter one level inside the element.
319 depth++;
320 } break;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700321
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800322 case xml::XmlPullParser::Event::kEndElement: {
323 // Return one level from within the element.
324 depth--;
325 if (depth == 0) {
326 break;
327 }
328
329 node_stack.pop_back();
330 if (untranslatable_start_depth == make_value(depth)) {
331 // This is the end of an untranslatable section.
332 untranslatable_start_depth = {};
333 }
334 } break;
335
336 default:
337 // ignore.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700338 break;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700339 }
340 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700341
Adam Lesinski2eed52e2018-02-21 15:55:58 -0800342 // Sanity check to make sure we processed all the nodes.
343 CHECK(node_stack.size() == 1u);
344 CHECK(node_stack.back() == &root);
345
346 if (!saw_span_node) {
347 // If there were no spans, we must treat this string a little differently (according to AAPT).
348 // Find and strip the leading whitespace from the first segment, and the trailing whitespace
349 // from the last segment.
350 if (first_segment != nullptr) {
351 // Trim leading whitespace.
352 StringPiece trimmed = util::TrimLeadingWhitespace(first_segment->data);
353 if (trimmed.size() != first_segment->data.size()) {
354 first_segment->data = trimmed.to_string();
355 }
356 }
357
358 if (last_segment != nullptr) {
359 // Trim trailing whitespace.
360 StringPiece trimmed = util::TrimTrailingWhitespace(last_segment->data);
361 if (trimmed.size() != last_segment->data.size()) {
362 last_segment->data = trimmed.to_string();
363 }
364 }
365 }
366
367 // Have the XML structure flatten itself into the StringBuilder. The StringBuilder will take
368 // care of recording the correctly adjusted Spans and UntranslatableSections.
369 StringBuilder builder;
370 root.Build(&builder);
371 if (!builder) {
372 diag_->Error(DiagMessage(source_.WithLine(parser->line_number())) << builder.GetError());
373 return false;
374 }
375
376 ResourceUtils::FlattenedXmlString flattened_string = builder.GetFlattenedString();
377 *out_raw_string = std::move(raw_string);
378 *out_untranslatable_sections = std::move(flattened_string.untranslatable_sections);
379 out_style_string->str = std::move(flattened_string.text);
380 out_style_string->spans = std::move(flattened_string.spans);
Adam Lesinski75421622017-01-06 15:20:04 -0800381 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800382}
383
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700384bool ResourceParser::Parse(xml::XmlPullParser* parser) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700385 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700386 const size_t depth = parser->depth();
387 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
388 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700389 // Skip comments and text.
390 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800391 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700392
Adam Lesinski060b53d2017-07-28 17:10:35 -0700393 if (!parser->element_namespace().empty() || parser->element_name() != "resources") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700394 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700395 << "root element must be <resources>");
396 return false;
397 }
398
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700399 error |= !ParseResources(parser);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700400 break;
401 };
402
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700403 if (parser->event() == xml::XmlPullParser::Event::kBadDocument) {
404 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
405 << "xml parser error: " << parser->error());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700406 return false;
407 }
408 return !error;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800409}
410
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700411bool ResourceParser::ParseResources(xml::XmlPullParser* parser) {
412 std::set<ResourceName> stripped_resources;
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700413
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700414 bool error = false;
415 std::string comment;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700416 const size_t depth = parser->depth();
417 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
418 const xml::XmlPullParser::Event event = parser->event();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700419 if (event == xml::XmlPullParser::Event::kComment) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700420 comment = parser->comment();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700421 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800422 }
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700423
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700424 if (event == xml::XmlPullParser::Event::kText) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700425 if (!util::TrimWhitespace(parser->text()).empty()) {
426 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700427 << "plain text not allowed here");
428 error = true;
429 }
430 continue;
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700431 }
432
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700433 CHECK(event == xml::XmlPullParser::Event::kStartElement);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700434
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700435 if (!parser->element_namespace().empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700436 // Skip unknown namespace.
437 continue;
438 }
439
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700440 std::string element_name = parser->element_name();
441 if (element_name == "skip" || element_name == "eat-comment") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700442 comment = "";
443 continue;
444 }
445
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700446 ParsedResource parsed_resource;
447 parsed_resource.config = config_;
448 parsed_resource.source = source_.WithLine(parser->line_number());
449 parsed_resource.comment = std::move(comment);
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +0100450 if (options_.visibility) {
451 parsed_resource.visibility_level = options_.visibility.value();
452 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700453
454 // Extract the product name if it exists.
Adam Lesinski060b53d2017-07-28 17:10:35 -0700455 if (Maybe<StringPiece> maybe_product = xml::FindNonEmptyAttribute(parser, "product")) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800456 parsed_resource.product = maybe_product.value().to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700457 }
458
459 // Parse the resource regardless of product.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700460 if (!ParseResource(parser, &parsed_resource)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700461 error = true;
462 continue;
463 }
464
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700465 if (!AddResourcesToTable(table_, diag_, &parsed_resource)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700466 error = true;
467 }
468 }
469
470 // Check that we included at least one variant of each stripped resource.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700471 for (const ResourceName& stripped_resource : stripped_resources) {
472 if (!table_->FindResource(stripped_resource)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700473 // Failed to find the resource.
Adam Lesinski060b53d2017-07-28 17:10:35 -0700474 diag_->Error(DiagMessage(source_) << "resource '" << stripped_resource
475 << "' was filtered out but no product variant remains");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700476 error = true;
477 }
478 }
479
480 return !error;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800481}
482
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700483bool ResourceParser::ParseResource(xml::XmlPullParser* parser,
484 ParsedResource* out_resource) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700485 struct ItemTypeFormat {
486 ResourceType type;
487 uint32_t format;
488 };
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800489
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700490 using BagParseFunc = std::function<bool(ResourceParser*, xml::XmlPullParser*,
491 ParsedResource*)>;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800492
Adam Lesinski86d67df2017-01-31 13:47:27 -0800493 static const auto elToItemMap = ImmutableMap<std::string, ItemTypeFormat>::CreatePreSorted({
494 {"bool", {ResourceType::kBool, android::ResTable_map::TYPE_BOOLEAN}},
495 {"color", {ResourceType::kColor, android::ResTable_map::TYPE_COLOR}},
496 {"configVarying", {ResourceType::kConfigVarying, android::ResTable_map::TYPE_ANY}},
497 {"dimen",
498 {ResourceType::kDimen,
499 android::ResTable_map::TYPE_FLOAT | android::ResTable_map::TYPE_FRACTION |
500 android::ResTable_map::TYPE_DIMENSION}},
501 {"drawable", {ResourceType::kDrawable, android::ResTable_map::TYPE_COLOR}},
502 {"fraction",
503 {ResourceType::kFraction,
504 android::ResTable_map::TYPE_FLOAT | android::ResTable_map::TYPE_FRACTION |
505 android::ResTable_map::TYPE_DIMENSION}},
506 {"integer", {ResourceType::kInteger, android::ResTable_map::TYPE_INTEGER}},
507 {"string", {ResourceType::kString, android::ResTable_map::TYPE_STRING}},
508 });
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800509
Adam Lesinski86d67df2017-01-31 13:47:27 -0800510 static const auto elToBagMap = ImmutableMap<std::string, BagParseFunc>::CreatePreSorted({
511 {"add-resource", std::mem_fn(&ResourceParser::ParseAddResource)},
512 {"array", std::mem_fn(&ResourceParser::ParseArray)},
513 {"attr", std::mem_fn(&ResourceParser::ParseAttr)},
514 {"configVarying",
515 std::bind(&ResourceParser::ParseStyle, std::placeholders::_1, ResourceType::kConfigVarying,
516 std::placeholders::_2, std::placeholders::_3)},
517 {"declare-styleable", std::mem_fn(&ResourceParser::ParseDeclareStyleable)},
518 {"integer-array", std::mem_fn(&ResourceParser::ParseIntegerArray)},
519 {"java-symbol", std::mem_fn(&ResourceParser::ParseSymbol)},
Adam Lesinski46c4d722017-08-23 13:03:56 -0700520 {"overlayable", std::mem_fn(&ResourceParser::ParseOverlayable)},
Adam Lesinski86d67df2017-01-31 13:47:27 -0800521 {"plurals", std::mem_fn(&ResourceParser::ParsePlural)},
522 {"public", std::mem_fn(&ResourceParser::ParsePublic)},
523 {"public-group", std::mem_fn(&ResourceParser::ParsePublicGroup)},
524 {"string-array", std::mem_fn(&ResourceParser::ParseStringArray)},
525 {"style", std::bind(&ResourceParser::ParseStyle, std::placeholders::_1, ResourceType::kStyle,
526 std::placeholders::_2, std::placeholders::_3)},
527 {"symbol", std::mem_fn(&ResourceParser::ParseSymbol)},
528 });
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800529
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700530 std::string resource_type = parser->element_name();
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800531
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700532 // The value format accepted for this resource.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700533 uint32_t resource_format = 0u;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800534
Adam Lesinski86d67df2017-01-31 13:47:27 -0800535 bool can_be_item = true;
536 bool can_be_bag = true;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700537 if (resource_type == "item") {
Adam Lesinski86d67df2017-01-31 13:47:27 -0800538 can_be_bag = false;
539
Adam Lesinskie597d682017-06-01 17:16:44 -0700540 // The default format for <item> is any. If a format attribute is present, that one will
541 // override the default.
542 resource_format = android::ResTable_map::TYPE_ANY;
543
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700544 // Items have their type encoded in the type attribute.
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700545 if (Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type")) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800546 resource_type = maybe_type.value().to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700547 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700548 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700549 << "<item> must have a 'type' attribute");
550 return false;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800551 }
552
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700553 if (Maybe<StringPiece> maybe_format = xml::FindNonEmptyAttribute(parser, "format")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700554 // An explicit format for this resource was specified. The resource will
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700555 // retain its type in its name, but the accepted value for this type is
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700556 // overridden.
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700557 resource_format = ParseFormatTypeNoEnumsOrFlags(maybe_format.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700558 if (!resource_format) {
559 diag_->Error(DiagMessage(out_resource->source)
560 << "'" << maybe_format.value()
561 << "' is an invalid format");
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800562 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700563 }
564 }
Adam Lesinski86d67df2017-01-31 13:47:27 -0800565 } else if (resource_type == "bag") {
566 can_be_item = false;
567
568 // Bags have their type encoded in the type attribute.
569 if (Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type")) {
570 resource_type = maybe_type.value().to_string();
571 } else {
572 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
573 << "<bag> must have a 'type' attribute");
574 return false;
575 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700576 }
577
578 // Get the name of the resource. This will be checked later, because not all
579 // XML elements require a name.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700580 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700581
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700582 if (resource_type == "id") {
583 if (!maybe_name) {
584 diag_->Error(DiagMessage(out_resource->source)
585 << "<" << parser->element_name()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700586 << "> missing 'name' attribute");
587 return false;
588 }
589
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700590 out_resource->name.type = ResourceType::kId;
Adam Lesinskid5083f62017-01-16 15:07:21 -0800591 out_resource->name.entry = maybe_name.value().to_string();
y9efbbef2018-04-18 11:29:09 -0700592
593 // Ids either represent a unique resource id or reference another resource id
594 auto item = ParseItem(parser, out_resource, resource_format);
595 if (!item) {
596 return false;
597 }
598
599 String* empty = ValueCast<String>(out_resource->value.get());
600 if (empty && *empty->value == "") {
601 // If no inner element exists, represent a unique identifier
602 out_resource->value = util::make_unique<Id>();
603 } else {
604 // If an inner element exists, the inner element must be a reference to
605 // another resource id
606 Reference* ref = ValueCast<Reference>(out_resource->value.get());
607 if (!ref || ref->name.value().type != ResourceType::kId) {
608 diag_->Error(DiagMessage(out_resource->source)
609 << "<" << parser->element_name()
610 << "> inner element must either be a resource reference or empty");
611 return false;
612 }
613 }
614
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700615 return true;
616 }
617
Adam Lesinski86d67df2017-01-31 13:47:27 -0800618 if (can_be_item) {
619 const auto item_iter = elToItemMap.find(resource_type);
620 if (item_iter != elToItemMap.end()) {
621 // This is an item, record its type and format and start parsing.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700622
Adam Lesinski86d67df2017-01-31 13:47:27 -0800623 if (!maybe_name) {
624 diag_->Error(DiagMessage(out_resource->source)
625 << "<" << parser->element_name() << "> missing 'name' attribute");
626 return false;
627 }
628
629 out_resource->name.type = item_iter->second.type;
630 out_resource->name.entry = maybe_name.value().to_string();
631
Adam Lesinskie597d682017-06-01 17:16:44 -0700632 // Only use the implied format of the type when there is no explicit format.
633 if (resource_format == 0u) {
Adam Lesinski86d67df2017-01-31 13:47:27 -0800634 resource_format = item_iter->second.format;
635 }
636
637 if (!ParseItem(parser, out_resource, resource_format)) {
638 return false;
639 }
640 return true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700641 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700642 }
643
644 // This might be a bag or something.
Adam Lesinski86d67df2017-01-31 13:47:27 -0800645 if (can_be_bag) {
646 const auto bag_iter = elToBagMap.find(resource_type);
647 if (bag_iter != elToBagMap.end()) {
648 // Ensure we have a name (unless this is a <public-group>).
Adam Lesinski46c4d722017-08-23 13:03:56 -0700649 if (resource_type != "public-group" && resource_type != "overlayable") {
Adam Lesinski86d67df2017-01-31 13:47:27 -0800650 if (!maybe_name) {
651 diag_->Error(DiagMessage(out_resource->source)
652 << "<" << parser->element_name() << "> missing 'name' attribute");
653 return false;
654 }
655
656 out_resource->name.entry = maybe_name.value().to_string();
657 }
658
659 // Call the associated parse method. The type will be filled in by the
660 // parse func.
661 if (!bag_iter->second(this, parser, out_resource)) {
662 return false;
663 }
664 return true;
665 }
666 }
667
668 if (can_be_item) {
669 // Try parsing the elementName (or type) as a resource. These shall only be
670 // resources like 'layout' or 'xml' and they can only be references.
671 const ResourceType* parsed_type = ParseResourceType(resource_type);
672 if (parsed_type) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700673 if (!maybe_name) {
674 diag_->Error(DiagMessage(out_resource->source)
675 << "<" << parser->element_name()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700676 << "> missing 'name' attribute");
677 return false;
678 }
679
Adam Lesinski86d67df2017-01-31 13:47:27 -0800680 out_resource->name.type = *parsed_type;
Adam Lesinskid5083f62017-01-16 15:07:21 -0800681 out_resource->name.entry = maybe_name.value().to_string();
Adam Lesinski86d67df2017-01-31 13:47:27 -0800682 out_resource->value = ParseXml(parser, android::ResTable_map::TYPE_REFERENCE, kNoRawString);
683 if (!out_resource->value) {
684 diag_->Error(DiagMessage(out_resource->source)
685 << "invalid value for type '" << *parsed_type << "'. Expected a reference");
686 return false;
687 }
688 return true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700689 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700690 }
691
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700692 diag_->Warn(DiagMessage(out_resource->source)
693 << "unknown resource type '" << parser->element_name() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700694 return false;
695}
696
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700697bool ResourceParser::ParseItem(xml::XmlPullParser* parser,
698 ParsedResource* out_resource,
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700699 const uint32_t format) {
700 if (format == android::ResTable_map::TYPE_STRING) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700701 return ParseString(parser, out_resource);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700702 }
703
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700704 out_resource->value = ParseXml(parser, format, kNoRawString);
705 if (!out_resource->value) {
706 diag_->Error(DiagMessage(out_resource->source) << "invalid "
707 << out_resource->name.type);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700708 return false;
709 }
710 return true;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800711}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800712
713/**
714 * Reads the entire XML subtree and attempts to parse it as some Item,
715 * with typeMask denoting which items it can be. If allowRawValue is
716 * true, a RawString is returned if the XML couldn't be parsed as
717 * an Item. If allowRawValue is false, nullptr is returned in this
718 * case.
719 */
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700720std::unique_ptr<Item> ResourceParser::ParseXml(xml::XmlPullParser* parser,
721 const uint32_t type_mask,
722 const bool allow_raw_value) {
723 const size_t begin_xml_line = parser->line_number();
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800724
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700725 std::string raw_value;
726 StyleString style_string;
Adam Lesinski75421622017-01-06 15:20:04 -0800727 std::vector<UntranslatableSection> untranslatable_sections;
728 if (!FlattenXmlSubtree(parser, &raw_value, &style_string, &untranslatable_sections)) {
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800729 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700730 }
731
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700732 if (!style_string.spans.empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700733 // This can only be a StyledString.
Adam Lesinski75421622017-01-06 15:20:04 -0800734 std::unique_ptr<StyledString> styled_string =
735 util::make_unique<StyledString>(table_->string_pool.MakeRef(
Adam Lesinski060b53d2017-07-28 17:10:35 -0700736 style_string, StringPool::Context(StringPool::Context::kNormalPriority, config_)));
Adam Lesinski75421622017-01-06 15:20:04 -0800737 styled_string->untranslatable_sections = std::move(untranslatable_sections);
738 return std::move(styled_string);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700739 }
740
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700741 auto on_create_reference = [&](const ResourceName& name) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700742 // name.package can be empty here, as it will assume the package name of the
743 // table.
744 std::unique_ptr<Id> id = util::make_unique<Id>();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700745 id->SetSource(source_.WithLine(begin_xml_line));
746 table_->AddResource(name, {}, {}, std::move(id), diag_);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700747 };
748
749 // Process the raw value.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700750 std::unique_ptr<Item> processed_item =
Adam Lesinski71be7052017-12-12 16:48:07 -0800751 ResourceUtils::TryParseItemForAttribute(raw_value, type_mask, on_create_reference);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700752 if (processed_item) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700753 // Fix up the reference.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700754 if (Reference* ref = ValueCast<Reference>(processed_item.get())) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700755 ResolvePackage(parser, ref);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700756 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700757 return processed_item;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700758 }
759
760 // Try making a regular string.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700761 if (type_mask & android::ResTable_map::TYPE_STRING) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700762 // Use the trimmed, escaped string.
Adam Lesinski75421622017-01-06 15:20:04 -0800763 std::unique_ptr<String> string = util::make_unique<String>(
764 table_->string_pool.MakeRef(style_string.str, StringPool::Context(config_)));
765 string->untranslatable_sections = std::move(untranslatable_sections);
766 return std::move(string);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700767 }
768
Adam Lesinskibab4ef52017-06-01 15:22:57 -0700769 // If the text is empty, and the value is not allowed to be a string, encode it as a @null.
770 if (util::TrimWhitespace(raw_value).empty()) {
771 return ResourceUtils::MakeNull();
772 }
773
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700774 if (allow_raw_value) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700775 // We can't parse this so return a RawString if we are allowed.
776 return util::make_unique<RawString>(
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700777 table_->string_pool.MakeRef(raw_value, StringPool::Context(config_)));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700778 }
779 return {};
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800780}
781
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700782bool ResourceParser::ParseString(xml::XmlPullParser* parser,
783 ParsedResource* out_resource) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700784 bool formatted = true;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700785 if (Maybe<StringPiece> formatted_attr =
786 xml::FindAttribute(parser, "formatted")) {
787 Maybe<bool> maybe_formatted =
788 ResourceUtils::ParseBool(formatted_attr.value());
789 if (!maybe_formatted) {
790 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700791 << "invalid value for 'formatted'. Must be a boolean");
792 return false;
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800793 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700794 formatted = maybe_formatted.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700795 }
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800796
Adam Lesinski75421622017-01-06 15:20:04 -0800797 bool translatable = options_.translatable;
798 if (Maybe<StringPiece> translatable_attr = xml::FindAttribute(parser, "translatable")) {
799 Maybe<bool> maybe_translatable = ResourceUtils::ParseBool(translatable_attr.value());
800 if (!maybe_translatable) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700801 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700802 << "invalid value for 'translatable'. Must be a boolean");
803 return false;
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800804 }
Adam Lesinski75421622017-01-06 15:20:04 -0800805 translatable = maybe_translatable.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700806 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800807
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700808 out_resource->value =
809 ParseXml(parser, android::ResTable_map::TYPE_STRING, kNoRawString);
810 if (!out_resource->value) {
811 diag_->Error(DiagMessage(out_resource->source) << "not a valid string");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700812 return false;
813 }
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800814
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700815 if (String* string_value = ValueCast<String>(out_resource->value.get())) {
Adam Lesinski75421622017-01-06 15:20:04 -0800816 string_value->SetTranslatable(translatable);
Adam Lesinski393b5f02015-12-17 13:03:11 -0800817
Adam Lesinski75421622017-01-06 15:20:04 -0800818 if (formatted && translatable) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700819 if (!util::VerifyJavaStringFormat(*string_value->value)) {
820 DiagMessage msg(out_resource->source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700821 msg << "multiple substitutions specified in non-positional format; "
822 "did you mean to add the formatted=\"false\" attribute?";
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700823 if (options_.error_on_positional_arguments) {
824 diag_->Error(msg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700825 return false;
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800826 }
Adam Lesinski393b5f02015-12-17 13:03:11 -0800827
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700828 diag_->Warn(msg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700829 }
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800830 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700831
Adam Lesinski75421622017-01-06 15:20:04 -0800832 } else if (StyledString* string_value = ValueCast<StyledString>(out_resource->value.get())) {
833 string_value->SetTranslatable(translatable);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700834 }
835 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800836}
837
Adam Lesinski71be7052017-12-12 16:48:07 -0800838bool ResourceParser::ParsePublic(xml::XmlPullParser* parser, ParsedResource* out_resource) {
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +0100839 if (options_.visibility) {
840 diag_->Error(DiagMessage(out_resource->source)
841 << "<public> tag not allowed with --visibility flag");
842 return false;
843 }
844
Adam Lesinski46c4d722017-08-23 13:03:56 -0700845 if (out_resource->config != ConfigDescription::DefaultConfig()) {
846 diag_->Warn(DiagMessage(out_resource->source)
847 << "ignoring configuration '" << out_resource->config << "' for <public> tag");
848 }
849
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700850 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
851 if (!maybe_type) {
852 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700853 << "<public> must have a 'type' attribute");
854 return false;
855 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800856
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700857 const ResourceType* parsed_type = ParseResourceType(maybe_type.value());
858 if (!parsed_type) {
859 diag_->Error(DiagMessage(out_resource->source) << "invalid resource type '"
860 << maybe_type.value()
861 << "' in <public>");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700862 return false;
863 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800864
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700865 out_resource->name.type = *parsed_type;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800866
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800867 if (Maybe<StringPiece> maybe_id_str = xml::FindNonEmptyAttribute(parser, "id")) {
868 Maybe<ResourceId> maybe_id = ResourceUtils::ParseResourceId(maybe_id_str.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700869 if (!maybe_id) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800870 diag_->Error(DiagMessage(out_resource->source)
871 << "invalid resource ID '" << maybe_id_str.value() << "' in <public>");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700872 return false;
Adam Lesinski27afb9e2015-11-06 18:25:04 -0800873 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700874 out_resource->id = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700875 }
Adam Lesinski27afb9e2015-11-06 18:25:04 -0800876
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700877 if (*parsed_type == ResourceType::kId) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700878 // An ID marked as public is also the definition of an ID.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700879 out_resource->value = util::make_unique<Id>();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700880 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700881
Adam Lesinski71be7052017-12-12 16:48:07 -0800882 out_resource->visibility_level = Visibility::Level::kPublic;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700883 return true;
Adam Lesinski27afb9e2015-11-06 18:25:04 -0800884}
885
Adam Lesinski46c4d722017-08-23 13:03:56 -0700886bool ResourceParser::ParsePublicGroup(xml::XmlPullParser* parser, ParsedResource* out_resource) {
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +0100887 if (options_.visibility) {
888 diag_->Error(DiagMessage(out_resource->source)
889 << "<public-group> tag not allowed with --visibility flag");
890 return false;
891 }
892
Adam Lesinski46c4d722017-08-23 13:03:56 -0700893 if (out_resource->config != ConfigDescription::DefaultConfig()) {
894 diag_->Warn(DiagMessage(out_resource->source)
895 << "ignoring configuration '" << out_resource->config
896 << "' for <public-group> tag");
897 }
898
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700899 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
900 if (!maybe_type) {
901 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700902 << "<public-group> must have a 'type' attribute");
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800903 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700904 }
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800905
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700906 const ResourceType* parsed_type = ParseResourceType(maybe_type.value());
907 if (!parsed_type) {
908 diag_->Error(DiagMessage(out_resource->source) << "invalid resource type '"
909 << maybe_type.value()
910 << "' in <public-group>");
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800911 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700912 }
913
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700914 Maybe<StringPiece> maybe_id_str =
915 xml::FindNonEmptyAttribute(parser, "first-id");
916 if (!maybe_id_str) {
917 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700918 << "<public-group> must have a 'first-id' attribute");
919 return false;
920 }
921
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700922 Maybe<ResourceId> maybe_id =
923 ResourceUtils::ParseResourceId(maybe_id_str.value());
924 if (!maybe_id) {
925 diag_->Error(DiagMessage(out_resource->source) << "invalid resource ID '"
926 << maybe_id_str.value()
927 << "' in <public-group>");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700928 return false;
929 }
930
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700931 ResourceId next_id = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700932
933 std::string comment;
934 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700935 const size_t depth = parser->depth();
936 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
937 if (parser->event() == xml::XmlPullParser::Event::kComment) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800938 comment = util::TrimWhitespace(parser->comment()).to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700939 continue;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700940 } else if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700941 // Skip text.
942 continue;
943 }
944
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700945 const Source item_source = source_.WithLine(parser->line_number());
946 const std::string& element_namespace = parser->element_namespace();
947 const std::string& element_name = parser->element_name();
948 if (element_namespace.empty() && element_name == "public") {
949 Maybe<StringPiece> maybe_name =
950 xml::FindNonEmptyAttribute(parser, "name");
951 if (!maybe_name) {
952 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700953 << "<public> must have a 'name' attribute");
954 error = true;
955 continue;
956 }
957
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700958 if (xml::FindNonEmptyAttribute(parser, "id")) {
959 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700960 << "'id' is ignored within <public-group>");
961 error = true;
962 continue;
963 }
964
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700965 if (xml::FindNonEmptyAttribute(parser, "type")) {
966 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700967 << "'type' is ignored within <public-group>");
968 error = true;
969 continue;
970 }
971
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700972 ParsedResource child_resource;
973 child_resource.name.type = *parsed_type;
Adam Lesinskid5083f62017-01-16 15:07:21 -0800974 child_resource.name.entry = maybe_name.value().to_string();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700975 child_resource.id = next_id;
976 child_resource.comment = std::move(comment);
977 child_resource.source = item_source;
Adam Lesinski71be7052017-12-12 16:48:07 -0800978 child_resource.visibility_level = Visibility::Level::kPublic;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700979 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700980
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700981 next_id.id += 1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700982
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700983 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
984 diag_->Error(DiagMessage(item_source) << ":" << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700985 error = true;
986 }
987 }
988 return !error;
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800989}
990
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700991bool ResourceParser::ParseSymbolImpl(xml::XmlPullParser* parser,
992 ParsedResource* out_resource) {
993 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
994 if (!maybe_type) {
995 diag_->Error(DiagMessage(out_resource->source)
996 << "<" << parser->element_name()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700997 << "> must have a 'type' attribute");
998 return false;
999 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001000
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001001 const ResourceType* parsed_type = ParseResourceType(maybe_type.value());
1002 if (!parsed_type) {
1003 diag_->Error(DiagMessage(out_resource->source)
1004 << "invalid resource type '" << maybe_type.value() << "' in <"
1005 << parser->element_name() << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001006 return false;
1007 }
1008
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001009 out_resource->name.type = *parsed_type;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001010 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001011}
1012
Adam Lesinski46c4d722017-08-23 13:03:56 -07001013bool ResourceParser::ParseSymbol(xml::XmlPullParser* parser, ParsedResource* out_resource) {
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +01001014 if (options_.visibility) {
1015 diag_->Error(DiagMessage(out_resource->source)
1016 << "<java-symbol> and <symbol> tags not allowed with --visibility flag");
1017 return false;
1018 }
Adam Lesinski46c4d722017-08-23 13:03:56 -07001019 if (out_resource->config != ConfigDescription::DefaultConfig()) {
1020 diag_->Warn(DiagMessage(out_resource->source)
1021 << "ignoring configuration '" << out_resource->config << "' for <"
1022 << parser->element_name() << "> tag");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001023 }
Adam Lesinski46c4d722017-08-23 13:03:56 -07001024
1025 if (!ParseSymbolImpl(parser, out_resource)) {
1026 return false;
1027 }
1028
Adam Lesinski71be7052017-12-12 16:48:07 -08001029 out_resource->visibility_level = Visibility::Level::kPrivate;
Adam Lesinski46c4d722017-08-23 13:03:56 -07001030 return true;
1031}
1032
1033bool ResourceParser::ParseOverlayable(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1034 if (out_resource->config != ConfigDescription::DefaultConfig()) {
1035 diag_->Warn(DiagMessage(out_resource->source)
1036 << "ignoring configuration '" << out_resource->config << "' for <overlayable> tag");
1037 }
1038
1039 if (Maybe<StringPiece> maybe_policy = xml::FindNonEmptyAttribute(parser, "policy")) {
1040 const StringPiece& policy = maybe_policy.value();
1041 if (policy != "system") {
1042 diag_->Error(DiagMessage(out_resource->source)
1043 << "<overlayable> has invalid policy '" << policy << "'");
1044 return false;
1045 }
1046 }
1047
1048 bool error = false;
1049 const size_t depth = parser->depth();
1050 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1051 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
1052 // Skip text/comments.
1053 continue;
1054 }
1055
1056 const Source item_source = source_.WithLine(parser->line_number());
1057 const std::string& element_namespace = parser->element_namespace();
1058 const std::string& element_name = parser->element_name();
1059 if (element_namespace.empty() && element_name == "item") {
1060 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
1061 if (!maybe_name) {
1062 diag_->Error(DiagMessage(item_source)
1063 << "<item> within an <overlayable> tag must have a 'name' attribute");
1064 error = true;
1065 continue;
1066 }
1067
1068 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
1069 if (!maybe_type) {
1070 diag_->Error(DiagMessage(item_source)
1071 << "<item> within an <overlayable> tag must have a 'type' attribute");
1072 error = true;
1073 continue;
1074 }
1075
1076 const ResourceType* type = ParseResourceType(maybe_type.value());
1077 if (type == nullptr) {
1078 diag_->Error(DiagMessage(out_resource->source)
1079 << "invalid resource type '" << maybe_type.value()
1080 << "' in <item> within an <overlayable>");
1081 error = true;
1082 continue;
1083 }
1084
Adam Lesinski71be7052017-12-12 16:48:07 -08001085 ParsedResource child_resource;
1086 child_resource.name.type = *type;
1087 child_resource.name.entry = maybe_name.value().to_string();
1088 child_resource.source = item_source;
1089 child_resource.overlayable = true;
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +01001090 if (options_.visibility) {
1091 child_resource.visibility_level = options_.visibility.value();
1092 }
Adam Lesinski71be7052017-12-12 16:48:07 -08001093 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinski46c4d722017-08-23 13:03:56 -07001094
1095 xml::XmlPullParser::SkipCurrentElement(parser);
1096 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1097 diag_->Error(DiagMessage(item_source) << ":" << element_name << ">");
1098 error = true;
1099 }
1100 }
1101 return !error;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001102}
1103
Adam Lesinski71be7052017-12-12 16:48:07 -08001104bool ResourceParser::ParseAddResource(xml::XmlPullParser* parser, ParsedResource* out_resource) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001105 if (ParseSymbolImpl(parser, out_resource)) {
Adam Lesinski71be7052017-12-12 16:48:07 -08001106 out_resource->visibility_level = Visibility::Level::kUndefined;
Adam Lesinski4488f1c2017-05-26 17:33:38 -07001107 out_resource->allow_new = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001108 return true;
1109 }
1110 return false;
1111}
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001112
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001113bool ResourceParser::ParseAttr(xml::XmlPullParser* parser,
1114 ParsedResource* out_resource) {
1115 return ParseAttrImpl(parser, out_resource, false);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001116}
1117
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001118bool ResourceParser::ParseAttrImpl(xml::XmlPullParser* parser,
1119 ParsedResource* out_resource, bool weak) {
1120 out_resource->name.type = ResourceType::kAttr;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001121
1122 // Attributes only end up in default configuration.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001123 if (out_resource->config != ConfigDescription::DefaultConfig()) {
1124 diag_->Warn(DiagMessage(out_resource->source)
1125 << "ignoring configuration '" << out_resource->config
1126 << "' for attribute " << out_resource->name);
1127 out_resource->config = ConfigDescription::DefaultConfig();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001128 }
1129
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001130 uint32_t type_mask = 0;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001131
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001132 Maybe<StringPiece> maybe_format = xml::FindAttribute(parser, "format");
1133 if (maybe_format) {
1134 type_mask = ParseFormatAttribute(maybe_format.value());
1135 if (type_mask == 0) {
1136 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001137 << "invalid attribute format '" << maybe_format.value() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001138 return false;
1139 }
1140 }
1141
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001142 Maybe<int32_t> maybe_min, maybe_max;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001143
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001144 if (Maybe<StringPiece> maybe_min_str = xml::FindAttribute(parser, "min")) {
1145 StringPiece min_str = util::TrimWhitespace(maybe_min_str.value());
1146 if (!min_str.empty()) {
1147 std::u16string min_str16 = util::Utf8ToUtf16(min_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001148 android::Res_value value;
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001149 if (android::ResTable::stringToInt(min_str16.data(), min_str16.size(), &value)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001150 maybe_min = static_cast<int32_t>(value.data);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001151 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001152 }
1153
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001154 if (!maybe_min) {
1155 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1156 << "invalid 'min' value '" << min_str << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001157 return false;
1158 }
1159 }
1160
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001161 if (Maybe<StringPiece> maybe_max_str = xml::FindAttribute(parser, "max")) {
1162 StringPiece max_str = util::TrimWhitespace(maybe_max_str.value());
1163 if (!max_str.empty()) {
1164 std::u16string max_str16 = util::Utf8ToUtf16(max_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001165 android::Res_value value;
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001166 if (android::ResTable::stringToInt(max_str16.data(), max_str16.size(), &value)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001167 maybe_max = static_cast<int32_t>(value.data);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001168 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001169 }
1170
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001171 if (!maybe_max) {
1172 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1173 << "invalid 'max' value '" << max_str << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001174 return false;
1175 }
1176 }
1177
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001178 if ((maybe_min || maybe_max) &&
1179 (type_mask & android::ResTable_map::TYPE_INTEGER) == 0) {
1180 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001181 << "'min' and 'max' can only be used when format='integer'");
1182 return false;
1183 }
1184
1185 struct SymbolComparator {
Yi Kong087e2d42017-05-02 12:49:25 -07001186 bool operator()(const Attribute::Symbol& a, const Attribute::Symbol& b) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001187 return a.symbol.name.value() < b.symbol.name.value();
1188 }
1189 };
1190
1191 std::set<Attribute::Symbol, SymbolComparator> items;
1192
1193 std::string comment;
1194 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001195 const size_t depth = parser->depth();
1196 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1197 if (parser->event() == xml::XmlPullParser::Event::kComment) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08001198 comment = util::TrimWhitespace(parser->comment()).to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001199 continue;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001200 } else if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001201 // Skip text.
1202 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001203 }
1204
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001205 const Source item_source = source_.WithLine(parser->line_number());
1206 const std::string& element_namespace = parser->element_namespace();
1207 const std::string& element_name = parser->element_name();
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001208 if (element_namespace.empty() && (element_name == "flag" || element_name == "enum")) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001209 if (element_name == "enum") {
1210 if (type_mask & android::ResTable_map::TYPE_FLAGS) {
1211 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001212 << "can not define an <enum>; already defined a <flag>");
1213 error = true;
1214 continue;
1215 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001216 type_mask |= android::ResTable_map::TYPE_ENUM;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001217
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001218 } else if (element_name == "flag") {
1219 if (type_mask & android::ResTable_map::TYPE_ENUM) {
1220 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001221 << "can not define a <flag>; already defined an <enum>");
1222 error = true;
1223 continue;
1224 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001225 type_mask |= android::ResTable_map::TYPE_FLAGS;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001226 }
1227
1228 if (Maybe<Attribute::Symbol> s =
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001229 ParseEnumOrFlagItem(parser, element_name)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001230 Attribute::Symbol& symbol = s.value();
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001231 ParsedResource child_resource;
1232 child_resource.name = symbol.symbol.name.value();
1233 child_resource.source = item_source;
1234 child_resource.value = util::make_unique<Id>();
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +01001235 if (options_.visibility) {
1236 child_resource.visibility_level = options_.visibility.value();
1237 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001238 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001239
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001240 symbol.symbol.SetComment(std::move(comment));
1241 symbol.symbol.SetSource(item_source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001242
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001243 auto insert_result = items.insert(std::move(symbol));
1244 if (!insert_result.second) {
1245 const Attribute::Symbol& existing_symbol = *insert_result.first;
1246 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001247 << "duplicate symbol '"
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001248 << existing_symbol.symbol.name.value().entry << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001249
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001250 diag_->Note(DiagMessage(existing_symbol.symbol.GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001251 << "first defined here");
1252 error = true;
1253 }
1254 } else {
1255 error = true;
1256 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001257 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1258 diag_->Error(DiagMessage(item_source) << ":" << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001259 error = true;
1260 }
1261
1262 comment = {};
1263 }
1264
1265 if (error) {
1266 return false;
1267 }
1268
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001269 std::unique_ptr<Attribute> attr = util::make_unique<Attribute>(
1270 type_mask ? type_mask : uint32_t{android::ResTable_map::TYPE_ANY});
1271 attr->SetWeak(weak);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001272 attr->symbols = std::vector<Attribute::Symbol>(items.begin(), items.end());
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001273 attr->min_int = maybe_min.value_or_default(std::numeric_limits<int32_t>::min());
1274 attr->max_int = maybe_max.value_or_default(std::numeric_limits<int32_t>::max());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001275 out_resource->value = std::move(attr);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001276 return true;
1277}
1278
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001279Maybe<Attribute::Symbol> ResourceParser::ParseEnumOrFlagItem(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001280 xml::XmlPullParser* parser, const StringPiece& tag) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001281 const Source source = source_.WithLine(parser->line_number());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001282
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001283 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
1284 if (!maybe_name) {
1285 diag_->Error(DiagMessage(source) << "no attribute 'name' found for tag <"
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001286 << tag << ">");
1287 return {};
1288 }
1289
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001290 Maybe<StringPiece> maybe_value = xml::FindNonEmptyAttribute(parser, "value");
1291 if (!maybe_value) {
1292 diag_->Error(DiagMessage(source) << "no attribute 'value' found for tag <"
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001293 << tag << ">");
1294 return {};
1295 }
1296
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001297 std::u16string value16 = util::Utf8ToUtf16(maybe_value.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001298 android::Res_value val;
1299 if (!android::ResTable::stringToInt(value16.data(), value16.size(), &val)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001300 diag_->Error(DiagMessage(source) << "invalid value '" << maybe_value.value()
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001301 << "' for <" << tag
1302 << ">; must be an integer");
1303 return {};
1304 }
1305
1306 return Attribute::Symbol{
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001307 Reference(ResourceNameRef({}, ResourceType::kId, maybe_name.value())),
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001308 val.data};
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001309}
1310
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001311bool ResourceParser::ParseStyleItem(xml::XmlPullParser* parser, Style* style) {
1312 const Source source = source_.WithLine(parser->line_number());
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001313
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001314 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
1315 if (!maybe_name) {
1316 diag_->Error(DiagMessage(source) << "<item> must have a 'name' attribute");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001317 return false;
1318 }
1319
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001320 Maybe<Reference> maybe_key = ResourceUtils::ParseXmlAttributeName(maybe_name.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001321 if (!maybe_key) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001322 diag_->Error(DiagMessage(source) << "invalid attribute name '" << maybe_name.value() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001323 return false;
1324 }
1325
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001326 ResolvePackage(parser, &maybe_key.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001327 maybe_key.value().SetSource(source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001328
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001329 std::unique_ptr<Item> value = ParseXml(parser, 0, kAllowRawString);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001330 if (!value) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001331 diag_->Error(DiagMessage(source) << "could not parse style item");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001332 return false;
1333 }
1334
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001335 style->entries.push_back(Style::Entry{std::move(maybe_key.value()), std::move(value)});
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001336 return true;
1337}
1338
Adam Lesinski86d67df2017-01-31 13:47:27 -08001339bool ResourceParser::ParseStyle(const ResourceType type, xml::XmlPullParser* parser,
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001340 ParsedResource* out_resource) {
Adam Lesinski86d67df2017-01-31 13:47:27 -08001341 out_resource->name.type = type;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001342
1343 std::unique_ptr<Style> style = util::make_unique<Style>();
1344
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001345 Maybe<StringPiece> maybe_parent = xml::FindAttribute(parser, "parent");
1346 if (maybe_parent) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001347 // If the parent is empty, we don't have a parent, but we also don't infer either.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001348 if (!maybe_parent.value().empty()) {
1349 std::string err_str;
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001350 style->parent = ResourceUtils::ParseStyleParentReference(maybe_parent.value(), &err_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001351 if (!style->parent) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001352 diag_->Error(DiagMessage(out_resource->source) << err_str);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001353 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001354 }
1355
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001356 // Transform the namespace prefix to the actual package name, and mark the reference as
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001357 // private if appropriate.
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001358 ResolvePackage(parser, &style->parent.value());
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001359 }
1360
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001361 } else {
1362 // No parent was specified, so try inferring it from the style name.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001363 std::string style_name = out_resource->name.entry;
1364 size_t pos = style_name.find_last_of(u'.');
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001365 if (pos != std::string::npos) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001366 style->parent_inferred = true;
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001367 style->parent = Reference(ResourceName({}, ResourceType::kStyle, style_name.substr(0, pos)));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001368 }
1369 }
1370
1371 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001372 const size_t depth = parser->depth();
1373 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1374 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001375 // Skip text and comments.
1376 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001377 }
1378
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001379 const std::string& element_namespace = parser->element_namespace();
1380 const std::string& element_name = parser->element_name();
1381 if (element_namespace == "" && element_name == "item") {
1382 error |= !ParseStyleItem(parser, style.get());
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001383
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001384 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1385 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1386 << ":" << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001387 error = true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001388 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001389 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001390
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001391 if (error) {
1392 return false;
1393 }
1394
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001395 out_resource->value = std::move(style);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001396 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001397}
1398
Adam Lesinskid5fd76a2017-05-16 12:18:08 -07001399bool ResourceParser::ParseArray(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1400 uint32_t resource_format = android::ResTable_map::TYPE_ANY;
1401 if (Maybe<StringPiece> format_attr = xml::FindNonEmptyAttribute(parser, "format")) {
1402 resource_format = ParseFormatTypeNoEnumsOrFlags(format_attr.value());
1403 if (resource_format == 0u) {
1404 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1405 << "'" << format_attr.value() << "' is an invalid format");
1406 return false;
1407 }
1408 }
1409 return ParseArrayImpl(parser, out_resource, resource_format);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001410}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001411
Adam Lesinskid5fd76a2017-05-16 12:18:08 -07001412bool ResourceParser::ParseIntegerArray(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1413 return ParseArrayImpl(parser, out_resource, android::ResTable_map::TYPE_INTEGER);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001414}
1415
Adam Lesinskid5fd76a2017-05-16 12:18:08 -07001416bool ResourceParser::ParseStringArray(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1417 return ParseArrayImpl(parser, out_resource, android::ResTable_map::TYPE_STRING);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001418}
1419
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001420bool ResourceParser::ParseArrayImpl(xml::XmlPullParser* parser,
1421 ParsedResource* out_resource,
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001422 const uint32_t typeMask) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001423 out_resource->name.type = ResourceType::kArray;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001424
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001425 std::unique_ptr<Array> array = util::make_unique<Array>();
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001426
Adam Lesinski75421622017-01-06 15:20:04 -08001427 bool translatable = options_.translatable;
1428 if (Maybe<StringPiece> translatable_attr = xml::FindAttribute(parser, "translatable")) {
1429 Maybe<bool> maybe_translatable = ResourceUtils::ParseBool(translatable_attr.value());
1430 if (!maybe_translatable) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001431 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001432 << "invalid value for 'translatable'. Must be a boolean");
1433 return false;
Adam Lesinski458b8772016-04-25 14:20:21 -07001434 }
Adam Lesinski75421622017-01-06 15:20:04 -08001435 translatable = maybe_translatable.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001436 }
Adam Lesinski75421622017-01-06 15:20:04 -08001437 array->SetTranslatable(translatable);
Adam Lesinski458b8772016-04-25 14:20:21 -07001438
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001439 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001440 const size_t depth = parser->depth();
1441 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1442 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001443 // Skip text and comments.
1444 continue;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001445 }
1446
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001447 const Source item_source = source_.WithLine(parser->line_number());
1448 const std::string& element_namespace = parser->element_namespace();
1449 const std::string& element_name = parser->element_name();
1450 if (element_namespace.empty() && element_name == "item") {
1451 std::unique_ptr<Item> item = ParseXml(parser, typeMask, kNoRawString);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001452 if (!item) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001453 diag_->Error(DiagMessage(item_source) << "could not parse array item");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001454 error = true;
1455 continue;
1456 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001457 item->SetSource(item_source);
Adam Lesinski4ffea042017-08-10 15:37:28 -07001458 array->elements.emplace_back(std::move(item));
Adam Lesinski9ba47d82015-10-13 11:37:10 -07001459
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001460 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1461 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1462 << "unknown tag <" << element_namespace << ":"
1463 << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001464 error = true;
1465 }
1466 }
1467
1468 if (error) {
1469 return false;
1470 }
1471
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001472 out_resource->value = std::move(array);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001473 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001474}
1475
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001476bool ResourceParser::ParsePlural(xml::XmlPullParser* parser,
1477 ParsedResource* out_resource) {
1478 out_resource->name.type = ResourceType::kPlurals;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001479
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001480 std::unique_ptr<Plural> plural = util::make_unique<Plural>();
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001481
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001482 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001483 const size_t depth = parser->depth();
1484 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1485 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001486 // Skip text and comments.
1487 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001488 }
1489
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001490 const Source item_source = source_.WithLine(parser->line_number());
1491 const std::string& element_namespace = parser->element_namespace();
1492 const std::string& element_name = parser->element_name();
1493 if (element_namespace.empty() && element_name == "item") {
1494 Maybe<StringPiece> maybe_quantity =
1495 xml::FindNonEmptyAttribute(parser, "quantity");
1496 if (!maybe_quantity) {
1497 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001498 << "<item> in <plurals> requires attribute "
1499 << "'quantity'");
1500 error = true;
1501 continue;
1502 }
Adam Lesinski9ba47d82015-10-13 11:37:10 -07001503
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001504 StringPiece trimmed_quantity =
1505 util::TrimWhitespace(maybe_quantity.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001506 size_t index = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001507 if (trimmed_quantity == "zero") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001508 index = Plural::Zero;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001509 } else if (trimmed_quantity == "one") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001510 index = Plural::One;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001511 } else if (trimmed_quantity == "two") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001512 index = Plural::Two;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001513 } else if (trimmed_quantity == "few") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001514 index = Plural::Few;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001515 } else if (trimmed_quantity == "many") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001516 index = Plural::Many;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001517 } else if (trimmed_quantity == "other") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001518 index = Plural::Other;
1519 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001520 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001521 << "<item> in <plural> has invalid value '"
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001522 << trimmed_quantity << "' for attribute 'quantity'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001523 error = true;
1524 continue;
1525 }
1526
1527 if (plural->values[index]) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001528 diag_->Error(DiagMessage(item_source) << "duplicate quantity '"
1529 << trimmed_quantity << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001530 error = true;
1531 continue;
1532 }
1533
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001534 if (!(plural->values[index] = ParseXml(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001535 parser, android::ResTable_map::TYPE_STRING, kNoRawString))) {
1536 error = true;
1537 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001538 plural->values[index]->SetSource(item_source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001539
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001540 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1541 diag_->Error(DiagMessage(item_source) << "unknown tag <"
1542 << element_namespace << ":"
1543 << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001544 error = true;
1545 }
1546 }
1547
1548 if (error) {
1549 return false;
1550 }
1551
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001552 out_resource->value = std::move(plural);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001553 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001554}
1555
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001556bool ResourceParser::ParseDeclareStyleable(xml::XmlPullParser* parser,
1557 ParsedResource* out_resource) {
1558 out_resource->name.type = ResourceType::kStyleable;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001559
Adam Lesinski71be7052017-12-12 16:48:07 -08001560 // Declare-styleable is kPrivate by default, because it technically only exists in R.java.
1561 out_resource->visibility_level = Visibility::Level::kPublic;
Adam Lesinski9f222042015-11-04 13:51:45 -08001562
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001563 // Declare-styleable only ends up in default config;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001564 if (out_resource->config != ConfigDescription::DefaultConfig()) {
1565 diag_->Warn(DiagMessage(out_resource->source)
1566 << "ignoring configuration '" << out_resource->config
1567 << "' for styleable " << out_resource->name.entry);
1568 out_resource->config = ConfigDescription::DefaultConfig();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001569 }
1570
1571 std::unique_ptr<Styleable> styleable = util::make_unique<Styleable>();
1572
1573 std::string comment;
1574 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001575 const size_t depth = parser->depth();
1576 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1577 if (parser->event() == xml::XmlPullParser::Event::kComment) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08001578 comment = util::TrimWhitespace(parser->comment()).to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001579 continue;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001580 } else if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001581 // Ignore text.
1582 continue;
Adam Lesinski52364f72016-01-11 13:10:24 -08001583 }
1584
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001585 const Source item_source = source_.WithLine(parser->line_number());
1586 const std::string& element_namespace = parser->element_namespace();
1587 const std::string& element_name = parser->element_name();
1588 if (element_namespace.empty() && element_name == "attr") {
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001589 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001590 if (!maybe_name) {
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001591 diag_->Error(DiagMessage(item_source) << "<attr> tag must have a 'name' attribute");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001592 error = true;
1593 continue;
1594 }
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001595
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001596 // If this is a declaration, the package name may be in the name. Separate
1597 // these out.
1598 // Eg. <attr name="android:text" />
Adam Lesinski73bff1e2017-12-08 16:06:10 -08001599 Maybe<Reference> maybe_ref = ResourceUtils::ParseXmlAttributeName(maybe_name.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001600 if (!maybe_ref) {
1601 diag_->Error(DiagMessage(item_source) << "<attr> tag has invalid name '"
1602 << maybe_name.value() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001603 error = true;
1604 continue;
1605 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001606
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001607 Reference& child_ref = maybe_ref.value();
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001608 xml::ResolvePackage(parser, &child_ref);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001609
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001610 // Create the ParsedResource that will add the attribute to the table.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001611 ParsedResource child_resource;
1612 child_resource.name = child_ref.name.value();
1613 child_resource.source = item_source;
1614 child_resource.comment = std::move(comment);
Izabela Orlowskac7ac3a12018-03-27 14:46:52 +01001615 if (options_.visibility) {
1616 child_resource.visibility_level = options_.visibility.value();
1617 }
Adam Lesinski467f1712015-11-16 17:35:44 -08001618
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001619 if (!ParseAttrImpl(parser, &child_resource, true)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001620 error = true;
1621 continue;
1622 }
Adam Lesinski467f1712015-11-16 17:35:44 -08001623
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001624 // Create the reference to this attribute.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001625 child_ref.SetComment(child_resource.comment);
1626 child_ref.SetSource(item_source);
1627 styleable->entries.push_back(std::move(child_ref));
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001628
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001629 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001630
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001631 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1632 diag_->Error(DiagMessage(item_source) << "unknown tag <"
1633 << element_namespace << ":"
1634 << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001635 error = true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001636 }
1637
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001638 comment = {};
1639 }
Adam Lesinski9ba47d82015-10-13 11:37:10 -07001640
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001641 if (error) {
1642 return false;
1643 }
1644
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001645 out_resource->value = std::move(styleable);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001646 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001647}
1648
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001649} // namespace aapt