Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -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 | |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 17 | #include "xml/XmlUtil.h" |
| 18 | |
| 19 | #include <string> |
| 20 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 21 | #include "util/Maybe.h" |
| 22 | #include "util/Util.h" |
| 23 | |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 24 | using android::StringPiece; |
| 25 | |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 26 | namespace aapt { |
| 27 | namespace xml { |
| 28 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 29 | std::string BuildPackageNamespace(const StringPiece& package, |
| 30 | bool private_reference) { |
| 31 | std::string result = |
| 32 | private_reference ? kSchemaPrivatePrefix : kSchemaPublicPrefix; |
| 33 | result.append(package.data(), package.size()); |
| 34 | return result; |
Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 37 | Maybe<ExtractedPackage> ExtractPackageFromNamespace( |
| 38 | const std::string& namespace_uri) { |
| 39 | if (util::StartsWith(namespace_uri, kSchemaPublicPrefix)) { |
| 40 | StringPiece schema_prefix = kSchemaPublicPrefix; |
| 41 | StringPiece package = namespace_uri; |
| 42 | package = package.substr(schema_prefix.size(), |
| 43 | package.size() - schema_prefix.size()); |
| 44 | if (package.empty()) { |
| 45 | return {}; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 46 | } |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 47 | return ExtractedPackage{package.to_string(), false /* is_private */}; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 48 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 49 | } else if (util::StartsWith(namespace_uri, kSchemaPrivatePrefix)) { |
| 50 | StringPiece schema_prefix = kSchemaPrivatePrefix; |
| 51 | StringPiece package = namespace_uri; |
| 52 | package = package.substr(schema_prefix.size(), |
| 53 | package.size() - schema_prefix.size()); |
| 54 | if (package.empty()) { |
| 55 | return {}; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 56 | } |
Adam Lesinski | d5083f6 | 2017-01-16 15:07:21 -0800 | [diff] [blame] | 57 | return ExtractedPackage{package.to_string(), true /* is_private */}; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 58 | |
| 59 | } else if (namespace_uri == kSchemaAuto) { |
| 60 | return ExtractedPackage{std::string(), true /* is_private */}; |
| 61 | } |
| 62 | return {}; |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Adam Lesinski | 1ef0fa9 | 2017-08-15 21:32:49 -0700 | [diff] [blame] | 65 | void ResolvePackage(const IPackageDeclStack* decl_stack, Reference* in_ref) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 66 | if (in_ref->name) { |
| 67 | if (Maybe<ExtractedPackage> transformed_package = |
Adam Lesinski | 1ef0fa9 | 2017-08-15 21:32:49 -0700 | [diff] [blame] | 68 | decl_stack->TransformPackageAlias(in_ref->name.value().package)) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 69 | ExtractedPackage& extracted_package = transformed_package.value(); |
| 70 | in_ref->name.value().package = std::move(extracted_package.package); |
| 71 | |
| 72 | // If the reference was already private (with a * prefix) and the |
Adam Lesinski | 1ef0fa9 | 2017-08-15 21:32:49 -0700 | [diff] [blame] | 73 | // namespace is public, we keep the reference private. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame] | 74 | in_ref->private_reference |= extracted_package.private_namespace; |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | } // namespace xml |
| 80 | } // namespace aapt |