blob: ee5b33788312874961bb86aaee08b02e478c3065 [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
20#include "ConfigDescription.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070021#include "Diagnostics.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080022#include "ResourceTable.h"
23#include "ResourceValues.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080024#include "StringPool.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070025#include "util/Maybe.h"
26#include "util/StringPiece.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080027#include "xml/XmlPullParser.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070028
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080029#include <memory>
30
31namespace aapt {
32
Adam Lesinski9ba47d82015-10-13 11:37:10 -070033struct ParsedResource;
34
35struct ResourceParserOptions {
36 /**
Adam Lesinski9f222042015-11-04 13:51:45 -080037 * Whether the default setting for this parser is to allow translation.
38 */
39 bool translatable = true;
Adam Lesinski979ccb22016-01-11 10:42:19 -080040
41 /**
42 * Whether positional arguments in formatted strings are treated as errors or warnings.
43 */
44 bool errorOnPositionalArguments = true;
Adam Lesinski9ba47d82015-10-13 11:37:10 -070045};
46
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080047/*
48 * Parses an XML file for resources and adds them to a ResourceTable.
49 */
50class ResourceParser {
51public:
Adam Lesinski1ab598f2015-08-14 14:26:04 -070052 ResourceParser(IDiagnostics* diag, ResourceTable* table, const Source& source,
Adam Lesinski9ba47d82015-10-13 11:37:10 -070053 const ConfigDescription& config, const ResourceParserOptions& options = {});
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080054
55 ResourceParser(const ResourceParser&) = delete; // No copy.
56
Adam Lesinski467f1712015-11-16 17:35:44 -080057 bool parse(xml::XmlPullParser* parser);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080058
59private:
60 /*
61 * Parses the XML subtree as a StyleString (flattened XML representation for strings
62 * with formatting). If successful, `outStyleString`
63 * contains the escaped and whitespace trimmed text, while `outRawString`
64 * contains the unescaped text. Returns true on success.
65 */
Adam Lesinski467f1712015-11-16 17:35:44 -080066 bool flattenXmlSubtree(xml::XmlPullParser* parser, std::u16string* outRawString,
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080067 StyleString* outStyleString);
68
69 /*
Adam Lesinskie78fd612015-10-22 12:48:43 -070070 * Parses the XML subtree and returns an Item.
71 * The type of Item that can be parsed is denoted by the `typeMask`.
72 * If `allowRawValue` is true and the subtree can not be parsed as a regular Item, then a
73 * RawString is returned. Otherwise this returns false;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080074 */
Adam Lesinski467f1712015-11-16 17:35:44 -080075 std::unique_ptr<Item> parseXml(xml::XmlPullParser* parser, const uint32_t typeMask,
Adam Lesinskie78fd612015-10-22 12:48:43 -070076 const bool allowRawValue);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080077
Adam Lesinski467f1712015-11-16 17:35:44 -080078 bool parseResources(xml::XmlPullParser* parser);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080079 bool parseResource(xml::XmlPullParser* parser, ParsedResource* outResource);
80
81 bool parseItem(xml::XmlPullParser* parser, ParsedResource* outResource, uint32_t format);
Adam Lesinski467f1712015-11-16 17:35:44 -080082 bool parseString(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080083
Adam Lesinski467f1712015-11-16 17:35:44 -080084 bool parsePublic(xml::XmlPullParser* parser, ParsedResource* outResource);
85 bool parsePublicGroup(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinskia6fe3452015-12-09 15:20:52 -080086 bool parseSymbolImpl(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinski467f1712015-11-16 17:35:44 -080087 bool parseSymbol(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinskia6fe3452015-12-09 15:20:52 -080088 bool parseAddResource(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinski467f1712015-11-16 17:35:44 -080089 bool parseAttr(xml::XmlPullParser* parser, ParsedResource* outResource);
90 bool parseAttrImpl(xml::XmlPullParser* parser, ParsedResource* outResource, bool weak);
91 Maybe<Attribute::Symbol> parseEnumOrFlagItem(xml::XmlPullParser* parser,
92 const StringPiece16& tag);
93 bool parseStyle(xml::XmlPullParser* parser, ParsedResource* outResource);
94 bool parseStyleItem(xml::XmlPullParser* parser, Style* style);
95 bool parseDeclareStyleable(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinski7ff3ee12015-12-14 16:08:50 -080096 bool parseArray(xml::XmlPullParser* parser, ParsedResource* outResource);
97 bool parseIntegerArray(xml::XmlPullParser* parser, ParsedResource* outResource);
98 bool parseStringArray(xml::XmlPullParser* parser, ParsedResource* outResource);
99 bool parseArrayImpl(xml::XmlPullParser* parser, ParsedResource* outResource, uint32_t typeMask);
Adam Lesinski467f1712015-11-16 17:35:44 -0800100 bool parsePlural(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800101
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700102 IDiagnostics* mDiag;
103 ResourceTable* mTable;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800104 Source mSource;
105 ConfigDescription mConfig;
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700106 ResourceParserOptions mOptions;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800107};
108
109} // namespace aapt
110
111#endif // AAPT_RESOURCE_PARSER_H