blob: 4cc60a8dbb07ea0bbbf75670a27688fc22d30906 [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>
20#include <sstream>
21
22#include "android-base/logging.h"
23
Adam Lesinski1ab598f2015-08-14 14:26:04 -070024#include "ResourceTable.h"
25#include "ResourceUtils.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080026#include "ResourceValues.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070027#include "ValueVisitor.h"
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080028#include "util/ImmutableMap.h"
Adam Lesinski75421622017-01-06 15:20:04 -080029#include "util/Maybe.h"
Adam Lesinski9e10ac72015-10-16 14:37:48 -070030#include "util/Util.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080031#include "xml/XmlPullParser.h"
Adam Lesinski9e10ac72015-10-16 14:37:48 -070032
Adam Lesinskid5083f62017-01-16 15:07:21 -080033using android::StringPiece;
34
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080035namespace aapt {
36
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070037constexpr const char* sXliffNamespaceUri = "urn:oasis:names:tc:xliff:document:1.2";
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080038
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070039// Returns true if the element is <skip> or <eat-comment> and can be safely ignored.
40static bool ShouldIgnoreElement(const StringPiece& ns, const StringPiece& name) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070041 return ns.empty() && (name == "skip" || name == "eat-comment");
Adam Lesinski27afb9e2015-11-06 18:25:04 -080042}
43
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070044static uint32_t ParseFormatTypeNoEnumsOrFlags(const StringPiece& piece) {
45 if (piece == "reference") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070046 return android::ResTable_map::TYPE_REFERENCE;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070047 } else if (piece == "string") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070048 return android::ResTable_map::TYPE_STRING;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070049 } else if (piece == "integer") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070050 return android::ResTable_map::TYPE_INTEGER;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070051 } else if (piece == "boolean") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070052 return android::ResTable_map::TYPE_BOOLEAN;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070053 } else if (piece == "color") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070054 return android::ResTable_map::TYPE_COLOR;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070055 } else if (piece == "float") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070056 return android::ResTable_map::TYPE_FLOAT;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070057 } else if (piece == "dimension") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070058 return android::ResTable_map::TYPE_DIMENSION;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070059 } else if (piece == "fraction") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070060 return android::ResTable_map::TYPE_FRACTION;
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070061 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -070062 return 0;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080063}
64
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070065static uint32_t ParseFormatType(const StringPiece& piece) {
66 if (piece == "enum") {
67 return android::ResTable_map::TYPE_ENUM;
68 } else if (piece == "flags") {
69 return android::ResTable_map::TYPE_FLAGS;
70 }
71 return ParseFormatTypeNoEnumsOrFlags(piece);
72}
73
Adam Lesinskice5e56e2016-10-21 17:56:45 -070074static uint32_t ParseFormatAttribute(const StringPiece& str) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070075 uint32_t mask = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070076 for (StringPiece part : util::Tokenize(str, '|')) {
77 StringPiece trimmed_part = util::TrimWhitespace(part);
78 uint32_t type = ParseFormatType(trimmed_part);
Adam Lesinskicacb28f2016-10-19 12:18:14 -070079 if (type == 0) {
80 return 0;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080081 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -070082 mask |= type;
83 }
84 return mask;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080085}
86
Adam Lesinskid5fd76a2017-05-16 12:18:08 -070087// A parsed resource ready to be added to the ResourceTable.
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080088struct ParsedResource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070089 ResourceName name;
90 ConfigDescription config;
91 std::string product;
92 Source source;
93 ResourceId id;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070094 Maybe<SymbolState> symbol_state;
Adam Lesinski4488f1c2017-05-26 17:33:38 -070095 bool allow_new = false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070096 std::string comment;
97 std::unique_ptr<Value> value;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070098 std::list<ParsedResource> child_resources;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080099};
100
101// Recursively adds resources to the ResourceTable.
Adam Lesinski4488f1c2017-05-26 17:33:38 -0700102static bool AddResourcesToTable(ResourceTable* table, IDiagnostics* diag, ParsedResource* res) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700103 StringPiece trimmed_comment = util::TrimWhitespace(res->comment);
104 if (trimmed_comment.size() != res->comment.size()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700105 // Only if there was a change do we re-assign.
Adam Lesinskid5083f62017-01-16 15:07:21 -0800106 res->comment = trimmed_comment.to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700107 }
Adam Lesinski76565542016-03-10 21:55:04 -0800108
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700109 if (res->symbol_state) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700110 Symbol symbol;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700111 symbol.state = res->symbol_state.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700112 symbol.source = res->source;
113 symbol.comment = res->comment;
Adam Lesinski4488f1c2017-05-26 17:33:38 -0700114 symbol.allow_new = res->allow_new;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700115 if (!table->SetSymbolState(res->name, res->id, symbol, diag)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700116 return false;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800117 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700118 }
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800119
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700120 if (res->value) {
121 // Attach the comment, source and config to the value.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700122 res->value->SetComment(std::move(res->comment));
123 res->value->SetSource(std::move(res->source));
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800124
Adam Lesinski4488f1c2017-05-26 17:33:38 -0700125 if (!table->AddResource(res->name, res->id, res->config, res->product, std::move(res->value),
126 diag)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700127 return false;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800128 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700129 }
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800130
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700131 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700132 for (ParsedResource& child : res->child_resources) {
133 error |= !AddResourcesToTable(table, diag, &child);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700134 }
135 return !error;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800136}
137
138// Convenient aliases for more readable function calls.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700139enum { kAllowRawString = true, kNoRawString = false };
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800140
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700141ResourceParser::ResourceParser(IDiagnostics* diag, ResourceTable* table,
142 const Source& source,
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700143 const ConfigDescription& config,
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700144 const ResourceParserOptions& options)
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700145 : diag_(diag),
146 table_(table),
147 source_(source),
148 config_(config),
149 options_(options) {}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800150
151/**
152 * Build a string from XML that converts nested elements into Span objects.
153 */
Adam Lesinski75421622017-01-06 15:20:04 -0800154bool ResourceParser::FlattenXmlSubtree(
155 xml::XmlPullParser* parser, std::string* out_raw_string, StyleString* out_style_string,
156 std::vector<UntranslatableSection>* out_untranslatable_sections) {
157 // Keeps track of formatting tags (<b>, <i>) and the range of characters for which they apply.
Adam Lesinski8049f3d2017-03-31 18:28:14 -0700158 // The stack elements refer to the indices in out_style_string->spans.
159 // By first adding to the out_style_string->spans vector, and then using the stack to refer
160 // to this vector, the original order of tags is preserved in cases such as <b><i>hello</b></i>.
161 std::vector<size_t> span_stack;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800162
Adam Lesinski75421622017-01-06 15:20:04 -0800163 // Clear the output variables.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700164 out_raw_string->clear();
165 out_style_string->spans.clear();
Adam Lesinski75421622017-01-06 15:20:04 -0800166 out_untranslatable_sections->clear();
167
168 // The StringBuilder will concatenate the various segments of text which are initially
169 // separated by tags. It also handles unicode escape codes and quotations.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700170 util::StringBuilder builder;
Adam Lesinski75421622017-01-06 15:20:04 -0800171
172 // The first occurrence of a <xliff:g> tag. Nested <xliff:g> tags are illegal.
173 Maybe<size_t> untranslatable_start_depth;
174
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700175 size_t depth = 1;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700176 while (xml::XmlPullParser::IsGoodEvent(parser->Next())) {
177 const xml::XmlPullParser::Event event = parser->event();
Adam Lesinski75421622017-01-06 15:20:04 -0800178
179 if (event == xml::XmlPullParser::Event::kStartElement) {
180 if (parser->element_namespace().empty()) {
181 // This is an HTML tag which we encode as a span. Add it to the span stack.
182 std::string span_name = parser->element_name();
183 const auto end_attr_iter = parser->end_attributes();
184 for (auto attr_iter = parser->begin_attributes(); attr_iter != end_attr_iter; ++attr_iter) {
185 span_name += ";";
186 span_name += attr_iter->name;
187 span_name += "=";
188 span_name += attr_iter->value;
189 }
190
191 // Make sure the string is representable in our binary format.
192 if (builder.Utf16Len() > std::numeric_limits<uint32_t>::max()) {
193 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
194 << "style string '" << builder.ToString() << "' is too long");
195 return false;
196 }
197
Adam Lesinski8049f3d2017-03-31 18:28:14 -0700198 out_style_string->spans.push_back(
199 Span{std::move(span_name), static_cast<uint32_t>(builder.Utf16Len())});
200 span_stack.push_back(out_style_string->spans.size() - 1);
Adam Lesinski75421622017-01-06 15:20:04 -0800201 } else if (parser->element_namespace() == sXliffNamespaceUri) {
202 if (parser->element_name() == "g") {
203 if (untranslatable_start_depth) {
204 // We've already encountered an <xliff:g> tag, and nested <xliff:g> tags are illegal.
205 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
206 << "illegal nested XLIFF 'g' tag");
207 return false;
208 } else {
209 // Mark the start of an untranslatable section. Use UTF8 indices/lengths.
210 untranslatable_start_depth = depth;
211 const size_t current_idx = builder.ToString().size();
212 out_untranslatable_sections->push_back(UntranslatableSection{current_idx, current_idx});
213 }
214 }
215 // Ignore other xliff tags, they get handled by other tools.
216
217 } else {
218 // Besides XLIFF, any other namespaced tag is unsupported and ignored.
219 diag_->Warn(DiagMessage(source_.WithLine(parser->line_number()))
220 << "ignoring element '" << parser->element_name()
221 << "' with unknown namespace '" << parser->element_namespace() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700222 }
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700223
Adam Lesinski75421622017-01-06 15:20:04 -0800224 // Enter one level inside the element.
225 depth++;
226 } else if (event == xml::XmlPullParser::Event::kText) {
227 // Record both the raw text and append to the builder to deal with escape sequences
228 // and quotations.
229 out_raw_string->append(parser->text());
230 builder.Append(parser->text());
231 } else if (event == xml::XmlPullParser::Event::kEndElement) {
232 // Return one level from within the element.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700233 depth--;
234 if (depth == 0) {
235 break;
236 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800237
Adam Lesinski75421622017-01-06 15:20:04 -0800238 if (parser->element_namespace().empty()) {
239 // This is an HTML tag which we encode as a span. Update the span
240 // stack and pop the top entry.
Adam Lesinski8049f3d2017-03-31 18:28:14 -0700241 Span& top_span = out_style_string->spans[span_stack.back()];
Adam Lesinski75421622017-01-06 15:20:04 -0800242 top_span.last_char = builder.Utf16Len() - 1;
Adam Lesinski75421622017-01-06 15:20:04 -0800243 span_stack.pop_back();
244 } else if (untranslatable_start_depth == make_value(depth)) {
245 // This is the end of an untranslatable section. Use UTF8 indices/lengths.
246 UntranslatableSection& untranslatable_section = out_untranslatable_sections->back();
247 untranslatable_section.end = builder.ToString().size();
248 untranslatable_start_depth = {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700249 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700250 } else if (event == xml::XmlPullParser::Event::kComment) {
Adam Lesinski75421622017-01-06 15:20:04 -0800251 // Ignore.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700252 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700253 LOG(FATAL) << "unhandled XML event";
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700254 }
255 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700256
Adam Lesinski75421622017-01-06 15:20:04 -0800257 CHECK(span_stack.empty()) << "spans haven't been fully processed";
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700258 out_style_string->str = builder.ToString();
Adam Lesinski75421622017-01-06 15:20:04 -0800259 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800260}
261
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700262bool ResourceParser::Parse(xml::XmlPullParser* parser) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700263 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700264 const size_t depth = parser->depth();
265 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
266 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700267 // Skip comments and text.
268 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800269 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700270
Adam Lesinski060b53d2017-07-28 17:10:35 -0700271 if (!parser->element_namespace().empty() || parser->element_name() != "resources") {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700272 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700273 << "root element must be <resources>");
274 return false;
275 }
276
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700277 error |= !ParseResources(parser);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700278 break;
279 };
280
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700281 if (parser->event() == xml::XmlPullParser::Event::kBadDocument) {
282 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
283 << "xml parser error: " << parser->error());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700284 return false;
285 }
286 return !error;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800287}
288
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700289bool ResourceParser::ParseResources(xml::XmlPullParser* parser) {
290 std::set<ResourceName> stripped_resources;
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700291
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700292 bool error = false;
293 std::string comment;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700294 const size_t depth = parser->depth();
295 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
296 const xml::XmlPullParser::Event event = parser->event();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700297 if (event == xml::XmlPullParser::Event::kComment) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700298 comment = parser->comment();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700299 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800300 }
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700301
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700302 if (event == xml::XmlPullParser::Event::kText) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700303 if (!util::TrimWhitespace(parser->text()).empty()) {
304 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700305 << "plain text not allowed here");
306 error = true;
307 }
308 continue;
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700309 }
310
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700311 CHECK(event == xml::XmlPullParser::Event::kStartElement);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700312
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700313 if (!parser->element_namespace().empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700314 // Skip unknown namespace.
315 continue;
316 }
317
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700318 std::string element_name = parser->element_name();
319 if (element_name == "skip" || element_name == "eat-comment") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700320 comment = "";
321 continue;
322 }
323
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700324 ParsedResource parsed_resource;
325 parsed_resource.config = config_;
326 parsed_resource.source = source_.WithLine(parser->line_number());
327 parsed_resource.comment = std::move(comment);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700328
329 // Extract the product name if it exists.
Adam Lesinski060b53d2017-07-28 17:10:35 -0700330 if (Maybe<StringPiece> maybe_product = xml::FindNonEmptyAttribute(parser, "product")) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800331 parsed_resource.product = maybe_product.value().to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700332 }
333
334 // Parse the resource regardless of product.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700335 if (!ParseResource(parser, &parsed_resource)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700336 error = true;
337 continue;
338 }
339
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700340 if (!AddResourcesToTable(table_, diag_, &parsed_resource)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700341 error = true;
342 }
343 }
344
345 // Check that we included at least one variant of each stripped resource.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700346 for (const ResourceName& stripped_resource : stripped_resources) {
347 if (!table_->FindResource(stripped_resource)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700348 // Failed to find the resource.
Adam Lesinski060b53d2017-07-28 17:10:35 -0700349 diag_->Error(DiagMessage(source_) << "resource '" << stripped_resource
350 << "' was filtered out but no product variant remains");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700351 error = true;
352 }
353 }
354
355 return !error;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800356}
357
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700358bool ResourceParser::ParseResource(xml::XmlPullParser* parser,
359 ParsedResource* out_resource) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700360 struct ItemTypeFormat {
361 ResourceType type;
362 uint32_t format;
363 };
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800364
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700365 using BagParseFunc = std::function<bool(ResourceParser*, xml::XmlPullParser*,
366 ParsedResource*)>;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800367
Adam Lesinski86d67df2017-01-31 13:47:27 -0800368 static const auto elToItemMap = ImmutableMap<std::string, ItemTypeFormat>::CreatePreSorted({
369 {"bool", {ResourceType::kBool, android::ResTable_map::TYPE_BOOLEAN}},
370 {"color", {ResourceType::kColor, android::ResTable_map::TYPE_COLOR}},
371 {"configVarying", {ResourceType::kConfigVarying, android::ResTable_map::TYPE_ANY}},
372 {"dimen",
373 {ResourceType::kDimen,
374 android::ResTable_map::TYPE_FLOAT | android::ResTable_map::TYPE_FRACTION |
375 android::ResTable_map::TYPE_DIMENSION}},
376 {"drawable", {ResourceType::kDrawable, android::ResTable_map::TYPE_COLOR}},
377 {"fraction",
378 {ResourceType::kFraction,
379 android::ResTable_map::TYPE_FLOAT | android::ResTable_map::TYPE_FRACTION |
380 android::ResTable_map::TYPE_DIMENSION}},
381 {"integer", {ResourceType::kInteger, android::ResTable_map::TYPE_INTEGER}},
382 {"string", {ResourceType::kString, android::ResTable_map::TYPE_STRING}},
383 });
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800384
Adam Lesinski86d67df2017-01-31 13:47:27 -0800385 static const auto elToBagMap = ImmutableMap<std::string, BagParseFunc>::CreatePreSorted({
386 {"add-resource", std::mem_fn(&ResourceParser::ParseAddResource)},
387 {"array", std::mem_fn(&ResourceParser::ParseArray)},
388 {"attr", std::mem_fn(&ResourceParser::ParseAttr)},
389 {"configVarying",
390 std::bind(&ResourceParser::ParseStyle, std::placeholders::_1, ResourceType::kConfigVarying,
391 std::placeholders::_2, std::placeholders::_3)},
392 {"declare-styleable", std::mem_fn(&ResourceParser::ParseDeclareStyleable)},
393 {"integer-array", std::mem_fn(&ResourceParser::ParseIntegerArray)},
394 {"java-symbol", std::mem_fn(&ResourceParser::ParseSymbol)},
Adam Lesinski46c4d722017-08-23 13:03:56 -0700395 {"overlayable", std::mem_fn(&ResourceParser::ParseOverlayable)},
Adam Lesinski86d67df2017-01-31 13:47:27 -0800396 {"plurals", std::mem_fn(&ResourceParser::ParsePlural)},
397 {"public", std::mem_fn(&ResourceParser::ParsePublic)},
398 {"public-group", std::mem_fn(&ResourceParser::ParsePublicGroup)},
399 {"string-array", std::mem_fn(&ResourceParser::ParseStringArray)},
400 {"style", std::bind(&ResourceParser::ParseStyle, std::placeholders::_1, ResourceType::kStyle,
401 std::placeholders::_2, std::placeholders::_3)},
402 {"symbol", std::mem_fn(&ResourceParser::ParseSymbol)},
403 });
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800404
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700405 std::string resource_type = parser->element_name();
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800406
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700407 // The value format accepted for this resource.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700408 uint32_t resource_format = 0u;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800409
Adam Lesinski86d67df2017-01-31 13:47:27 -0800410 bool can_be_item = true;
411 bool can_be_bag = true;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700412 if (resource_type == "item") {
Adam Lesinski86d67df2017-01-31 13:47:27 -0800413 can_be_bag = false;
414
Adam Lesinskie597d682017-06-01 17:16:44 -0700415 // The default format for <item> is any. If a format attribute is present, that one will
416 // override the default.
417 resource_format = android::ResTable_map::TYPE_ANY;
418
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700419 // Items have their type encoded in the type attribute.
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700420 if (Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type")) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800421 resource_type = maybe_type.value().to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700422 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700423 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700424 << "<item> must have a 'type' attribute");
425 return false;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800426 }
427
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700428 if (Maybe<StringPiece> maybe_format = xml::FindNonEmptyAttribute(parser, "format")) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700429 // An explicit format for this resource was specified. The resource will
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700430 // retain its type in its name, but the accepted value for this type is
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700431 // overridden.
Adam Lesinskid5fd76a2017-05-16 12:18:08 -0700432 resource_format = ParseFormatTypeNoEnumsOrFlags(maybe_format.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700433 if (!resource_format) {
434 diag_->Error(DiagMessage(out_resource->source)
435 << "'" << maybe_format.value()
436 << "' is an invalid format");
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800437 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700438 }
439 }
Adam Lesinski86d67df2017-01-31 13:47:27 -0800440 } else if (resource_type == "bag") {
441 can_be_item = false;
442
443 // Bags have their type encoded in the type attribute.
444 if (Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type")) {
445 resource_type = maybe_type.value().to_string();
446 } else {
447 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
448 << "<bag> must have a 'type' attribute");
449 return false;
450 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700451 }
452
453 // Get the name of the resource. This will be checked later, because not all
454 // XML elements require a name.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700455 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700456
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700457 if (resource_type == "id") {
458 if (!maybe_name) {
459 diag_->Error(DiagMessage(out_resource->source)
460 << "<" << parser->element_name()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700461 << "> missing 'name' attribute");
462 return false;
463 }
464
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700465 out_resource->name.type = ResourceType::kId;
Adam Lesinskid5083f62017-01-16 15:07:21 -0800466 out_resource->name.entry = maybe_name.value().to_string();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700467 out_resource->value = util::make_unique<Id>();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700468 return true;
469 }
470
Adam Lesinski86d67df2017-01-31 13:47:27 -0800471 if (can_be_item) {
472 const auto item_iter = elToItemMap.find(resource_type);
473 if (item_iter != elToItemMap.end()) {
474 // This is an item, record its type and format and start parsing.
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700475
Adam Lesinski86d67df2017-01-31 13:47:27 -0800476 if (!maybe_name) {
477 diag_->Error(DiagMessage(out_resource->source)
478 << "<" << parser->element_name() << "> missing 'name' attribute");
479 return false;
480 }
481
482 out_resource->name.type = item_iter->second.type;
483 out_resource->name.entry = maybe_name.value().to_string();
484
Adam Lesinskie597d682017-06-01 17:16:44 -0700485 // Only use the implied format of the type when there is no explicit format.
486 if (resource_format == 0u) {
Adam Lesinski86d67df2017-01-31 13:47:27 -0800487 resource_format = item_iter->second.format;
488 }
489
490 if (!ParseItem(parser, out_resource, resource_format)) {
491 return false;
492 }
493 return true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700494 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700495 }
496
497 // This might be a bag or something.
Adam Lesinski86d67df2017-01-31 13:47:27 -0800498 if (can_be_bag) {
499 const auto bag_iter = elToBagMap.find(resource_type);
500 if (bag_iter != elToBagMap.end()) {
501 // Ensure we have a name (unless this is a <public-group>).
Adam Lesinski46c4d722017-08-23 13:03:56 -0700502 if (resource_type != "public-group" && resource_type != "overlayable") {
Adam Lesinski86d67df2017-01-31 13:47:27 -0800503 if (!maybe_name) {
504 diag_->Error(DiagMessage(out_resource->source)
505 << "<" << parser->element_name() << "> missing 'name' attribute");
506 return false;
507 }
508
509 out_resource->name.entry = maybe_name.value().to_string();
510 }
511
512 // Call the associated parse method. The type will be filled in by the
513 // parse func.
514 if (!bag_iter->second(this, parser, out_resource)) {
515 return false;
516 }
517 return true;
518 }
519 }
520
521 if (can_be_item) {
522 // Try parsing the elementName (or type) as a resource. These shall only be
523 // resources like 'layout' or 'xml' and they can only be references.
524 const ResourceType* parsed_type = ParseResourceType(resource_type);
525 if (parsed_type) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700526 if (!maybe_name) {
527 diag_->Error(DiagMessage(out_resource->source)
528 << "<" << parser->element_name()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700529 << "> missing 'name' attribute");
530 return false;
531 }
532
Adam Lesinski86d67df2017-01-31 13:47:27 -0800533 out_resource->name.type = *parsed_type;
Adam Lesinskid5083f62017-01-16 15:07:21 -0800534 out_resource->name.entry = maybe_name.value().to_string();
Adam Lesinski86d67df2017-01-31 13:47:27 -0800535 out_resource->value = ParseXml(parser, android::ResTable_map::TYPE_REFERENCE, kNoRawString);
536 if (!out_resource->value) {
537 diag_->Error(DiagMessage(out_resource->source)
538 << "invalid value for type '" << *parsed_type << "'. Expected a reference");
539 return false;
540 }
541 return true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700542 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700543 }
544
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700545 diag_->Warn(DiagMessage(out_resource->source)
546 << "unknown resource type '" << parser->element_name() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700547 return false;
548}
549
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700550bool ResourceParser::ParseItem(xml::XmlPullParser* parser,
551 ParsedResource* out_resource,
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700552 const uint32_t format) {
553 if (format == android::ResTable_map::TYPE_STRING) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700554 return ParseString(parser, out_resource);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700555 }
556
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700557 out_resource->value = ParseXml(parser, format, kNoRawString);
558 if (!out_resource->value) {
559 diag_->Error(DiagMessage(out_resource->source) << "invalid "
560 << out_resource->name.type);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700561 return false;
562 }
563 return true;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -0800564}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800565
566/**
567 * Reads the entire XML subtree and attempts to parse it as some Item,
568 * with typeMask denoting which items it can be. If allowRawValue is
569 * true, a RawString is returned if the XML couldn't be parsed as
570 * an Item. If allowRawValue is false, nullptr is returned in this
571 * case.
572 */
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700573std::unique_ptr<Item> ResourceParser::ParseXml(xml::XmlPullParser* parser,
574 const uint32_t type_mask,
575 const bool allow_raw_value) {
576 const size_t begin_xml_line = parser->line_number();
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800577
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700578 std::string raw_value;
579 StyleString style_string;
Adam Lesinski75421622017-01-06 15:20:04 -0800580 std::vector<UntranslatableSection> untranslatable_sections;
581 if (!FlattenXmlSubtree(parser, &raw_value, &style_string, &untranslatable_sections)) {
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800582 return {};
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700583 }
584
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700585 if (!style_string.spans.empty()) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700586 // This can only be a StyledString.
Adam Lesinski75421622017-01-06 15:20:04 -0800587 std::unique_ptr<StyledString> styled_string =
588 util::make_unique<StyledString>(table_->string_pool.MakeRef(
Adam Lesinski060b53d2017-07-28 17:10:35 -0700589 style_string, StringPool::Context(StringPool::Context::kNormalPriority, config_)));
Adam Lesinski75421622017-01-06 15:20:04 -0800590 styled_string->untranslatable_sections = std::move(untranslatable_sections);
591 return std::move(styled_string);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700592 }
593
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700594 auto on_create_reference = [&](const ResourceName& name) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700595 // name.package can be empty here, as it will assume the package name of the
596 // table.
597 std::unique_ptr<Id> id = util::make_unique<Id>();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700598 id->SetSource(source_.WithLine(begin_xml_line));
599 table_->AddResource(name, {}, {}, std::move(id), diag_);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700600 };
601
602 // Process the raw value.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700603 std::unique_ptr<Item> processed_item =
604 ResourceUtils::TryParseItemForAttribute(raw_value, type_mask,
605 on_create_reference);
606 if (processed_item) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700607 // Fix up the reference.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700608 if (Reference* ref = ValueCast<Reference>(processed_item.get())) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -0700609 ResolvePackage(parser, ref);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700610 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700611 return processed_item;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700612 }
613
614 // Try making a regular string.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700615 if (type_mask & android::ResTable_map::TYPE_STRING) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700616 // Use the trimmed, escaped string.
Adam Lesinski75421622017-01-06 15:20:04 -0800617 std::unique_ptr<String> string = util::make_unique<String>(
618 table_->string_pool.MakeRef(style_string.str, StringPool::Context(config_)));
619 string->untranslatable_sections = std::move(untranslatable_sections);
620 return std::move(string);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700621 }
622
Adam Lesinskibab4ef52017-06-01 15:22:57 -0700623 // If the text is empty, and the value is not allowed to be a string, encode it as a @null.
624 if (util::TrimWhitespace(raw_value).empty()) {
625 return ResourceUtils::MakeNull();
626 }
627
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700628 if (allow_raw_value) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700629 // We can't parse this so return a RawString if we are allowed.
630 return util::make_unique<RawString>(
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700631 table_->string_pool.MakeRef(raw_value, StringPool::Context(config_)));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700632 }
633 return {};
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800634}
635
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700636bool ResourceParser::ParseString(xml::XmlPullParser* parser,
637 ParsedResource* out_resource) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700638 bool formatted = true;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700639 if (Maybe<StringPiece> formatted_attr =
640 xml::FindAttribute(parser, "formatted")) {
641 Maybe<bool> maybe_formatted =
642 ResourceUtils::ParseBool(formatted_attr.value());
643 if (!maybe_formatted) {
644 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700645 << "invalid value for 'formatted'. Must be a boolean");
646 return false;
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800647 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700648 formatted = maybe_formatted.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700649 }
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800650
Adam Lesinski75421622017-01-06 15:20:04 -0800651 bool translatable = options_.translatable;
652 if (Maybe<StringPiece> translatable_attr = xml::FindAttribute(parser, "translatable")) {
653 Maybe<bool> maybe_translatable = ResourceUtils::ParseBool(translatable_attr.value());
654 if (!maybe_translatable) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700655 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700656 << "invalid value for 'translatable'. Must be a boolean");
657 return false;
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800658 }
Adam Lesinski75421622017-01-06 15:20:04 -0800659 translatable = maybe_translatable.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700660 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800661
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700662 out_resource->value =
663 ParseXml(parser, android::ResTable_map::TYPE_STRING, kNoRawString);
664 if (!out_resource->value) {
665 diag_->Error(DiagMessage(out_resource->source) << "not a valid string");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700666 return false;
667 }
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800668
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700669 if (String* string_value = ValueCast<String>(out_resource->value.get())) {
Adam Lesinski75421622017-01-06 15:20:04 -0800670 string_value->SetTranslatable(translatable);
Adam Lesinski393b5f02015-12-17 13:03:11 -0800671
Adam Lesinski75421622017-01-06 15:20:04 -0800672 if (formatted && translatable) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700673 if (!util::VerifyJavaStringFormat(*string_value->value)) {
674 DiagMessage msg(out_resource->source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700675 msg << "multiple substitutions specified in non-positional format; "
676 "did you mean to add the formatted=\"false\" attribute?";
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700677 if (options_.error_on_positional_arguments) {
678 diag_->Error(msg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700679 return false;
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800680 }
Adam Lesinski393b5f02015-12-17 13:03:11 -0800681
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700682 diag_->Warn(msg);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700683 }
Adam Lesinskib23f1e02015-11-03 12:24:17 -0800684 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700685
Adam Lesinski75421622017-01-06 15:20:04 -0800686 } else if (StyledString* string_value = ValueCast<StyledString>(out_resource->value.get())) {
687 string_value->SetTranslatable(translatable);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700688 }
689 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800690}
691
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700692bool ResourceParser::ParsePublic(xml::XmlPullParser* parser,
693 ParsedResource* out_resource) {
Adam Lesinski46c4d722017-08-23 13:03:56 -0700694 if (out_resource->config != ConfigDescription::DefaultConfig()) {
695 diag_->Warn(DiagMessage(out_resource->source)
696 << "ignoring configuration '" << out_resource->config << "' for <public> tag");
697 }
698
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700699 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
700 if (!maybe_type) {
701 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700702 << "<public> must have a 'type' attribute");
703 return false;
704 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800705
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700706 const ResourceType* parsed_type = ParseResourceType(maybe_type.value());
707 if (!parsed_type) {
708 diag_->Error(DiagMessage(out_resource->source) << "invalid resource type '"
709 << maybe_type.value()
710 << "' in <public>");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700711 return false;
712 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800713
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700714 out_resource->name.type = *parsed_type;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800715
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800716 if (Maybe<StringPiece> maybe_id_str = xml::FindNonEmptyAttribute(parser, "id")) {
717 Maybe<ResourceId> maybe_id = ResourceUtils::ParseResourceId(maybe_id_str.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700718 if (!maybe_id) {
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800719 diag_->Error(DiagMessage(out_resource->source)
720 << "invalid resource ID '" << maybe_id_str.value() << "' in <public>");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700721 return false;
Adam Lesinski27afb9e2015-11-06 18:25:04 -0800722 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700723 out_resource->id = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700724 }
Adam Lesinski27afb9e2015-11-06 18:25:04 -0800725
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700726 if (*parsed_type == ResourceType::kId) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700727 // An ID marked as public is also the definition of an ID.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700728 out_resource->value = util::make_unique<Id>();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700729 }
Adam Lesinskibf0bd0f2016-06-01 15:31:50 -0700730
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700731 out_resource->symbol_state = SymbolState::kPublic;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700732 return true;
Adam Lesinski27afb9e2015-11-06 18:25:04 -0800733}
734
Adam Lesinski46c4d722017-08-23 13:03:56 -0700735bool ResourceParser::ParsePublicGroup(xml::XmlPullParser* parser, ParsedResource* out_resource) {
736 if (out_resource->config != ConfigDescription::DefaultConfig()) {
737 diag_->Warn(DiagMessage(out_resource->source)
738 << "ignoring configuration '" << out_resource->config
739 << "' for <public-group> tag");
740 }
741
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700742 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
743 if (!maybe_type) {
744 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700745 << "<public-group> must have a 'type' attribute");
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800746 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700747 }
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800748
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700749 const ResourceType* parsed_type = ParseResourceType(maybe_type.value());
750 if (!parsed_type) {
751 diag_->Error(DiagMessage(out_resource->source) << "invalid resource type '"
752 << maybe_type.value()
753 << "' in <public-group>");
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800754 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700755 }
756
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700757 Maybe<StringPiece> maybe_id_str =
758 xml::FindNonEmptyAttribute(parser, "first-id");
759 if (!maybe_id_str) {
760 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700761 << "<public-group> must have a 'first-id' attribute");
762 return false;
763 }
764
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700765 Maybe<ResourceId> maybe_id =
766 ResourceUtils::ParseResourceId(maybe_id_str.value());
767 if (!maybe_id) {
768 diag_->Error(DiagMessage(out_resource->source) << "invalid resource ID '"
769 << maybe_id_str.value()
770 << "' in <public-group>");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700771 return false;
772 }
773
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700774 ResourceId next_id = maybe_id.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700775
776 std::string comment;
777 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700778 const size_t depth = parser->depth();
779 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
780 if (parser->event() == xml::XmlPullParser::Event::kComment) {
Adam Lesinskid5083f62017-01-16 15:07:21 -0800781 comment = util::TrimWhitespace(parser->comment()).to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700782 continue;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700783 } else if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700784 // Skip text.
785 continue;
786 }
787
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700788 const Source item_source = source_.WithLine(parser->line_number());
789 const std::string& element_namespace = parser->element_namespace();
790 const std::string& element_name = parser->element_name();
791 if (element_namespace.empty() && element_name == "public") {
792 Maybe<StringPiece> maybe_name =
793 xml::FindNonEmptyAttribute(parser, "name");
794 if (!maybe_name) {
795 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700796 << "<public> must have a 'name' attribute");
797 error = true;
798 continue;
799 }
800
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700801 if (xml::FindNonEmptyAttribute(parser, "id")) {
802 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700803 << "'id' is ignored within <public-group>");
804 error = true;
805 continue;
806 }
807
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700808 if (xml::FindNonEmptyAttribute(parser, "type")) {
809 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700810 << "'type' is ignored within <public-group>");
811 error = true;
812 continue;
813 }
814
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700815 ParsedResource child_resource;
816 child_resource.name.type = *parsed_type;
Adam Lesinskid5083f62017-01-16 15:07:21 -0800817 child_resource.name.entry = maybe_name.value().to_string();
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700818 child_resource.id = next_id;
819 child_resource.comment = std::move(comment);
820 child_resource.source = item_source;
821 child_resource.symbol_state = SymbolState::kPublic;
822 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700823
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700824 next_id.id += 1;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700825
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700826 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
827 diag_->Error(DiagMessage(item_source) << ":" << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700828 error = true;
829 }
830 }
831 return !error;
Adam Lesinskia6fe3452015-12-09 15:20:52 -0800832}
833
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700834bool ResourceParser::ParseSymbolImpl(xml::XmlPullParser* parser,
835 ParsedResource* out_resource) {
836 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
837 if (!maybe_type) {
838 diag_->Error(DiagMessage(out_resource->source)
839 << "<" << parser->element_name()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700840 << "> must have a 'type' attribute");
841 return false;
842 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800843
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700844 const ResourceType* parsed_type = ParseResourceType(maybe_type.value());
845 if (!parsed_type) {
846 diag_->Error(DiagMessage(out_resource->source)
847 << "invalid resource type '" << maybe_type.value() << "' in <"
848 << parser->element_name() << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700849 return false;
850 }
851
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700852 out_resource->name.type = *parsed_type;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700853 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800854}
855
Adam Lesinski46c4d722017-08-23 13:03:56 -0700856bool ResourceParser::ParseSymbol(xml::XmlPullParser* parser, ParsedResource* out_resource) {
857 if (out_resource->config != ConfigDescription::DefaultConfig()) {
858 diag_->Warn(DiagMessage(out_resource->source)
859 << "ignoring configuration '" << out_resource->config << "' for <"
860 << parser->element_name() << "> tag");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700861 }
Adam Lesinski46c4d722017-08-23 13:03:56 -0700862
863 if (!ParseSymbolImpl(parser, out_resource)) {
864 return false;
865 }
866
867 out_resource->symbol_state = SymbolState::kPrivate;
868 return true;
869}
870
871bool ResourceParser::ParseOverlayable(xml::XmlPullParser* parser, ParsedResource* out_resource) {
872 if (out_resource->config != ConfigDescription::DefaultConfig()) {
873 diag_->Warn(DiagMessage(out_resource->source)
874 << "ignoring configuration '" << out_resource->config << "' for <overlayable> tag");
875 }
876
877 if (Maybe<StringPiece> maybe_policy = xml::FindNonEmptyAttribute(parser, "policy")) {
878 const StringPiece& policy = maybe_policy.value();
879 if (policy != "system") {
880 diag_->Error(DiagMessage(out_resource->source)
881 << "<overlayable> has invalid policy '" << policy << "'");
882 return false;
883 }
884 }
885
886 bool error = false;
887 const size_t depth = parser->depth();
888 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
889 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
890 // Skip text/comments.
891 continue;
892 }
893
894 const Source item_source = source_.WithLine(parser->line_number());
895 const std::string& element_namespace = parser->element_namespace();
896 const std::string& element_name = parser->element_name();
897 if (element_namespace.empty() && element_name == "item") {
898 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
899 if (!maybe_name) {
900 diag_->Error(DiagMessage(item_source)
901 << "<item> within an <overlayable> tag must have a 'name' attribute");
902 error = true;
903 continue;
904 }
905
906 Maybe<StringPiece> maybe_type = xml::FindNonEmptyAttribute(parser, "type");
907 if (!maybe_type) {
908 diag_->Error(DiagMessage(item_source)
909 << "<item> within an <overlayable> tag must have a 'type' attribute");
910 error = true;
911 continue;
912 }
913
914 const ResourceType* type = ParseResourceType(maybe_type.value());
915 if (type == nullptr) {
916 diag_->Error(DiagMessage(out_resource->source)
917 << "invalid resource type '" << maybe_type.value()
918 << "' in <item> within an <overlayable>");
919 error = true;
920 continue;
921 }
922
923 // TODO(b/64980941): Mark the symbol as overlayable and allow marking which entity can overlay
924 // the resource (system/app).
925
926 xml::XmlPullParser::SkipCurrentElement(parser);
927 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
928 diag_->Error(DiagMessage(item_source) << ":" << element_name << ">");
929 error = true;
930 }
931 }
932 return !error;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800933}
934
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700935bool ResourceParser::ParseAddResource(xml::XmlPullParser* parser,
936 ParsedResource* out_resource) {
937 if (ParseSymbolImpl(parser, out_resource)) {
938 out_resource->symbol_state = SymbolState::kUndefined;
Adam Lesinski4488f1c2017-05-26 17:33:38 -0700939 out_resource->allow_new = true;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700940 return true;
941 }
942 return false;
943}
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700944
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700945bool ResourceParser::ParseAttr(xml::XmlPullParser* parser,
946 ParsedResource* out_resource) {
947 return ParseAttrImpl(parser, out_resource, false);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700948}
949
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700950bool ResourceParser::ParseAttrImpl(xml::XmlPullParser* parser,
951 ParsedResource* out_resource, bool weak) {
952 out_resource->name.type = ResourceType::kAttr;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700953
954 // Attributes only end up in default configuration.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700955 if (out_resource->config != ConfigDescription::DefaultConfig()) {
956 diag_->Warn(DiagMessage(out_resource->source)
957 << "ignoring configuration '" << out_resource->config
958 << "' for attribute " << out_resource->name);
959 out_resource->config = ConfigDescription::DefaultConfig();
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700960 }
961
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700962 uint32_t type_mask = 0;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700963
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700964 Maybe<StringPiece> maybe_format = xml::FindAttribute(parser, "format");
965 if (maybe_format) {
966 type_mask = ParseFormatAttribute(maybe_format.value());
967 if (type_mask == 0) {
968 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
969 << "invalid attribute format '" << maybe_format.value()
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700970 << "'");
971 return false;
972 }
973 }
974
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700975 Maybe<int32_t> maybe_min, maybe_max;
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700976
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700977 if (Maybe<StringPiece> maybe_min_str = xml::FindAttribute(parser, "min")) {
978 StringPiece min_str = util::TrimWhitespace(maybe_min_str.value());
979 if (!min_str.empty()) {
980 std::u16string min_str16 = util::Utf8ToUtf16(min_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700981 android::Res_value value;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700982 if (android::ResTable::stringToInt(min_str16.data(), min_str16.size(),
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700983 &value)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700984 maybe_min = static_cast<int32_t>(value.data);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700985 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800986 }
987
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700988 if (!maybe_min) {
989 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
990 << "invalid 'min' value '" << min_str << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700991 return false;
992 }
993 }
994
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700995 if (Maybe<StringPiece> maybe_max_str = xml::FindAttribute(parser, "max")) {
996 StringPiece max_str = util::TrimWhitespace(maybe_max_str.value());
997 if (!max_str.empty()) {
998 std::u16string max_str16 = util::Utf8ToUtf16(max_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700999 android::Res_value value;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001000 if (android::ResTable::stringToInt(max_str16.data(), max_str16.size(),
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001001 &value)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001002 maybe_max = static_cast<int32_t>(value.data);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001003 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001004 }
1005
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001006 if (!maybe_max) {
1007 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1008 << "invalid 'max' value '" << max_str << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001009 return false;
1010 }
1011 }
1012
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001013 if ((maybe_min || maybe_max) &&
1014 (type_mask & android::ResTable_map::TYPE_INTEGER) == 0) {
1015 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001016 << "'min' and 'max' can only be used when format='integer'");
1017 return false;
1018 }
1019
1020 struct SymbolComparator {
Yi Kong087e2d42017-05-02 12:49:25 -07001021 bool operator()(const Attribute::Symbol& a, const Attribute::Symbol& b) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001022 return a.symbol.name.value() < b.symbol.name.value();
1023 }
1024 };
1025
1026 std::set<Attribute::Symbol, SymbolComparator> items;
1027
1028 std::string comment;
1029 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001030 const size_t depth = parser->depth();
1031 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1032 if (parser->event() == xml::XmlPullParser::Event::kComment) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08001033 comment = util::TrimWhitespace(parser->comment()).to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001034 continue;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001035 } else if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001036 // Skip text.
1037 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001038 }
1039
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001040 const Source item_source = source_.WithLine(parser->line_number());
1041 const std::string& element_namespace = parser->element_namespace();
1042 const std::string& element_name = parser->element_name();
1043 if (element_namespace.empty() &&
1044 (element_name == "flag" || element_name == "enum")) {
1045 if (element_name == "enum") {
1046 if (type_mask & android::ResTable_map::TYPE_FLAGS) {
1047 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001048 << "can not define an <enum>; already defined a <flag>");
1049 error = true;
1050 continue;
1051 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001052 type_mask |= android::ResTable_map::TYPE_ENUM;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001053
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001054 } else if (element_name == "flag") {
1055 if (type_mask & android::ResTable_map::TYPE_ENUM) {
1056 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001057 << "can not define a <flag>; already defined an <enum>");
1058 error = true;
1059 continue;
1060 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001061 type_mask |= android::ResTable_map::TYPE_FLAGS;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001062 }
1063
1064 if (Maybe<Attribute::Symbol> s =
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001065 ParseEnumOrFlagItem(parser, element_name)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001066 Attribute::Symbol& symbol = s.value();
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001067 ParsedResource child_resource;
1068 child_resource.name = symbol.symbol.name.value();
1069 child_resource.source = item_source;
1070 child_resource.value = util::make_unique<Id>();
1071 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001072
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001073 symbol.symbol.SetComment(std::move(comment));
1074 symbol.symbol.SetSource(item_source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001075
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001076 auto insert_result = items.insert(std::move(symbol));
1077 if (!insert_result.second) {
1078 const Attribute::Symbol& existing_symbol = *insert_result.first;
1079 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001080 << "duplicate symbol '"
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001081 << existing_symbol.symbol.name.value().entry << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001082
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001083 diag_->Note(DiagMessage(existing_symbol.symbol.GetSource())
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001084 << "first defined here");
1085 error = true;
1086 }
1087 } else {
1088 error = true;
1089 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001090 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1091 diag_->Error(DiagMessage(item_source) << ":" << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001092 error = true;
1093 }
1094
1095 comment = {};
1096 }
1097
1098 if (error) {
1099 return false;
1100 }
1101
1102 std::unique_ptr<Attribute> attr = util::make_unique<Attribute>(weak);
1103 attr->symbols = std::vector<Attribute::Symbol>(items.begin(), items.end());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001104 attr->type_mask =
1105 type_mask ? type_mask : uint32_t(android::ResTable_map::TYPE_ANY);
1106 if (maybe_min) {
1107 attr->min_int = maybe_min.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001108 }
1109
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001110 if (maybe_max) {
1111 attr->max_int = maybe_max.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001112 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001113 out_resource->value = std::move(attr);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001114 return true;
1115}
1116
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001117Maybe<Attribute::Symbol> ResourceParser::ParseEnumOrFlagItem(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001118 xml::XmlPullParser* parser, const StringPiece& tag) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001119 const Source source = source_.WithLine(parser->line_number());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001120
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001121 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
1122 if (!maybe_name) {
1123 diag_->Error(DiagMessage(source) << "no attribute 'name' found for tag <"
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001124 << tag << ">");
1125 return {};
1126 }
1127
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001128 Maybe<StringPiece> maybe_value = xml::FindNonEmptyAttribute(parser, "value");
1129 if (!maybe_value) {
1130 diag_->Error(DiagMessage(source) << "no attribute 'value' found for tag <"
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001131 << tag << ">");
1132 return {};
1133 }
1134
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001135 std::u16string value16 = util::Utf8ToUtf16(maybe_value.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001136 android::Res_value val;
1137 if (!android::ResTable::stringToInt(value16.data(), value16.size(), &val)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001138 diag_->Error(DiagMessage(source) << "invalid value '" << maybe_value.value()
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001139 << "' for <" << tag
1140 << ">; must be an integer");
1141 return {};
1142 }
1143
1144 return Attribute::Symbol{
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001145 Reference(ResourceNameRef({}, ResourceType::kId, maybe_name.value())),
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001146 val.data};
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001147}
1148
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001149bool ResourceParser::ParseStyleItem(xml::XmlPullParser* parser, Style* style) {
1150 const Source source = source_.WithLine(parser->line_number());
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001151
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001152 Maybe<StringPiece> maybe_name = xml::FindNonEmptyAttribute(parser, "name");
1153 if (!maybe_name) {
1154 diag_->Error(DiagMessage(source) << "<item> must have a 'name' attribute");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001155 return false;
1156 }
1157
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001158 Maybe<Reference> maybe_key = ResourceUtils::ParseXmlAttributeName(maybe_name.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001159 if (!maybe_key) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001160 diag_->Error(DiagMessage(source) << "invalid attribute name '" << maybe_name.value() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001161 return false;
1162 }
1163
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001164 ResolvePackage(parser, &maybe_key.value());
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001165 maybe_key.value().SetSource(source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001166
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001167 std::unique_ptr<Item> value = ParseXml(parser, 0, kAllowRawString);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001168 if (!value) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001169 diag_->Error(DiagMessage(source) << "could not parse style item");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001170 return false;
1171 }
1172
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001173 style->entries.push_back(Style::Entry{std::move(maybe_key.value()), std::move(value)});
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001174 return true;
1175}
1176
Adam Lesinski86d67df2017-01-31 13:47:27 -08001177bool ResourceParser::ParseStyle(const ResourceType type, xml::XmlPullParser* parser,
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001178 ParsedResource* out_resource) {
Adam Lesinski86d67df2017-01-31 13:47:27 -08001179 out_resource->name.type = type;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001180
1181 std::unique_ptr<Style> style = util::make_unique<Style>();
1182
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001183 Maybe<StringPiece> maybe_parent = xml::FindAttribute(parser, "parent");
1184 if (maybe_parent) {
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001185 // 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 -07001186 if (!maybe_parent.value().empty()) {
1187 std::string err_str;
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001188 style->parent = ResourceUtils::ParseStyleParentReference(maybe_parent.value(), &err_str);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001189 if (!style->parent) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001190 diag_->Error(DiagMessage(out_resource->source) << err_str);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001191 return false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001192 }
1193
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001194 // Transform the namespace prefix to the actual package name, and mark the reference as
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001195 // private if appropriate.
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001196 ResolvePackage(parser, &style->parent.value());
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001197 }
1198
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001199 } else {
1200 // No parent was specified, so try inferring it from the style name.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001201 std::string style_name = out_resource->name.entry;
1202 size_t pos = style_name.find_last_of(u'.');
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001203 if (pos != std::string::npos) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001204 style->parent_inferred = true;
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001205 style->parent = Reference(ResourceName({}, ResourceType::kStyle, style_name.substr(0, pos)));
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001206 }
1207 }
1208
1209 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001210 const size_t depth = parser->depth();
1211 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1212 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001213 // Skip text and comments.
1214 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001215 }
1216
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001217 const std::string& element_namespace = parser->element_namespace();
1218 const std::string& element_name = parser->element_name();
1219 if (element_namespace == "" && element_name == "item") {
1220 error |= !ParseStyleItem(parser, style.get());
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001221
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001222 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1223 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1224 << ":" << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001225 error = true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001226 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001227 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001228
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001229 if (error) {
1230 return false;
1231 }
1232
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001233 out_resource->value = std::move(style);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001234 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001235}
1236
Adam Lesinskid5fd76a2017-05-16 12:18:08 -07001237bool ResourceParser::ParseArray(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1238 uint32_t resource_format = android::ResTable_map::TYPE_ANY;
1239 if (Maybe<StringPiece> format_attr = xml::FindNonEmptyAttribute(parser, "format")) {
1240 resource_format = ParseFormatTypeNoEnumsOrFlags(format_attr.value());
1241 if (resource_format == 0u) {
1242 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1243 << "'" << format_attr.value() << "' is an invalid format");
1244 return false;
1245 }
1246 }
1247 return ParseArrayImpl(parser, out_resource, resource_format);
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001248}
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001249
Adam Lesinskid5fd76a2017-05-16 12:18:08 -07001250bool ResourceParser::ParseIntegerArray(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1251 return ParseArrayImpl(parser, out_resource, android::ResTable_map::TYPE_INTEGER);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001252}
1253
Adam Lesinskid5fd76a2017-05-16 12:18:08 -07001254bool ResourceParser::ParseStringArray(xml::XmlPullParser* parser, ParsedResource* out_resource) {
1255 return ParseArrayImpl(parser, out_resource, android::ResTable_map::TYPE_STRING);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001256}
1257
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001258bool ResourceParser::ParseArrayImpl(xml::XmlPullParser* parser,
1259 ParsedResource* out_resource,
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001260 const uint32_t typeMask) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001261 out_resource->name.type = ResourceType::kArray;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001262
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001263 std::unique_ptr<Array> array = util::make_unique<Array>();
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001264
Adam Lesinski75421622017-01-06 15:20:04 -08001265 bool translatable = options_.translatable;
1266 if (Maybe<StringPiece> translatable_attr = xml::FindAttribute(parser, "translatable")) {
1267 Maybe<bool> maybe_translatable = ResourceUtils::ParseBool(translatable_attr.value());
1268 if (!maybe_translatable) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001269 diag_->Error(DiagMessage(out_resource->source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001270 << "invalid value for 'translatable'. Must be a boolean");
1271 return false;
Adam Lesinski458b8772016-04-25 14:20:21 -07001272 }
Adam Lesinski75421622017-01-06 15:20:04 -08001273 translatable = maybe_translatable.value();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001274 }
Adam Lesinski75421622017-01-06 15:20:04 -08001275 array->SetTranslatable(translatable);
Adam Lesinski458b8772016-04-25 14:20:21 -07001276
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001277 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001278 const size_t depth = parser->depth();
1279 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1280 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001281 // Skip text and comments.
1282 continue;
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001283 }
1284
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001285 const Source item_source = source_.WithLine(parser->line_number());
1286 const std::string& element_namespace = parser->element_namespace();
1287 const std::string& element_name = parser->element_name();
1288 if (element_namespace.empty() && element_name == "item") {
1289 std::unique_ptr<Item> item = ParseXml(parser, typeMask, kNoRawString);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001290 if (!item) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001291 diag_->Error(DiagMessage(item_source) << "could not parse array item");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001292 error = true;
1293 continue;
1294 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001295 item->SetSource(item_source);
Adam Lesinski4ffea042017-08-10 15:37:28 -07001296 array->elements.emplace_back(std::move(item));
Adam Lesinski9ba47d82015-10-13 11:37:10 -07001297
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001298 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1299 diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
1300 << "unknown tag <" << element_namespace << ":"
1301 << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001302 error = true;
1303 }
1304 }
1305
1306 if (error) {
1307 return false;
1308 }
1309
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001310 out_resource->value = std::move(array);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001311 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001312}
1313
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001314bool ResourceParser::ParsePlural(xml::XmlPullParser* parser,
1315 ParsedResource* out_resource) {
1316 out_resource->name.type = ResourceType::kPlurals;
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001317
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001318 std::unique_ptr<Plural> plural = util::make_unique<Plural>();
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001319
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001320 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001321 const size_t depth = parser->depth();
1322 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1323 if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001324 // Skip text and comments.
1325 continue;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001326 }
1327
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001328 const Source item_source = source_.WithLine(parser->line_number());
1329 const std::string& element_namespace = parser->element_namespace();
1330 const std::string& element_name = parser->element_name();
1331 if (element_namespace.empty() && element_name == "item") {
1332 Maybe<StringPiece> maybe_quantity =
1333 xml::FindNonEmptyAttribute(parser, "quantity");
1334 if (!maybe_quantity) {
1335 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001336 << "<item> in <plurals> requires attribute "
1337 << "'quantity'");
1338 error = true;
1339 continue;
1340 }
Adam Lesinski9ba47d82015-10-13 11:37:10 -07001341
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001342 StringPiece trimmed_quantity =
1343 util::TrimWhitespace(maybe_quantity.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001344 size_t index = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001345 if (trimmed_quantity == "zero") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001346 index = Plural::Zero;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001347 } else if (trimmed_quantity == "one") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001348 index = Plural::One;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001349 } else if (trimmed_quantity == "two") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001350 index = Plural::Two;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001351 } else if (trimmed_quantity == "few") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001352 index = Plural::Few;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001353 } else if (trimmed_quantity == "many") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001354 index = Plural::Many;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001355 } else if (trimmed_quantity == "other") {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001356 index = Plural::Other;
1357 } else {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001358 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001359 << "<item> in <plural> has invalid value '"
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001360 << trimmed_quantity << "' for attribute 'quantity'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001361 error = true;
1362 continue;
1363 }
1364
1365 if (plural->values[index]) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001366 diag_->Error(DiagMessage(item_source) << "duplicate quantity '"
1367 << trimmed_quantity << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001368 error = true;
1369 continue;
1370 }
1371
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001372 if (!(plural->values[index] = ParseXml(
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001373 parser, android::ResTable_map::TYPE_STRING, kNoRawString))) {
1374 error = true;
1375 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001376 plural->values[index]->SetSource(item_source);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001377
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001378 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1379 diag_->Error(DiagMessage(item_source) << "unknown tag <"
1380 << element_namespace << ":"
1381 << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001382 error = true;
1383 }
1384 }
1385
1386 if (error) {
1387 return false;
1388 }
1389
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001390 out_resource->value = std::move(plural);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001391 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001392}
1393
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001394bool ResourceParser::ParseDeclareStyleable(xml::XmlPullParser* parser,
1395 ParsedResource* out_resource) {
1396 out_resource->name.type = ResourceType::kStyleable;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001397
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001398 // Declare-styleable is kPrivate by default, because it technically only
1399 // exists in R.java.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001400 out_resource->symbol_state = SymbolState::kPublic;
Adam Lesinski9f222042015-11-04 13:51:45 -08001401
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001402 // Declare-styleable only ends up in default config;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001403 if (out_resource->config != ConfigDescription::DefaultConfig()) {
1404 diag_->Warn(DiagMessage(out_resource->source)
1405 << "ignoring configuration '" << out_resource->config
1406 << "' for styleable " << out_resource->name.entry);
1407 out_resource->config = ConfigDescription::DefaultConfig();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001408 }
1409
1410 std::unique_ptr<Styleable> styleable = util::make_unique<Styleable>();
1411
1412 std::string comment;
1413 bool error = false;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001414 const size_t depth = parser->depth();
1415 while (xml::XmlPullParser::NextChildNode(parser, depth)) {
1416 if (parser->event() == xml::XmlPullParser::Event::kComment) {
Adam Lesinskid5083f62017-01-16 15:07:21 -08001417 comment = util::TrimWhitespace(parser->comment()).to_string();
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001418 continue;
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001419 } else if (parser->event() != xml::XmlPullParser::Event::kStartElement) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001420 // Ignore text.
1421 continue;
Adam Lesinski52364f72016-01-11 13:10:24 -08001422 }
1423
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001424 const Source item_source = source_.WithLine(parser->line_number());
1425 const std::string& element_namespace = parser->element_namespace();
1426 const std::string& element_name = parser->element_name();
1427 if (element_namespace.empty() && element_name == "attr") {
1428 Maybe<StringPiece> maybe_name =
1429 xml::FindNonEmptyAttribute(parser, "name");
1430 if (!maybe_name) {
1431 diag_->Error(DiagMessage(item_source)
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001432 << "<attr> tag must have a 'name' attribute");
1433 error = true;
1434 continue;
1435 }
Adam Lesinski7ff3ee12015-12-14 16:08:50 -08001436
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001437 // If this is a declaration, the package name may be in the name. Separate
1438 // these out.
1439 // Eg. <attr name="android:text" />
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001440 Maybe<Reference> maybe_ref =
1441 ResourceUtils::ParseXmlAttributeName(maybe_name.value());
1442 if (!maybe_ref) {
1443 diag_->Error(DiagMessage(item_source) << "<attr> tag has invalid name '"
1444 << maybe_name.value() << "'");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001445 error = true;
1446 continue;
1447 }
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001448
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001449 Reference& child_ref = maybe_ref.value();
Adam Lesinski1ef0fa92017-08-15 21:32:49 -07001450 xml::ResolvePackage(parser, &child_ref);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001451
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001452 // Create the ParsedResource that will add the attribute to the table.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001453 ParsedResource child_resource;
1454 child_resource.name = child_ref.name.value();
1455 child_resource.source = item_source;
1456 child_resource.comment = std::move(comment);
Adam Lesinski467f1712015-11-16 17:35:44 -08001457
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001458 if (!ParseAttrImpl(parser, &child_resource, true)) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001459 error = true;
1460 continue;
1461 }
Adam Lesinski467f1712015-11-16 17:35:44 -08001462
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001463 // Create the reference to this attribute.
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001464 child_ref.SetComment(child_resource.comment);
1465 child_ref.SetSource(item_source);
1466 styleable->entries.push_back(std::move(child_ref));
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001467
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001468 out_resource->child_resources.push_back(std::move(child_resource));
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001469
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001470 } else if (!ShouldIgnoreElement(element_namespace, element_name)) {
1471 diag_->Error(DiagMessage(item_source) << "unknown tag <"
1472 << element_namespace << ":"
1473 << element_name << ">");
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001474 error = true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001475 }
1476
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001477 comment = {};
1478 }
Adam Lesinski9ba47d82015-10-13 11:37:10 -07001479
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001480 if (error) {
1481 return false;
1482 }
1483
Adam Lesinskice5e56e2016-10-21 17:56:45 -07001484 out_resource->value = std::move(styleable);
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001485 return true;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001486}
1487
Adam Lesinskicacb28f2016-10-19 12:18:14 -07001488} // namespace aapt