blob: 04db5778a456755a9676c5f98d9ceff43acc6afd [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 /**
37 * Optional product name by which to filter resources.
38 * This is like a preprocessor definition in that we strip out resources
39 * that don't match before we compile them.
40 */
41 Maybe<std::u16string> product;
Adam Lesinski9f222042015-11-04 13:51:45 -080042
43 /**
44 * Whether the default setting for this parser is to allow translation.
45 */
46 bool translatable = true;
Adam Lesinski9ba47d82015-10-13 11:37:10 -070047};
48
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080049/*
50 * Parses an XML file for resources and adds them to a ResourceTable.
51 */
52class ResourceParser {
53public:
Adam Lesinski1ab598f2015-08-14 14:26:04 -070054 ResourceParser(IDiagnostics* diag, ResourceTable* table, const Source& source,
Adam Lesinski9ba47d82015-10-13 11:37:10 -070055 const ConfigDescription& config, const ResourceParserOptions& options = {});
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080056
57 ResourceParser(const ResourceParser&) = delete; // No copy.
58
Adam Lesinski467f1712015-11-16 17:35:44 -080059 bool parse(xml::XmlPullParser* parser);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080060
61private:
62 /*
63 * Parses the XML subtree as a StyleString (flattened XML representation for strings
64 * with formatting). If successful, `outStyleString`
65 * contains the escaped and whitespace trimmed text, while `outRawString`
66 * contains the unescaped text. Returns true on success.
67 */
Adam Lesinski467f1712015-11-16 17:35:44 -080068 bool flattenXmlSubtree(xml::XmlPullParser* parser, std::u16string* outRawString,
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080069 StyleString* outStyleString);
70
71 /*
Adam Lesinskie78fd612015-10-22 12:48:43 -070072 * Parses the XML subtree and returns an Item.
73 * The type of Item that can be parsed is denoted by the `typeMask`.
74 * If `allowRawValue` is true and the subtree can not be parsed as a regular Item, then a
75 * RawString is returned. Otherwise this returns false;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080076 */
Adam Lesinski467f1712015-11-16 17:35:44 -080077 std::unique_ptr<Item> parseXml(xml::XmlPullParser* parser, const uint32_t typeMask,
Adam Lesinskie78fd612015-10-22 12:48:43 -070078 const bool allowRawValue);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080079
Adam Lesinski467f1712015-11-16 17:35:44 -080080 bool parseResources(xml::XmlPullParser* parser);
81 bool parseString(xml::XmlPullParser* parser, ParsedResource* outResource);
82 bool parseColor(xml::XmlPullParser* parser, ParsedResource* outResource);
83 bool parsePrimitive(xml::XmlPullParser* parser, ParsedResource* outResource);
84 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);
96 bool parseArray(xml::XmlPullParser* parser, ParsedResource* outResource, uint32_t typeMask);
97 bool parsePlural(xml::XmlPullParser* parser, ParsedResource* outResource);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080098
Adam Lesinski1ab598f2015-08-14 14:26:04 -070099 IDiagnostics* mDiag;
100 ResourceTable* mTable;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800101 Source mSource;
102 ConfigDescription mConfig;
Adam Lesinski9ba47d82015-10-13 11:37:10 -0700103 ResourceParserOptions mOptions;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800104};
105
106} // namespace aapt
107
108#endif // AAPT_RESOURCE_PARSER_H