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_XML_PULL_PARSER_H |
| 18 | #define AAPT_XML_PULL_PARSER_H |
| 19 | |
| 20 | #include <algorithm> |
| 21 | #include <ostream> |
| 22 | #include <string> |
| 23 | #include <vector> |
| 24 | |
| 25 | #include "StringPiece.h" |
| 26 | |
| 27 | namespace aapt { |
| 28 | |
| 29 | class XmlPullParser { |
| 30 | public: |
| 31 | enum class Event { |
| 32 | kBadDocument, |
| 33 | kStartDocument, |
| 34 | kEndDocument, |
| 35 | |
| 36 | kStartNamespace, |
| 37 | kEndNamespace, |
| 38 | kStartElement, |
| 39 | kEndElement, |
| 40 | kText, |
| 41 | kComment, |
| 42 | }; |
| 43 | |
| 44 | static void skipCurrentElement(XmlPullParser* parser); |
| 45 | static bool isGoodEvent(Event event); |
| 46 | |
| 47 | virtual ~XmlPullParser() {} |
| 48 | |
| 49 | /** |
| 50 | * Returns the current event that is being processed. |
| 51 | */ |
| 52 | virtual Event getEvent() const = 0; |
| 53 | |
| 54 | virtual const std::string& getLastError() const = 0; |
| 55 | |
| 56 | /** |
| 57 | * Note, unlike XmlPullParser, the first call to next() will return |
| 58 | * StartElement of the first element. |
| 59 | */ |
| 60 | virtual Event next() = 0; |
| 61 | |
| 62 | // |
| 63 | // These are available for all nodes. |
| 64 | // |
| 65 | |
| 66 | virtual const std::u16string& getComment() const = 0; |
| 67 | virtual size_t getLineNumber() const = 0; |
| 68 | virtual size_t getDepth() const = 0; |
| 69 | |
| 70 | /** |
| 71 | * Returns the character data for a Text event. |
| 72 | */ |
| 73 | virtual const std::u16string& getText() const = 0; |
| 74 | |
| 75 | /** |
| 76 | * Namespace prefix is available for StartNamespace and EndNamespace. |
| 77 | */ |
| 78 | virtual const std::u16string& getNamespacePrefix() const = 0; |
| 79 | |
| 80 | /** |
| 81 | * Namespace URI is available for StartNamespace. |
| 82 | */ |
| 83 | virtual const std::u16string& getNamespaceUri() const = 0; |
| 84 | |
| 85 | // |
| 86 | // These are available for StartElement and EndElement. |
| 87 | // |
| 88 | |
| 89 | virtual const std::u16string& getElementNamespace() const = 0; |
| 90 | virtual const std::u16string& getElementName() const = 0; |
| 91 | |
| 92 | // |
| 93 | // Remaining methods are for retrieving information about attributes |
| 94 | // associated with a StartElement. |
| 95 | // |
| 96 | // Attributes must be in sorted order (according to the less than operator |
| 97 | // of struct Attribute). |
| 98 | // |
| 99 | |
| 100 | struct Attribute { |
| 101 | std::u16string namespaceUri; |
| 102 | std::u16string name; |
| 103 | std::u16string value; |
| 104 | |
| 105 | int compare(const Attribute& rhs) const; |
| 106 | bool operator<(const Attribute& rhs) const; |
| 107 | bool operator==(const Attribute& rhs) const; |
| 108 | bool operator!=(const Attribute& rhs) const; |
| 109 | }; |
| 110 | |
| 111 | using const_iterator = std::vector<Attribute>::const_iterator; |
| 112 | |
| 113 | virtual const_iterator beginAttributes() const = 0; |
| 114 | virtual const_iterator endAttributes() const = 0; |
| 115 | virtual size_t getAttributeCount() const = 0; |
| 116 | const_iterator findAttribute(StringPiece16 namespaceUri, StringPiece16 name) const; |
| 117 | }; |
| 118 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 119 | // |
| 120 | // Implementation |
| 121 | // |
| 122 | |
| 123 | inline ::std::ostream& operator<<(::std::ostream& out, XmlPullParser::Event event) { |
| 124 | switch (event) { |
| 125 | case XmlPullParser::Event::kBadDocument: return out << "BadDocument"; |
| 126 | case XmlPullParser::Event::kStartDocument: return out << "StartDocument"; |
| 127 | case XmlPullParser::Event::kEndDocument: return out << "EndDocument"; |
| 128 | case XmlPullParser::Event::kStartNamespace: return out << "StartNamespace"; |
| 129 | case XmlPullParser::Event::kEndNamespace: return out << "EndNamespace"; |
| 130 | case XmlPullParser::Event::kStartElement: return out << "StartElement"; |
| 131 | case XmlPullParser::Event::kEndElement: return out << "EndElement"; |
| 132 | case XmlPullParser::Event::kText: return out << "Text"; |
| 133 | case XmlPullParser::Event::kComment: return out << "Comment"; |
| 134 | } |
| 135 | return out; |
| 136 | } |
| 137 | |
| 138 | inline void XmlPullParser::skipCurrentElement(XmlPullParser* parser) { |
| 139 | int depth = 1; |
| 140 | while (depth > 0) { |
| 141 | switch (parser->next()) { |
| 142 | case Event::kEndDocument: |
| 143 | case Event::kBadDocument: |
| 144 | return; |
| 145 | case Event::kStartElement: |
| 146 | depth++; |
| 147 | break; |
| 148 | case Event::kEndElement: |
| 149 | depth--; |
| 150 | break; |
| 151 | default: |
| 152 | break; |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | inline bool XmlPullParser::isGoodEvent(XmlPullParser::Event event) { |
| 158 | return event != Event::kBadDocument && event != Event::kEndDocument; |
| 159 | } |
| 160 | |
| 161 | inline int XmlPullParser::Attribute::compare(const Attribute& rhs) const { |
| 162 | int cmp = namespaceUri.compare(rhs.namespaceUri); |
| 163 | if (cmp != 0) return cmp; |
| 164 | return name.compare(rhs.name); |
| 165 | } |
| 166 | |
| 167 | inline bool XmlPullParser::Attribute::operator<(const Attribute& rhs) const { |
| 168 | return compare(rhs) < 0; |
| 169 | } |
| 170 | |
| 171 | inline bool XmlPullParser::Attribute::operator==(const Attribute& rhs) const { |
| 172 | return compare(rhs) == 0; |
| 173 | } |
| 174 | |
| 175 | inline bool XmlPullParser::Attribute::operator!=(const Attribute& rhs) const { |
| 176 | return compare(rhs) != 0; |
| 177 | } |
| 178 | |
| 179 | inline XmlPullParser::const_iterator XmlPullParser::findAttribute(StringPiece16 namespaceUri, |
| 180 | StringPiece16 name) const { |
| 181 | const auto endIter = endAttributes(); |
| 182 | const auto iter = std::lower_bound(beginAttributes(), endIter, |
| 183 | std::pair<StringPiece16, StringPiece16>(namespaceUri, name), |
| 184 | [](const Attribute& attr, const std::pair<StringPiece16, StringPiece16>& rhs) -> bool { |
| 185 | int cmp = attr.namespaceUri.compare(0, attr.namespaceUri.size(), |
| 186 | rhs.first.data(), rhs.first.size()); |
| 187 | if (cmp < 0) return true; |
| 188 | if (cmp > 0) return false; |
| 189 | cmp = attr.name.compare(0, attr.name.size(), rhs.second.data(), rhs.second.size()); |
| 190 | if (cmp < 0) return true; |
| 191 | return false; |
| 192 | } |
| 193 | ); |
| 194 | |
| 195 | if (iter != endIter && namespaceUri == iter->namespaceUri && name == iter->name) { |
| 196 | return iter; |
| 197 | } |
| 198 | return endIter; |
| 199 | } |
| 200 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 201 | } // namespace aapt |
| 202 | |
| 203 | #endif // AAPT_XML_PULL_PARSER_H |