blob: c1186e83369c3182153e224487339af09a4d8be2 [file] [log] [blame]
Adam Lesinski467f1712015-11-16 17:35:44 -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
Adam Lesinski467f1712015-11-16 17:35:44 -080017#include "xml/XmlUtil.h"
18
19#include <string>
20
Adam Lesinskice5e56e2016-10-21 17:56:45 -070021#include "util/Maybe.h"
22#include "util/Util.h"
23
Adam Lesinskid5083f62017-01-16 15:07:21 -080024using android::StringPiece;
25
Adam Lesinski467f1712015-11-16 17:35:44 -080026namespace aapt {
27namespace xml {
28
Adam Lesinskice5e56e2016-10-21 17:56:45 -070029std::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 Lesinskid0f116b2016-07-08 15:00:32 -070035}
36
Adam Lesinskice5e56e2016-10-21 17:56:45 -070037Maybe<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 Lesinski467f1712015-11-16 17:35:44 -080046 }
Adam Lesinskid5083f62017-01-16 15:07:21 -080047 return ExtractedPackage{package.to_string(), false /* is_private */};
Adam Lesinski467f1712015-11-16 17:35:44 -080048
Adam Lesinskice5e56e2016-10-21 17:56:45 -070049 } 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 Lesinski467f1712015-11-16 17:35:44 -080056 }
Adam Lesinskid5083f62017-01-16 15:07:21 -080057 return ExtractedPackage{package.to_string(), true /* is_private */};
Adam Lesinskice5e56e2016-10-21 17:56:45 -070058
59 } else if (namespace_uri == kSchemaAuto) {
60 return ExtractedPackage{std::string(), true /* is_private */};
61 }
62 return {};
Adam Lesinski467f1712015-11-16 17:35:44 -080063}
64
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070065void ResolvePackage(const IPackageDeclStack* decl_stack, Reference* in_ref) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070066 if (in_ref->name) {
67 if (Maybe<ExtractedPackage> transformed_package =
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070068 decl_stack->TransformPackageAlias(in_ref->name.value().package)) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070069 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 Lesinski1ef0fa92017-08-15 21:32:49 -070073 // namespace is public, we keep the reference private.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070074 in_ref->private_reference |= extracted_package.private_namespace;
75 }
76 }
77}
78
79} // namespace xml
80} // namespace aapt