blob: fb9dbd0cd0fdba66e6599cf404ab6967fc5fb847 [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
17#ifndef AAPT_RESOURCE_PARSER_H
18#define AAPT_RESOURCE_PARSER_H
19
Adam Lesinskice5e56e2016-10-21 17:56:45 -070020#include <memory>
21
22#include "android-base/macros.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080023#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070024
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080025#include "ConfigDescription.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070026#include "Diagnostics.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080027#include "ResourceTable.h"
28#include "ResourceValues.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080029#include "StringPool.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070030#include "util/Maybe.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080031#include "xml/XmlPullParser.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070032
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080033namespace aapt {
34
Adam Lesinski9ba47d82015-10-13 11:37:10 -070035struct ParsedResource;
36
37struct ResourceParserOptions {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070038 /**
39 * Whether the default setting for this parser is to allow translation.
40 */
41 bool translatable = true;
Adam Lesinski979ccb22016-01-11 10:42:19 -080042
Adam Lesinskicacb28f2016-10-19 12:18:14 -070043 /**
44 * Whether positional arguments in formatted strings are treated as errors or
45 * warnings.
46 */
Adam Lesinskice5e56e2016-10-21 17:56:45 -070047 bool error_on_positional_arguments = true;
Adam Lesinski9ba47d82015-10-13 11:37:10 -070048};
49
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080050/*
51 * Parses an XML file for resources and adds them to a ResourceTable.
52 */
53class ResourceParser {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070054 public:
55 ResourceParser(IDiagnostics* diag, ResourceTable* table, const Source& source,
56 const ConfigDescription& config,
57 const ResourceParserOptions& options = {});
Adam Lesinskice5e56e2016-10-21 17:56:45 -070058 bool Parse(xml::XmlPullParser* parser);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080059
Adam Lesinskicacb28f2016-10-19 12:18:14 -070060 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -070061 DISALLOW_COPY_AND_ASSIGN(ResourceParser);
62
Adam Lesinski75421622017-01-06 15:20:04 -080063 // Parses the XML subtree as a StyleString (flattened XML representation for strings with
64 // formatting). If parsing fails, false is returned and the out parameters are left in an
65 // unspecified state. Otherwise,
66 // `out_style_string` contains the escaped and whitespace trimmed text.
67 // `out_raw_string` contains the un-escaped text.
68 // `out_untranslatable_sections` contains the sections of the string that should not be
69 // translated.
70 bool FlattenXmlSubtree(xml::XmlPullParser* parser, std::string* out_raw_string,
71 StyleString* out_style_string,
72 std::vector<UntranslatableSection>* out_untranslatable_sections);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080073
Adam Lesinskicacb28f2016-10-19 12:18:14 -070074 /*
75 * Parses the XML subtree and returns an Item.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070076 * The type of Item that can be parsed is denoted by the `type_mask`.
77 * If `allow_raw_value` is true and the subtree can not be parsed as a regular
Adam Lesinskicacb28f2016-10-19 12:18:14 -070078 * Item, then a
79 * RawString is returned. Otherwise this returns false;
80 */
Adam Lesinskibab4ef52017-06-01 15:22:57 -070081 std::unique_ptr<Item> ParseXml(xml::XmlPullParser* parser, const uint32_t type_mask,
Adam Lesinskice5e56e2016-10-21 17:56:45 -070082 const bool allow_raw_value);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080083
Adam Lesinskice5e56e2016-10-21 17:56:45 -070084 bool ParseResources(xml::XmlPullParser* parser);
85 bool ParseResource(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080086
Adam Lesinskibab4ef52017-06-01 15:22:57 -070087 bool ParseItem(xml::XmlPullParser* parser, ParsedResource* out_resource, uint32_t format);
Adam Lesinskice5e56e2016-10-21 17:56:45 -070088 bool ParseString(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080089
Adam Lesinskice5e56e2016-10-21 17:56:45 -070090 bool ParsePublic(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskibab4ef52017-06-01 15:22:57 -070091 bool ParsePublicGroup(xml::XmlPullParser* parser, ParsedResource* out_resource);
92 bool ParseSymbolImpl(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskice5e56e2016-10-21 17:56:45 -070093 bool ParseSymbol(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinski46c4d722017-08-23 13:03:56 -070094 bool ParseOverlayable(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskibab4ef52017-06-01 15:22:57 -070095 bool ParseAddResource(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskice5e56e2016-10-21 17:56:45 -070096 bool ParseAttr(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskibab4ef52017-06-01 15:22:57 -070097 bool ParseAttrImpl(xml::XmlPullParser* parser, ParsedResource* out_resource, bool weak);
Adam Lesinskice5e56e2016-10-21 17:56:45 -070098 Maybe<Attribute::Symbol> ParseEnumOrFlagItem(xml::XmlPullParser* parser,
Adam Lesinskid5083f62017-01-16 15:07:21 -080099 const android::StringPiece& tag);
Adam Lesinski86d67df2017-01-31 13:47:27 -0800100 bool ParseStyle(const ResourceType type, xml::XmlPullParser* parser,
101 ParsedResource* out_resource);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700102 bool ParseStyleItem(xml::XmlPullParser* parser, Style* style);
Adam Lesinskibab4ef52017-06-01 15:22:57 -0700103 bool ParseDeclareStyleable(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700104 bool ParseArray(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinskibab4ef52017-06-01 15:22:57 -0700105 bool ParseIntegerArray(xml::XmlPullParser* parser, ParsedResource* out_resource);
106 bool ParseStringArray(xml::XmlPullParser* parser, ParsedResource* out_resource);
107 bool ParseArrayImpl(xml::XmlPullParser* parser, ParsedResource* out_resource, uint32_t typeMask);
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700108 bool ParsePlural(xml::XmlPullParser* parser, ParsedResource* out_resource);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800109
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700110 IDiagnostics* diag_;
111 ResourceTable* table_;
112 Source source_;
113 ConfigDescription config_;
114 ResourceParserOptions options_;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800115};
116
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700117} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800118
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700119#endif // AAPT_RESOURCE_PARSER_H