Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 1 | /* |
| 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 Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 21 | #include "Diagnostics.h" |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 22 | #include "ResourceTable.h" |
| 23 | #include "ResourceValues.h" |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 24 | #include "StringPool.h" |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 25 | #include "util/Maybe.h" |
| 26 | #include "util/StringPiece.h" |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame^] | 27 | #include "xml/XmlPullParser.h" |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 28 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 29 | #include <memory> |
| 30 | |
| 31 | namespace aapt { |
| 32 | |
Adam Lesinski | 9ba47d8 | 2015-10-13 11:37:10 -0700 | [diff] [blame] | 33 | struct ParsedResource; |
| 34 | |
| 35 | struct 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 Lesinski | 9f22204 | 2015-11-04 13:51:45 -0800 | [diff] [blame] | 42 | |
| 43 | /** |
| 44 | * Whether the default setting for this parser is to allow translation. |
| 45 | */ |
| 46 | bool translatable = true; |
Adam Lesinski | 9ba47d8 | 2015-10-13 11:37:10 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 49 | /* |
| 50 | * Parses an XML file for resources and adds them to a ResourceTable. |
| 51 | */ |
| 52 | class ResourceParser { |
| 53 | public: |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 54 | ResourceParser(IDiagnostics* diag, ResourceTable* table, const Source& source, |
Adam Lesinski | 9ba47d8 | 2015-10-13 11:37:10 -0700 | [diff] [blame] | 55 | const ConfigDescription& config, const ResourceParserOptions& options = {}); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 56 | |
| 57 | ResourceParser(const ResourceParser&) = delete; // No copy. |
| 58 | |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame^] | 59 | bool parse(xml::XmlPullParser* parser); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 60 | |
| 61 | private: |
| 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 Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame^] | 68 | bool flattenXmlSubtree(xml::XmlPullParser* parser, std::u16string* outRawString, |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 69 | StyleString* outStyleString); |
| 70 | |
| 71 | /* |
Adam Lesinski | e78fd61 | 2015-10-22 12:48:43 -0700 | [diff] [blame] | 72 | * 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 Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 76 | */ |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame^] | 77 | std::unique_ptr<Item> parseXml(xml::XmlPullParser* parser, const uint32_t typeMask, |
Adam Lesinski | e78fd61 | 2015-10-22 12:48:43 -0700 | [diff] [blame] | 78 | const bool allowRawValue); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 79 | |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame^] | 80 | 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); |
| 86 | bool parseSymbol(xml::XmlPullParser* parser, ParsedResource* outResource); |
| 87 | bool parseAttr(xml::XmlPullParser* parser, ParsedResource* outResource); |
| 88 | bool parseAttrImpl(xml::XmlPullParser* parser, ParsedResource* outResource, bool weak); |
| 89 | Maybe<Attribute::Symbol> parseEnumOrFlagItem(xml::XmlPullParser* parser, |
| 90 | const StringPiece16& tag); |
| 91 | bool parseStyle(xml::XmlPullParser* parser, ParsedResource* outResource); |
| 92 | bool parseStyleItem(xml::XmlPullParser* parser, Style* style); |
| 93 | bool parseDeclareStyleable(xml::XmlPullParser* parser, ParsedResource* outResource); |
| 94 | bool parseArray(xml::XmlPullParser* parser, ParsedResource* outResource, uint32_t typeMask); |
| 95 | bool parsePlural(xml::XmlPullParser* parser, ParsedResource* outResource); |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 96 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 97 | IDiagnostics* mDiag; |
| 98 | ResourceTable* mTable; |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 99 | Source mSource; |
| 100 | ConfigDescription mConfig; |
Adam Lesinski | 9ba47d8 | 2015-10-13 11:37:10 -0700 | [diff] [blame] | 101 | ResourceParserOptions mOptions; |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | } // namespace aapt |
| 105 | |
| 106 | #endif // AAPT_RESOURCE_PARSER_H |