Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [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 | #include "ResourceUtils.h" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 18 | |
| 19 | #include <sstream> |
| 20 | |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 21 | #include "android-base/stringprintf.h" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 22 | #include "androidfw/ResourceTypes.h" |
Adam Lesinski | 929d651 | 2017-01-16 19:11:19 -0800 | [diff] [blame] | 23 | #include "androidfw/ResourceUtils.h" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 24 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 25 | #include "NameMangler.h" |
Adam Lesinski | fb6312f | 2016-06-28 14:40:32 -0700 | [diff] [blame] | 26 | #include "SdkConstants.h" |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 27 | #include "format/binary/ResourceTypeExtensions.h" |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 28 | #include "text/Unicode.h" |
| 29 | #include "text/Utf8Iterator.h" |
Adam Lesinski | a6fe345 | 2015-12-09 15:20:52 -0800 | [diff] [blame] | 30 | #include "util/Files.h" |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 31 | #include "util/Util.h" |
| 32 | |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 33 | using ::aapt::text::Utf8Iterator; |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 34 | using ::android::StringPiece; |
| 35 | using ::android::StringPiece16; |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 36 | using ::android::base::StringPrintf; |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 37 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 38 | namespace aapt { |
| 39 | namespace ResourceUtils { |
| 40 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 41 | Maybe<ResourceName> ToResourceName( |
| 42 | const android::ResTable::resource_name& name_in) { |
| 43 | ResourceName name_out; |
| 44 | if (!name_in.package) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 45 | return {}; |
| 46 | } |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 47 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 48 | name_out.package = |
| 49 | util::Utf16ToUtf8(StringPiece16(name_in.package, name_in.packageLen)); |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 50 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 51 | const ResourceType* type; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 52 | if (name_in.type) { |
| 53 | type = ParseResourceType( |
| 54 | util::Utf16ToUtf8(StringPiece16(name_in.type, name_in.typeLen))); |
| 55 | } else if (name_in.type8) { |
| 56 | type = ParseResourceType(StringPiece(name_in.type8, name_in.typeLen)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 57 | } else { |
| 58 | return {}; |
| 59 | } |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 60 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 61 | if (!type) { |
| 62 | return {}; |
| 63 | } |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 64 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 65 | name_out.type = *type; |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 66 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 67 | if (name_in.name) { |
| 68 | name_out.entry = |
| 69 | util::Utf16ToUtf8(StringPiece16(name_in.name, name_in.nameLen)); |
| 70 | } else if (name_in.name8) { |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 71 | name_out.entry.assign(name_in.name8, name_in.nameLen); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 72 | } else { |
| 73 | return {}; |
| 74 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 75 | return name_out; |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 78 | bool ParseResourceName(const StringPiece& str, ResourceNameRef* out_ref, |
| 79 | bool* out_private) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 80 | if (str.empty()) { |
| 81 | return false; |
| 82 | } |
| 83 | |
| 84 | size_t offset = 0; |
| 85 | bool priv = false; |
| 86 | if (str.data()[0] == '*') { |
| 87 | priv = true; |
| 88 | offset = 1; |
| 89 | } |
| 90 | |
| 91 | StringPiece package; |
| 92 | StringPiece type; |
| 93 | StringPiece entry; |
Adam Lesinski | 929d651 | 2017-01-16 19:11:19 -0800 | [diff] [blame] | 94 | if (!android::ExtractResourceName(str.substr(offset, str.size() - offset), &package, &type, |
| 95 | &entry)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 96 | return false; |
| 97 | } |
| 98 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 99 | const ResourceType* parsed_type = ParseResourceType(type); |
| 100 | if (!parsed_type) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 101 | return false; |
| 102 | } |
| 103 | |
| 104 | if (entry.empty()) { |
| 105 | return false; |
| 106 | } |
| 107 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 108 | if (out_ref) { |
| 109 | out_ref->package = package; |
| 110 | out_ref->type = *parsed_type; |
| 111 | out_ref->entry = entry; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 114 | if (out_private) { |
| 115 | *out_private = priv; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 116 | } |
| 117 | return true; |
| 118 | } |
| 119 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 120 | bool ParseReference(const StringPiece& str, ResourceNameRef* out_ref, |
| 121 | bool* out_create, bool* out_private) { |
| 122 | StringPiece trimmed_str(util::TrimWhitespace(str)); |
| 123 | if (trimmed_str.empty()) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 124 | return false; |
| 125 | } |
| 126 | |
| 127 | bool create = false; |
| 128 | bool priv = false; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 129 | if (trimmed_str.data()[0] == '@') { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 130 | size_t offset = 1; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 131 | if (trimmed_str.data()[1] == '+') { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 132 | create = true; |
| 133 | offset += 1; |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 134 | } |
| 135 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 136 | ResourceNameRef name; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 137 | if (!ParseResourceName( |
| 138 | trimmed_str.substr(offset, trimmed_str.size() - offset), &name, |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 139 | &priv)) { |
| 140 | return false; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 141 | } |
| 142 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 143 | if (create && priv) { |
| 144 | return false; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 147 | if (create && name.type != ResourceType::kId) { |
| 148 | return false; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 149 | } |
| 150 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 151 | if (out_ref) { |
| 152 | *out_ref = name; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 155 | if (out_create) { |
| 156 | *out_create = create; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 157 | } |
| 158 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 159 | if (out_private) { |
| 160 | *out_private = priv; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 161 | } |
| 162 | return true; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 163 | } |
| 164 | return false; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 167 | bool IsReference(const StringPiece& str) { |
| 168 | return ParseReference(str, nullptr, nullptr, nullptr); |
Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 169 | } |
| 170 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 171 | bool ParseAttributeReference(const StringPiece& str, ResourceNameRef* out_ref) { |
| 172 | StringPiece trimmed_str(util::TrimWhitespace(str)); |
| 173 | if (trimmed_str.empty()) { |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 174 | return false; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 177 | if (*trimmed_str.data() == '?') { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 178 | StringPiece package; |
| 179 | StringPiece type; |
| 180 | StringPiece entry; |
Adam Lesinski | 929d651 | 2017-01-16 19:11:19 -0800 | [diff] [blame] | 181 | if (!android::ExtractResourceName(trimmed_str.substr(1, trimmed_str.size() - 1), &package, |
| 182 | &type, &entry)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 183 | return false; |
| 184 | } |
| 185 | |
| 186 | if (!type.empty() && type != "attr") { |
| 187 | return false; |
| 188 | } |
| 189 | |
| 190 | if (entry.empty()) { |
| 191 | return false; |
| 192 | } |
| 193 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 194 | if (out_ref) { |
| 195 | out_ref->package = package; |
| 196 | out_ref->type = ResourceType::kAttr; |
| 197 | out_ref->entry = entry; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 198 | } |
| 199 | return true; |
| 200 | } |
| 201 | return false; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 204 | bool IsAttributeReference(const StringPiece& str) { |
| 205 | return ParseAttributeReference(str, nullptr); |
Adam Lesinski | 7298bc9c | 2015-11-16 12:31:52 -0800 | [diff] [blame] | 206 | } |
| 207 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 208 | /* |
| 209 | * Style parent's are a bit different. We accept the following formats: |
| 210 | * |
Adam Lesinski | 52364f7 | 2016-01-11 13:10:24 -0800 | [diff] [blame] | 211 | * @[[*]package:][style/]<entry> |
Adam Lesinski | 24b8ff0 | 2015-12-16 14:01:57 -0800 | [diff] [blame] | 212 | * ?[[*]package:]style/<entry> |
| 213 | * <[*]package>:[style/]<entry> |
| 214 | * [[*]package:style/]<entry> |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 215 | */ |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 216 | Maybe<Reference> ParseStyleParentReference(const StringPiece& str, |
| 217 | std::string* out_error) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 218 | if (str.empty()) { |
| 219 | return {}; |
| 220 | } |
| 221 | |
| 222 | StringPiece name = str; |
| 223 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 224 | bool has_leading_identifiers = false; |
| 225 | bool private_ref = false; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 226 | |
| 227 | // Skip over these identifiers. A style's parent is a normal reference. |
| 228 | if (name.data()[0] == '@' || name.data()[0] == '?') { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 229 | has_leading_identifiers = true; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 230 | name = name.substr(1, name.size() - 1); |
| 231 | } |
| 232 | |
| 233 | if (name.data()[0] == '*') { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 234 | private_ref = true; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 235 | name = name.substr(1, name.size() - 1); |
| 236 | } |
| 237 | |
| 238 | ResourceNameRef ref; |
| 239 | ref.type = ResourceType::kStyle; |
| 240 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 241 | StringPiece type_str; |
Adam Lesinski | 929d651 | 2017-01-16 19:11:19 -0800 | [diff] [blame] | 242 | android::ExtractResourceName(name, &ref.package, &type_str, &ref.entry); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 243 | if (!type_str.empty()) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 244 | // If we have a type, make sure it is a Style. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 245 | const ResourceType* parsed_type = ParseResourceType(type_str); |
| 246 | if (!parsed_type || *parsed_type != ResourceType::kStyle) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 247 | std::stringstream err; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 248 | err << "invalid resource type '" << type_str << "' for parent of style"; |
| 249 | *out_error = err.str(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 250 | return {}; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 251 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 252 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 253 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 254 | if (!has_leading_identifiers && ref.package.empty() && !type_str.empty()) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 255 | std::stringstream err; |
| 256 | err << "invalid parent reference '" << str << "'"; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 257 | *out_error = err.str(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 258 | return {}; |
| 259 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 260 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 261 | Reference result(ref); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 262 | result.private_reference = private_ref; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 263 | return result; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 266 | Maybe<Reference> ParseXmlAttributeName(const StringPiece& str) { |
| 267 | StringPiece trimmed_str = util::TrimWhitespace(str); |
| 268 | const char* start = trimmed_str.data(); |
| 269 | const char* const end = start + trimmed_str.size(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 270 | const char* p = start; |
Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 271 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 272 | Reference ref; |
| 273 | if (p != end && *p == '*') { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 274 | ref.private_reference = true; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 275 | start++; |
| 276 | p++; |
| 277 | } |
| 278 | |
| 279 | StringPiece package; |
| 280 | StringPiece name; |
| 281 | while (p != end) { |
| 282 | if (*p == ':') { |
| 283 | package = StringPiece(start, p - start); |
| 284 | name = StringPiece(p + 1, end - (p + 1)); |
| 285 | break; |
Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 286 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 287 | p++; |
| 288 | } |
Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 289 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 290 | ref.name = ResourceName(package, ResourceType::kAttr, name.empty() ? trimmed_str : name); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 291 | return Maybe<Reference>(std::move(ref)); |
Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 294 | std::unique_ptr<Reference> TryParseReference(const StringPiece& str, |
| 295 | bool* out_create) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 296 | ResourceNameRef ref; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 297 | bool private_ref = false; |
| 298 | if (ParseReference(str, &ref, out_create, &private_ref)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 299 | std::unique_ptr<Reference> value = util::make_unique<Reference>(ref); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 300 | value->private_reference = private_ref; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 301 | return value; |
| 302 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 303 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 304 | if (ParseAttributeReference(str, &ref)) { |
| 305 | if (out_create) { |
| 306 | *out_create = false; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 307 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 308 | return util::make_unique<Reference>(ref, Reference::Type::kAttribute); |
| 309 | } |
| 310 | return {}; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 313 | std::unique_ptr<Item> TryParseNullOrEmpty(const StringPiece& str) { |
| 314 | const StringPiece trimmed_str(util::TrimWhitespace(str)); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 315 | if (trimmed_str == "@null") { |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 316 | return MakeNull(); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 317 | } else if (trimmed_str == "@empty") { |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 318 | return MakeEmpty(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 319 | } |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 320 | return {}; |
| 321 | } |
| 322 | |
| 323 | std::unique_ptr<Reference> MakeNull() { |
| 324 | // TYPE_NULL with data set to 0 is interpreted by the runtime as an error. |
| 325 | // Instead we set the data type to TYPE_REFERENCE with a value of 0. |
| 326 | return util::make_unique<Reference>(); |
| 327 | } |
| 328 | |
| 329 | std::unique_ptr<BinaryPrimitive> MakeEmpty() { |
| 330 | return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_NULL, |
| 331 | android::Res_value::DATA_NULL_EMPTY); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 334 | std::unique_ptr<BinaryPrimitive> TryParseEnumSymbol(const Attribute* enum_attr, |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 335 | const StringPiece& str) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 336 | StringPiece trimmed_str(util::TrimWhitespace(str)); |
| 337 | for (const Attribute::Symbol& symbol : enum_attr->symbols) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 338 | // Enum symbols are stored as @package:id/symbol resources, |
| 339 | // so we need to match against the 'entry' part of the identifier. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 340 | const ResourceName& enum_symbol_resource_name = symbol.symbol.name.value(); |
| 341 | if (trimmed_str == enum_symbol_resource_name.entry) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 342 | android::Res_value value = {}; |
| 343 | value.dataType = android::Res_value::TYPE_INT_DEC; |
| 344 | value.data = symbol.value; |
| 345 | return util::make_unique<BinaryPrimitive>(value); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 346 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 347 | } |
| 348 | return {}; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 351 | std::unique_ptr<BinaryPrimitive> TryParseFlagSymbol(const Attribute* flag_attr, |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 352 | const StringPiece& str) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 353 | android::Res_value flags = {}; |
| 354 | flags.dataType = android::Res_value::TYPE_INT_HEX; |
| 355 | flags.data = 0u; |
Adam Lesinski | 52364f7 | 2016-01-11 13:10:24 -0800 | [diff] [blame] | 356 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 357 | if (util::TrimWhitespace(str).empty()) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 358 | // Empty string is a valid flag (0). |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 359 | return util::make_unique<BinaryPrimitive>(flags); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 362 | for (StringPiece part : util::Tokenize(str, '|')) { |
| 363 | StringPiece trimmed_part = util::TrimWhitespace(part); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 364 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 365 | bool flag_set = false; |
| 366 | for (const Attribute::Symbol& symbol : flag_attr->symbols) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 367 | // Flag symbols are stored as @package:id/symbol resources, |
| 368 | // so we need to match against the 'entry' part of the identifier. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 369 | const ResourceName& flag_symbol_resource_name = |
| 370 | symbol.symbol.name.value(); |
| 371 | if (trimmed_part == flag_symbol_resource_name.entry) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 372 | flags.data |= symbol.value; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 373 | flag_set = true; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 374 | break; |
| 375 | } |
| 376 | } |
| 377 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 378 | if (!flag_set) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 379 | return {}; |
| 380 | } |
| 381 | } |
| 382 | return util::make_unique<BinaryPrimitive>(flags); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 385 | static uint32_t ParseHex(char c, bool* out_error) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 386 | if (c >= '0' && c <= '9') { |
| 387 | return c - '0'; |
| 388 | } else if (c >= 'a' && c <= 'f') { |
| 389 | return c - 'a' + 0xa; |
| 390 | } else if (c >= 'A' && c <= 'F') { |
| 391 | return c - 'A' + 0xa; |
| 392 | } else { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 393 | *out_error = true; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 394 | return 0xffffffffu; |
| 395 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 398 | std::unique_ptr<BinaryPrimitive> TryParseColor(const StringPiece& str) { |
| 399 | StringPiece color_str(util::TrimWhitespace(str)); |
| 400 | const char* start = color_str.data(); |
| 401 | const size_t len = color_str.size(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 402 | if (len == 0 || start[0] != '#') { |
| 403 | return {}; |
| 404 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 405 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 406 | android::Res_value value = {}; |
| 407 | bool error = false; |
| 408 | if (len == 4) { |
| 409 | value.dataType = android::Res_value::TYPE_INT_COLOR_RGB4; |
| 410 | value.data = 0xff000000u; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 411 | value.data |= ParseHex(start[1], &error) << 20; |
| 412 | value.data |= ParseHex(start[1], &error) << 16; |
| 413 | value.data |= ParseHex(start[2], &error) << 12; |
| 414 | value.data |= ParseHex(start[2], &error) << 8; |
| 415 | value.data |= ParseHex(start[3], &error) << 4; |
| 416 | value.data |= ParseHex(start[3], &error); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 417 | } else if (len == 5) { |
| 418 | value.dataType = android::Res_value::TYPE_INT_COLOR_ARGB4; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 419 | value.data |= ParseHex(start[1], &error) << 28; |
| 420 | value.data |= ParseHex(start[1], &error) << 24; |
| 421 | value.data |= ParseHex(start[2], &error) << 20; |
| 422 | value.data |= ParseHex(start[2], &error) << 16; |
| 423 | value.data |= ParseHex(start[3], &error) << 12; |
| 424 | value.data |= ParseHex(start[3], &error) << 8; |
| 425 | value.data |= ParseHex(start[4], &error) << 4; |
| 426 | value.data |= ParseHex(start[4], &error); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 427 | } else if (len == 7) { |
| 428 | value.dataType = android::Res_value::TYPE_INT_COLOR_RGB8; |
| 429 | value.data = 0xff000000u; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 430 | value.data |= ParseHex(start[1], &error) << 20; |
| 431 | value.data |= ParseHex(start[2], &error) << 16; |
| 432 | value.data |= ParseHex(start[3], &error) << 12; |
| 433 | value.data |= ParseHex(start[4], &error) << 8; |
| 434 | value.data |= ParseHex(start[5], &error) << 4; |
| 435 | value.data |= ParseHex(start[6], &error); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 436 | } else if (len == 9) { |
| 437 | value.dataType = android::Res_value::TYPE_INT_COLOR_ARGB8; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 438 | value.data |= ParseHex(start[1], &error) << 28; |
| 439 | value.data |= ParseHex(start[2], &error) << 24; |
| 440 | value.data |= ParseHex(start[3], &error) << 20; |
| 441 | value.data |= ParseHex(start[4], &error) << 16; |
| 442 | value.data |= ParseHex(start[5], &error) << 12; |
| 443 | value.data |= ParseHex(start[6], &error) << 8; |
| 444 | value.data |= ParseHex(start[7], &error) << 4; |
| 445 | value.data |= ParseHex(start[8], &error); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 446 | } else { |
| 447 | return {}; |
| 448 | } |
| 449 | return error ? std::unique_ptr<BinaryPrimitive>() |
| 450 | : util::make_unique<BinaryPrimitive>(value); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 453 | Maybe<bool> ParseBool(const StringPiece& str) { |
| 454 | StringPiece trimmed_str(util::TrimWhitespace(str)); |
| 455 | if (trimmed_str == "true" || trimmed_str == "TRUE" || trimmed_str == "True") { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 456 | return Maybe<bool>(true); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 457 | } else if (trimmed_str == "false" || trimmed_str == "FALSE" || |
| 458 | trimmed_str == "False") { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 459 | return Maybe<bool>(false); |
| 460 | } |
| 461 | return {}; |
Adam Lesinski | b23f1e0 | 2015-11-03 12:24:17 -0800 | [diff] [blame] | 462 | } |
| 463 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 464 | Maybe<uint32_t> ParseInt(const StringPiece& str) { |
| 465 | std::u16string str16 = util::Utf8ToUtf16(str); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 466 | android::Res_value value; |
| 467 | if (android::ResTable::stringToInt(str16.data(), str16.size(), &value)) { |
| 468 | return value.data; |
| 469 | } |
| 470 | return {}; |
Adam Lesinski | 36c73a5 | 2016-08-11 13:39:24 -0700 | [diff] [blame] | 471 | } |
| 472 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 473 | Maybe<ResourceId> ParseResourceId(const StringPiece& str) { |
| 474 | StringPiece trimmed_str(util::TrimWhitespace(str)); |
Adam Lesinski | bf0bd0f | 2016-06-01 15:31:50 -0700 | [diff] [blame] | 475 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 476 | std::u16string str16 = util::Utf8ToUtf16(trimmed_str); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 477 | android::Res_value value; |
| 478 | if (android::ResTable::stringToInt(str16.data(), str16.size(), &value)) { |
| 479 | if (value.dataType == android::Res_value::TYPE_INT_HEX) { |
| 480 | ResourceId id(value.data); |
Adam Lesinski | ceb9b2f | 2017-02-16 12:05:42 -0800 | [diff] [blame] | 481 | if (id.is_valid_dynamic()) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 482 | return id; |
| 483 | } |
Adam Lesinski | bf0bd0f | 2016-06-01 15:31:50 -0700 | [diff] [blame] | 484 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 485 | } |
| 486 | return {}; |
Adam Lesinski | bf0bd0f | 2016-06-01 15:31:50 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 489 | Maybe<int> ParseSdkVersion(const StringPiece& str) { |
| 490 | StringPiece trimmed_str(util::TrimWhitespace(str)); |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 491 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 492 | std::u16string str16 = util::Utf8ToUtf16(trimmed_str); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 493 | android::Res_value value; |
| 494 | if (android::ResTable::stringToInt(str16.data(), str16.size(), &value)) { |
| 495 | return static_cast<int>(value.data); |
| 496 | } |
Adam Lesinski | fb6312f | 2016-06-28 14:40:32 -0700 | [diff] [blame] | 497 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 498 | // Try parsing the code name. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 499 | std::pair<StringPiece, int> entry = GetDevelopmentSdkCodeNameAndVersion(); |
| 500 | if (entry.first == trimmed_str) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 501 | return entry.second; |
| 502 | } |
| 503 | return {}; |
Adam Lesinski | fb6312f | 2016-06-28 14:40:32 -0700 | [diff] [blame] | 504 | } |
| 505 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 506 | std::unique_ptr<BinaryPrimitive> TryParseBool(const StringPiece& str) { |
| 507 | if (Maybe<bool> maybe_result = ParseBool(str)) { |
Adam Lesinski | 5924d8c | 2017-05-30 15:15:58 -0700 | [diff] [blame] | 508 | const uint32_t data = maybe_result.value() ? 0xffffffffu : 0u; |
| 509 | return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_INT_BOOLEAN, data); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 510 | } |
| 511 | return {}; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Adam Lesinski | 5924d8c | 2017-05-30 15:15:58 -0700 | [diff] [blame] | 514 | std::unique_ptr<BinaryPrimitive> MakeBool(bool val) { |
| 515 | return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_INT_BOOLEAN, |
| 516 | val ? 0xffffffffu : 0u); |
| 517 | } |
| 518 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 519 | std::unique_ptr<BinaryPrimitive> TryParseInt(const StringPiece& str) { |
Adam Lesinski | 8a3bffe | 2017-06-27 12:27:43 -0700 | [diff] [blame] | 520 | std::u16string str16 = util::Utf8ToUtf16(util::TrimWhitespace(str)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 521 | android::Res_value value; |
| 522 | if (!android::ResTable::stringToInt(str16.data(), str16.size(), &value)) { |
| 523 | return {}; |
| 524 | } |
| 525 | return util::make_unique<BinaryPrimitive>(value); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Shane Farmer | d05b913 | 2018-02-14 15:40:35 -0800 | [diff] [blame] | 528 | std::unique_ptr<BinaryPrimitive> MakeInt(uint32_t val) { |
| 529 | return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_INT_DEC, val); |
| 530 | } |
| 531 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 532 | std::unique_ptr<BinaryPrimitive> TryParseFloat(const StringPiece& str) { |
Adam Lesinski | 8a3bffe | 2017-06-27 12:27:43 -0700 | [diff] [blame] | 533 | std::u16string str16 = util::Utf8ToUtf16(util::TrimWhitespace(str)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 534 | android::Res_value value; |
| 535 | if (!android::ResTable::stringToFloat(str16.data(), str16.size(), &value)) { |
| 536 | return {}; |
| 537 | } |
| 538 | return util::make_unique<BinaryPrimitive>(value); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 541 | uint32_t AndroidTypeToAttributeTypeMask(uint16_t type) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 542 | switch (type) { |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 543 | case android::Res_value::TYPE_NULL: |
| 544 | case android::Res_value::TYPE_REFERENCE: |
| 545 | case android::Res_value::TYPE_ATTRIBUTE: |
| 546 | case android::Res_value::TYPE_DYNAMIC_REFERENCE: |
Adam Lesinski | b5dc4bd | 2017-02-22 19:29:29 -0800 | [diff] [blame] | 547 | case android::Res_value::TYPE_DYNAMIC_ATTRIBUTE: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 548 | return android::ResTable_map::TYPE_REFERENCE; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 549 | |
| 550 | case android::Res_value::TYPE_STRING: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 551 | return android::ResTable_map::TYPE_STRING; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 552 | |
| 553 | case android::Res_value::TYPE_FLOAT: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 554 | return android::ResTable_map::TYPE_FLOAT; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 555 | |
| 556 | case android::Res_value::TYPE_DIMENSION: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 557 | return android::ResTable_map::TYPE_DIMENSION; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 558 | |
| 559 | case android::Res_value::TYPE_FRACTION: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 560 | return android::ResTable_map::TYPE_FRACTION; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 561 | |
| 562 | case android::Res_value::TYPE_INT_DEC: |
| 563 | case android::Res_value::TYPE_INT_HEX: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 564 | return android::ResTable_map::TYPE_INTEGER | |
| 565 | android::ResTable_map::TYPE_ENUM | |
| 566 | android::ResTable_map::TYPE_FLAGS; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 567 | |
| 568 | case android::Res_value::TYPE_INT_BOOLEAN: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 569 | return android::ResTable_map::TYPE_BOOLEAN; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 570 | |
| 571 | case android::Res_value::TYPE_INT_COLOR_ARGB8: |
| 572 | case android::Res_value::TYPE_INT_COLOR_RGB8: |
| 573 | case android::Res_value::TYPE_INT_COLOR_ARGB4: |
| 574 | case android::Res_value::TYPE_INT_COLOR_RGB4: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 575 | return android::ResTable_map::TYPE_COLOR; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 576 | |
| 577 | default: |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 578 | return 0; |
| 579 | }; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 582 | std::unique_ptr<Item> TryParseItemForAttribute( |
| 583 | const StringPiece& value, uint32_t type_mask, |
| 584 | const std::function<void(const ResourceName&)>& on_create_reference) { |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 585 | using android::ResTable_map; |
| 586 | |
| 587 | auto null_or_empty = TryParseNullOrEmpty(value); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 588 | if (null_or_empty) { |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 589 | return null_or_empty; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 590 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 591 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 592 | bool create = false; |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 593 | auto reference = TryParseReference(value, &create); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 594 | if (reference) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 595 | if (create && on_create_reference) { |
| 596 | on_create_reference(reference->name.value()); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 597 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 598 | return std::move(reference); |
| 599 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 600 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 601 | if (type_mask & ResTable_map::TYPE_COLOR) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 602 | // Try parsing this as a color. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 603 | auto color = TryParseColor(value); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 604 | if (color) { |
| 605 | return std::move(color); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 606 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 607 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 608 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 609 | if (type_mask & ResTable_map::TYPE_BOOLEAN) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 610 | // Try parsing this as a boolean. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 611 | auto boolean = TryParseBool(value); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 612 | if (boolean) { |
| 613 | return std::move(boolean); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 614 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 615 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 616 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 617 | if (type_mask & ResTable_map::TYPE_INTEGER) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 618 | // Try parsing this as an integer. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 619 | auto integer = TryParseInt(value); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 620 | if (integer) { |
| 621 | return std::move(integer); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 622 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 623 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 624 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 625 | const uint32_t float_mask = |
| 626 | ResTable_map::TYPE_FLOAT | ResTable_map::TYPE_DIMENSION | ResTable_map::TYPE_FRACTION; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 627 | if (type_mask & float_mask) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 628 | // Try parsing this as a float. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 629 | auto floating_point = TryParseFloat(value); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 630 | if (floating_point) { |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 631 | if (type_mask & AndroidTypeToAttributeTypeMask(floating_point->value.dataType)) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 632 | return std::move(floating_point); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 633 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 634 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 635 | } |
| 636 | return {}; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | /** |
| 640 | * We successively try to parse the string as a resource type that the Attribute |
| 641 | * allows. |
| 642 | */ |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 643 | std::unique_ptr<Item> TryParseItemForAttribute( |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 644 | const StringPiece& str, const Attribute* attr, |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 645 | const std::function<void(const ResourceName&)>& on_create_reference) { |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 646 | using android::ResTable_map; |
| 647 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 648 | const uint32_t type_mask = attr->type_mask; |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 649 | auto value = TryParseItemForAttribute(str, type_mask, on_create_reference); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 650 | if (value) { |
| 651 | return value; |
| 652 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 653 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 654 | if (type_mask & ResTable_map::TYPE_ENUM) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 655 | // Try parsing this as an enum. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 656 | auto enum_value = TryParseEnumSymbol(attr, str); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 657 | if (enum_value) { |
| 658 | return std::move(enum_value); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 659 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 660 | } |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 661 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 662 | if (type_mask & ResTable_map::TYPE_FLAGS) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 663 | // Try parsing this as a flag. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 664 | auto flag_value = TryParseFlagSymbol(attr, str); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 665 | if (flag_value) { |
| 666 | return std::move(flag_value); |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 667 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 668 | } |
| 669 | return {}; |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 670 | } |
| 671 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 672 | std::string BuildResourceFileName(const ResourceFile& res_file, const NameMangler* mangler) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 673 | std::stringstream out; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 674 | out << "res/" << res_file.name.type; |
| 675 | if (res_file.config != ConfigDescription{}) { |
| 676 | out << "-" << res_file.config; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 677 | } |
| 678 | out << "/"; |
Adam Lesinski | a6fe345 | 2015-12-09 15:20:52 -0800 | [diff] [blame] | 679 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 680 | if (mangler && mangler->ShouldMangle(res_file.name.package)) { |
| 681 | out << NameMangler::MangleEntry(res_file.name.package, res_file.name.entry); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 682 | } else { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 683 | out << res_file.name.entry; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 684 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 685 | out << file::GetExtension(res_file.source.path); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 686 | return out.str(); |
Adam Lesinski | a6fe345 | 2015-12-09 15:20:52 -0800 | [diff] [blame] | 687 | } |
| 688 | |
Adam Lesinski | d0f492d | 2017-04-03 18:12:45 -0700 | [diff] [blame] | 689 | std::unique_ptr<Item> ParseBinaryResValue(const ResourceType& type, const ConfigDescription& config, |
| 690 | const android::ResStringPool& src_pool, |
| 691 | const android::Res_value& res_value, |
| 692 | StringPool* dst_pool) { |
| 693 | if (type == ResourceType::kId) { |
| 694 | return util::make_unique<Id>(); |
| 695 | } |
| 696 | |
| 697 | const uint32_t data = util::DeviceToHost32(res_value.data); |
| 698 | switch (res_value.dataType) { |
| 699 | case android::Res_value::TYPE_STRING: { |
| 700 | const std::string str = util::GetString(src_pool, data); |
| 701 | const android::ResStringPool_span* spans = src_pool.styleAt(data); |
| 702 | |
| 703 | // Check if the string has a valid style associated with it. |
| 704 | if (spans != nullptr && spans->name.index != android::ResStringPool_span::END) { |
| 705 | StyleString style_str = {str}; |
| 706 | while (spans->name.index != android::ResStringPool_span::END) { |
| 707 | style_str.spans.push_back(Span{util::GetString(src_pool, spans->name.index), |
| 708 | spans->firstChar, spans->lastChar}); |
| 709 | spans++; |
| 710 | } |
| 711 | return util::make_unique<StyledString>(dst_pool->MakeRef( |
Adam Lesinski | 060b53d | 2017-07-28 17:10:35 -0700 | [diff] [blame] | 712 | style_str, StringPool::Context(StringPool::Context::kNormalPriority, config))); |
Adam Lesinski | d0f492d | 2017-04-03 18:12:45 -0700 | [diff] [blame] | 713 | } else { |
| 714 | if (type != ResourceType::kString && util::StartsWith(str, "res/")) { |
| 715 | // This must be a FileReference. |
Adam Lesinski | e59f0d8 | 2017-10-13 09:36:53 -0700 | [diff] [blame] | 716 | std::unique_ptr<FileReference> file_ref = |
| 717 | util::make_unique<FileReference>(dst_pool->MakeRef( |
| 718 | str, StringPool::Context(StringPool::Context::kHighPriority, config))); |
Pierre Lecesne | 70fdf76 | 2017-11-27 19:29:42 +0000 | [diff] [blame] | 719 | if (type == ResourceType::kRaw) { |
| 720 | file_ref->type = ResourceFile::Type::kUnknown; |
| 721 | } else if (util::EndsWith(*file_ref->path, ".xml")) { |
Adam Lesinski | e59f0d8 | 2017-10-13 09:36:53 -0700 | [diff] [blame] | 722 | file_ref->type = ResourceFile::Type::kBinaryXml; |
| 723 | } else if (util::EndsWith(*file_ref->path, ".png")) { |
| 724 | file_ref->type = ResourceFile::Type::kPng; |
| 725 | } |
| 726 | return std::move(file_ref); |
Adam Lesinski | d0f492d | 2017-04-03 18:12:45 -0700 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | // There are no styles associated with this string, so treat it as a simple string. |
| 730 | return util::make_unique<String>(dst_pool->MakeRef(str, StringPool::Context(config))); |
| 731 | } |
| 732 | } break; |
| 733 | |
| 734 | case android::Res_value::TYPE_REFERENCE: |
| 735 | case android::Res_value::TYPE_ATTRIBUTE: |
| 736 | case android::Res_value::TYPE_DYNAMIC_REFERENCE: |
| 737 | case android::Res_value::TYPE_DYNAMIC_ATTRIBUTE: { |
| 738 | Reference::Type ref_type = Reference::Type::kResource; |
| 739 | if (res_value.dataType == android::Res_value::TYPE_ATTRIBUTE || |
| 740 | res_value.dataType == android::Res_value::TYPE_DYNAMIC_ATTRIBUTE) { |
| 741 | ref_type = Reference::Type::kAttribute; |
| 742 | } |
| 743 | |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 744 | if (data == 0u) { |
Adam Lesinski | d0f492d | 2017-04-03 18:12:45 -0700 | [diff] [blame] | 745 | // A reference of 0, must be the magic @null reference. |
Adam Lesinski | bab4ef5 | 2017-06-01 15:22:57 -0700 | [diff] [blame] | 746 | return util::make_unique<Reference>(); |
Adam Lesinski | d0f492d | 2017-04-03 18:12:45 -0700 | [diff] [blame] | 747 | } |
| 748 | |
| 749 | // This is a normal reference. |
| 750 | return util::make_unique<Reference>(data, ref_type); |
| 751 | } break; |
| 752 | } |
| 753 | |
| 754 | // Treat this as a raw binary primitive. |
| 755 | return util::make_unique<BinaryPrimitive>(res_value); |
| 756 | } |
| 757 | |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 758 | // Converts the codepoint to UTF-8 and appends it to the string. |
| 759 | static bool AppendCodepointToUtf8String(char32_t codepoint, std::string* output) { |
| 760 | ssize_t len = utf32_to_utf8_length(&codepoint, 1); |
| 761 | if (len < 0) { |
| 762 | return false; |
| 763 | } |
| 764 | |
| 765 | const size_t start_append_pos = output->size(); |
| 766 | |
| 767 | // Make room for the next character. |
| 768 | output->resize(output->size() + len); |
| 769 | |
| 770 | char* dst = &*(output->begin() + start_append_pos); |
| 771 | utf32_to_utf8(&codepoint, 1, dst, len + 1); |
| 772 | return true; |
| 773 | } |
| 774 | |
| 775 | // Reads up to 4 UTF-8 characters that represent a Unicode escape sequence, and appends the |
| 776 | // Unicode codepoint represented by the escape sequence to the string. |
| 777 | static bool AppendUnicodeEscapeSequence(Utf8Iterator* iter, std::string* output) { |
| 778 | char32_t code = 0; |
| 779 | for (size_t i = 0; i < 4 && iter->HasNext(); i++) { |
| 780 | char32_t codepoint = iter->Next(); |
| 781 | char32_t a; |
| 782 | if (codepoint >= U'0' && codepoint <= U'9') { |
| 783 | a = codepoint - U'0'; |
| 784 | } else if (codepoint >= U'a' && codepoint <= U'f') { |
| 785 | a = codepoint - U'a' + 10; |
| 786 | } else if (codepoint >= U'A' && codepoint <= U'F') { |
| 787 | a = codepoint - U'A' + 10; |
| 788 | } else { |
| 789 | return {}; |
| 790 | } |
| 791 | code = (code << 4) | a; |
| 792 | } |
| 793 | return AppendCodepointToUtf8String(code, output); |
| 794 | } |
| 795 | |
| 796 | StringBuilder::StringBuilder(bool preserve_spaces) |
| 797 | : preserve_spaces_(preserve_spaces), quote_(preserve_spaces) { |
| 798 | } |
| 799 | |
Ryan Mitchell | cb76d73 | 2018-06-05 10:15:04 -0700 | [diff] [blame] | 800 | StringBuilder& StringBuilder::AppendText(const std::string& text, bool preserve_spaces) { |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 801 | if (!error_.empty()) { |
| 802 | return *this; |
| 803 | } |
| 804 | |
Ryan Mitchell | cb76d73 | 2018-06-05 10:15:04 -0700 | [diff] [blame] | 805 | // Enable preserving spaces if it is enabled for this append or the StringBuilder was constructed |
| 806 | // to preserve spaces |
| 807 | preserve_spaces = (preserve_spaces) ? preserve_spaces : preserve_spaces_; |
| 808 | |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 809 | const size_t previous_len = xml_string_.text.size(); |
| 810 | Utf8Iterator iter(text); |
| 811 | while (iter.HasNext()) { |
| 812 | char32_t codepoint = iter.Next(); |
Ryan Mitchell | cb76d73 | 2018-06-05 10:15:04 -0700 | [diff] [blame] | 813 | if (!preserve_spaces && !quote_ && iswspace(codepoint)) { |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 814 | if (!last_codepoint_was_space_) { |
| 815 | // Emit a space if it's the first. |
| 816 | xml_string_.text += ' '; |
| 817 | last_codepoint_was_space_ = true; |
| 818 | } |
| 819 | |
| 820 | // Keep eating spaces. |
| 821 | continue; |
| 822 | } |
| 823 | |
| 824 | // This is not a space. |
| 825 | last_codepoint_was_space_ = false; |
| 826 | |
| 827 | if (codepoint == U'\\') { |
| 828 | if (iter.HasNext()) { |
| 829 | codepoint = iter.Next(); |
| 830 | switch (codepoint) { |
| 831 | case U't': |
| 832 | xml_string_.text += '\t'; |
| 833 | break; |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 834 | case U'n': |
| 835 | xml_string_.text += '\n'; |
| 836 | break; |
| 837 | |
| 838 | case U'#': |
| 839 | case U'@': |
| 840 | case U'?': |
| 841 | case U'"': |
| 842 | case U'\'': |
| 843 | case U'\\': |
| 844 | xml_string_.text += static_cast<char>(codepoint); |
| 845 | break; |
| 846 | |
| 847 | case U'u': |
| 848 | if (!AppendUnicodeEscapeSequence(&iter, &xml_string_.text)) { |
| 849 | error_ = |
| 850 | StringPrintf("invalid unicode escape sequence in string\n\"%s\"", text.c_str()); |
| 851 | return *this; |
| 852 | } |
| 853 | break; |
| 854 | |
| 855 | default: |
| 856 | // Ignore the escape character and just include the codepoint. |
| 857 | AppendCodepointToUtf8String(codepoint, &xml_string_.text); |
| 858 | break; |
| 859 | } |
| 860 | } |
Ryan Mitchell | cb76d73 | 2018-06-05 10:15:04 -0700 | [diff] [blame] | 861 | } else if (!preserve_spaces && codepoint == U'"') { |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 862 | // Only toggle the quote state when we are not preserving spaces. |
| 863 | quote_ = !quote_; |
| 864 | |
Ryan Mitchell | cb76d73 | 2018-06-05 10:15:04 -0700 | [diff] [blame] | 865 | } else if (!preserve_spaces && !quote_ && codepoint == U'\'') { |
| 866 | // This should be escaped when we are not preserving spaces |
Adam Lesinski | 2eed52e | 2018-02-21 15:55:58 -0800 | [diff] [blame] | 867 | error_ = StringPrintf("unescaped apostrophe in string\n\"%s\"", text.c_str()); |
| 868 | return *this; |
| 869 | |
| 870 | } else { |
| 871 | AppendCodepointToUtf8String(codepoint, &xml_string_.text); |
| 872 | } |
| 873 | } |
| 874 | |
| 875 | // Accumulate the added string's UTF-16 length. |
| 876 | const uint8_t* utf8_data = reinterpret_cast<const uint8_t*>(xml_string_.text.c_str()); |
| 877 | const size_t utf8_length = xml_string_.text.size(); |
| 878 | ssize_t len = utf8_to_utf16_length(utf8_data + previous_len, utf8_length - previous_len); |
| 879 | if (len < 0) { |
| 880 | error_ = StringPrintf("invalid unicode code point in string\n\"%s\"", utf8_data + previous_len); |
| 881 | return *this; |
| 882 | } |
| 883 | |
| 884 | utf16_len_ += static_cast<uint32_t>(len); |
| 885 | return *this; |
| 886 | } |
| 887 | |
| 888 | StringBuilder::SpanHandle StringBuilder::StartSpan(const std::string& name) { |
| 889 | if (!error_.empty()) { |
| 890 | return 0u; |
| 891 | } |
| 892 | |
| 893 | // When we start a span, all state associated with whitespace truncation and quotation is ended. |
| 894 | ResetTextState(); |
| 895 | Span span; |
| 896 | span.name = name; |
| 897 | span.first_char = span.last_char = utf16_len_; |
| 898 | xml_string_.spans.push_back(std::move(span)); |
| 899 | return xml_string_.spans.size() - 1; |
| 900 | } |
| 901 | |
| 902 | void StringBuilder::EndSpan(SpanHandle handle) { |
| 903 | if (!error_.empty()) { |
| 904 | return; |
| 905 | } |
| 906 | |
| 907 | // When we end a span, all state associated with whitespace truncation and quotation is ended. |
| 908 | ResetTextState(); |
| 909 | xml_string_.spans[handle].last_char = utf16_len_ - 1u; |
| 910 | } |
| 911 | |
| 912 | StringBuilder::UntranslatableHandle StringBuilder::StartUntranslatable() { |
| 913 | if (!error_.empty()) { |
| 914 | return 0u; |
| 915 | } |
| 916 | |
| 917 | UntranslatableSection section; |
| 918 | section.start = section.end = xml_string_.text.size(); |
| 919 | xml_string_.untranslatable_sections.push_back(section); |
| 920 | return xml_string_.untranslatable_sections.size() - 1; |
| 921 | } |
| 922 | |
| 923 | void StringBuilder::EndUntranslatable(UntranslatableHandle handle) { |
| 924 | if (!error_.empty()) { |
| 925 | return; |
| 926 | } |
| 927 | xml_string_.untranslatable_sections[handle].end = xml_string_.text.size(); |
| 928 | } |
| 929 | |
| 930 | FlattenedXmlString StringBuilder::GetFlattenedString() const { |
| 931 | return xml_string_; |
| 932 | } |
| 933 | |
| 934 | std::string StringBuilder::to_string() const { |
| 935 | return xml_string_.text; |
| 936 | } |
| 937 | |
| 938 | StringBuilder::operator bool() const { |
| 939 | return error_.empty(); |
| 940 | } |
| 941 | |
| 942 | std::string StringBuilder::GetError() const { |
| 943 | return error_; |
| 944 | } |
| 945 | |
| 946 | void StringBuilder::ResetTextState() { |
| 947 | quote_ = preserve_spaces_; |
| 948 | last_codepoint_was_space_ = false; |
| 949 | } |
| 950 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 951 | } // namespace ResourceUtils |
| 952 | } // namespace aapt |