blob: 7887915a7bb16e1a86ad1f086e5adfc432ed0fd6 [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
17#ifndef AAPT_LINKER_REFERENCELINKER_H
18#define AAPT_LINKER_REFERENCELINKER_H
19
Adam Lesinskice5e56e2016-10-21 17:56:45 -070020#include "android-base/macros.h"
21
Adam Lesinski467f1712015-11-16 17:35:44 -080022#include "Resource.h"
23#include "ResourceValues.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080024#include "link/Linkers.h"
25#include "process/IResourceTableConsumer.h"
26#include "process/SymbolTable.h"
27#include "xml/XmlDom.h"
28
Adam Lesinski467f1712015-11-16 17:35:44 -080029namespace aapt {
30
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070031// Resolves all references to resources in the ResourceTable and assigns them IDs.
32// The ResourceTable must already have IDs assigned to each resource.
33// Once the ResourceTable is processed by this linker, it is ready to be flattened.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070034class ReferenceLinker : public IResourceTableConsumer {
35 public:
36 ReferenceLinker() = default;
37
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070038 // Performs name mangling and looks up the resource in the symbol table. Uses the callsite's
Chris Warrington481f0272018-02-06 14:03:39 +000039 // package if the reference has no package name defined (implicit), or if auto_namespace is
40 // set try looking in all avaliable packages for a symbol of that name.
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070041 // Returns nullptr if the symbol was not found.
42 static const SymbolTable::Symbol* ResolveSymbol(const Reference& reference,
Chris Warrington481f0272018-02-06 14:03:39 +000043 const CallSite& callsite, SymbolTable* symbols,
44 bool auto_namespace);
Adam Lesinski467f1712015-11-16 17:35:44 -080045
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070046 // Performs name mangling and looks up the resource in the symbol table. If the symbol is not
47 // visible by the reference at the callsite, nullptr is returned.
48 // `out_error` holds the error message.
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080049 static const SymbolTable::Symbol* ResolveSymbolCheckVisibility(const Reference& reference,
Adam Lesinskif34b6f42017-03-03 16:33:26 -080050 const CallSite& callsite,
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080051 SymbolTable* symbols,
Chris Warrington481f0272018-02-06 14:03:39 +000052 bool auto_namespace,
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080053 std::string* out_error);
Adam Lesinski467f1712015-11-16 17:35:44 -080054
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070055 // Same as ResolveSymbolCheckVisibility(), but also makes sure the symbol is an attribute.
56 // That is, the return value will have a non-null value for ISymbolTable::Symbol::attribute.
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080057 static const SymbolTable::Symbol* ResolveAttributeCheckVisibility(const Reference& reference,
Adam Lesinskif34b6f42017-03-03 16:33:26 -080058 const CallSite& callsite,
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080059 SymbolTable* symbols,
Chris Warrington481f0272018-02-06 14:03:39 +000060 bool auto_namespace,
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080061 std::string* out_error);
Adam Lesinski467f1712015-11-16 17:35:44 -080062
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070063 // Resolves the attribute reference and returns an xml::AaptAttribute if successful.
64 // If resolution fails, outError holds the error message.
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080065 static Maybe<xml::AaptAttribute> CompileXmlAttribute(const Reference& reference,
Adam Lesinskif34b6f42017-03-03 16:33:26 -080066 const CallSite& callsite,
Chris Warrington481f0272018-02-06 14:03:39 +000067 SymbolTable* symbols, bool auto_namespace,
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080068 std::string* out_error);
Adam Lesinski467f1712015-11-16 17:35:44 -080069
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070070 // Writes the resource name to the DiagMessage, using the
71 // "orig_name (aka <transformed_name>)" syntax.
72 static void WriteResourceName(const Reference& orig, const CallSite& callsite,
73 const xml::IPackageDeclStack* decls, DiagMessage* out_msg);
Adam Lesinski28cacf02015-11-23 14:22:47 -080074
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070075 // Same as WriteResourceName but omits the 'attr' part.
76 static void WriteAttributeName(const Reference& ref, const CallSite& callsite,
77 const xml::IPackageDeclStack* decls, DiagMessage* out_msg);
78
79 // Transforms the package name of the reference to the fully qualified package name using
80 // the xml::IPackageDeclStack, then mangles and looks up the symbol. If the symbol is visible
81 // to the reference at the callsite, the reference is updated with an ID.
82 // Returns false on failure, and an error message is logged to the IDiagnostics in the context.
Adam Lesinskif34b6f42017-03-03 16:33:26 -080083 static bool LinkReference(const CallSite& callsite, Reference* reference, IAaptContext* context,
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070084 SymbolTable* symbols, const xml::IPackageDeclStack* decls);
Adam Lesinski467f1712015-11-16 17:35:44 -080085
Adam Lesinski1ef0fa92017-08-15 21:32:49 -070086 // Links all references in the ResourceTable.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070087 bool Consume(IAaptContext* context, ResourceTable* table) override;
88
89 private:
90 DISALLOW_COPY_AND_ASSIGN(ReferenceLinker);
Adam Lesinski467f1712015-11-16 17:35:44 -080091};
92
Adam Lesinskicacb28f2016-10-19 12:18:14 -070093} // namespace aapt
Adam Lesinski467f1712015-11-16 17:35:44 -080094
95#endif /* AAPT_LINKER_REFERENCELINKER_H */