blob: c798cbb8d8a2c8f2ae5941a85f7378350f8ff18d [file] [log] [blame]
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001/*
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_PROCESS_SYMBOLTABLE_H
18#define AAPT_PROCESS_SYMBOLTABLE_H
19
Adam Lesinskice5e56e2016-10-21 17:56:45 -070020#include <algorithm>
21#include <memory>
22#include <vector>
23
24#include "android-base/macros.h"
25#include "androidfw/AssetManager.h"
26#include "utils/JenkinsHash.h"
27#include "utils/LruCache.h"
28
Adam Lesinski1ab598f2015-08-14 14:26:04 -070029#include "Resource.h"
30#include "ResourceTable.h"
31#include "ResourceValues.h"
32#include "util/Util.h"
33
Adam Lesinski1ab598f2015-08-14 14:26:04 -070034namespace aapt {
35
Adam Lesinski1ab598f2015-08-14 14:26:04 -070036inline android::hash_t hash_type(const ResourceName& name) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -070037 std::hash<std::string> str_hash;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070038 android::hash_t hash = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070039 hash = android::JenkinsHashMix(hash, (uint32_t)str_hash(name.package));
Adam Lesinskicacb28f2016-10-19 12:18:14 -070040 hash = android::JenkinsHashMix(hash, (uint32_t)name.type);
Adam Lesinskice5e56e2016-10-21 17:56:45 -070041 hash = android::JenkinsHashMix(hash, (uint32_t)str_hash(name.entry));
Adam Lesinskicacb28f2016-10-19 12:18:14 -070042 return hash;
Adam Lesinski1ab598f2015-08-14 14:26:04 -070043}
44
45inline android::hash_t hash_type(const ResourceId& id) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070046 return android::hash_type(id.id);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070047}
48
Adam Lesinski64587af2016-02-18 18:33:06 -080049class ISymbolSource;
Adam Lesinski1e4b0e52017-04-27 15:01:10 -070050class ISymbolTableDelegate;
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080051class NameMangler;
Adam Lesinski64587af2016-02-18 18:33:06 -080052
53class SymbolTable {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070054 public:
55 struct Symbol {
Adam Lesinskic744ae82017-05-17 19:28:38 -070056 Symbol() = default;
Adam Lesinski626b3db2016-04-07 13:24:59 -070057
Adam Lesinskic744ae82017-05-17 19:28:38 -070058 explicit Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr = {},
59 bool pub = false)
60 : id(i), attribute(attr), is_public(pub) {
61 }
Adam Lesinski626b3db2016-04-07 13:24:59 -070062
Adam Lesinskicacb28f2016-10-19 12:18:14 -070063 Symbol(const Symbol&) = default;
64 Symbol(Symbol&&) = default;
65 Symbol& operator=(const Symbol&) = default;
66 Symbol& operator=(Symbol&&) = default;
Adam Lesinski626b3db2016-04-07 13:24:59 -070067
Adam Lesinskicacb28f2016-10-19 12:18:14 -070068 Maybe<ResourceId> id;
69 std::shared_ptr<Attribute> attribute;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070070 bool is_public = false;
Todd Kennedy32512992018-04-25 16:45:59 -070071 bool is_dynamic = false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070072 };
Adam Lesinski64587af2016-02-18 18:33:06 -080073
Adam Lesinski1e4b0e52017-04-27 15:01:10 -070074 SymbolTable(NameMangler* mangler);
75
76 // Overrides the default ISymbolTableDelegate, which allows a custom defined strategy for
77 // looking up resources from a set of sources.
78 void SetDelegate(std::unique_ptr<ISymbolTableDelegate> delegate);
Adam Lesinski64587af2016-02-18 18:33:06 -080079
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080080 // Appends a symbol source. The cache is not cleared since entries that
81 // have already been found would take precedence due to ordering.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070082 void AppendSource(std::unique_ptr<ISymbolSource> source);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080083
84 // Prepends a symbol source so that its symbols take precedence. This will
85 // cause the existing cache to be cleared.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070086 void PrependSource(std::unique_ptr<ISymbolSource> source);
Adam Lesinski64587af2016-02-18 18:33:06 -080087
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080088 // NOTE: Never hold on to the result between calls to FindByXXX. The
89 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070090 const Symbol* FindByName(const ResourceName& name);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080091
Chris Warrington481f0272018-02-06 14:03:39 +000092 // Finds the symbol from any package, for use as part of automatic conversion to namespaces.
93 // This returns the symbol from the highest priority package,
94 // which mimics the behavior of the resource merger and overlays.
95 // NOTE: Never hold on to the result between calls to FindByXXX. The
96 // results are stored in a cache which may evict entries on subsequent calls.
97 const Symbol* FindByNameInAnyPackage(const ResourceName& name);
98
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080099 // NOTE: Never hold on to the result between calls to FindByXXX. The
100 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700101 const Symbol* FindById(const ResourceId& id);
Adam Lesinski64587af2016-02-18 18:33:06 -0800102
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800103 // Let's the ISymbolSource decide whether looking up by name or ID is faster,
104 // if both are available.
105 // NOTE: Never hold on to the result between calls to FindByXXX. The
106 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700107 const Symbol* FindByReference(const Reference& ref);
Adam Lesinski76565542016-03-10 21:55:04 -0800108
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700109 private:
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800110 NameMangler* mangler_;
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700111 std::unique_ptr<ISymbolTableDelegate> delegate_;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700112 std::vector<std::unique_ptr<ISymbolSource>> sources_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700113
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700114 // We use shared_ptr because unique_ptr is not supported and
115 // we need automatic deletion.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700116 android::LruCache<ResourceName, std::shared_ptr<Symbol>> cache_;
117 android::LruCache<ResourceId, std::shared_ptr<Symbol>> id_cache_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700118
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700119 DISALLOW_COPY_AND_ASSIGN(SymbolTable);
Adam Lesinski64587af2016-02-18 18:33:06 -0800120};
121
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700122// Allows the customization of the lookup strategy/order of a symbol from a set of
123// symbol sources.
124class ISymbolTableDelegate {
125 public:
126 ISymbolTableDelegate() = default;
127 virtual ~ISymbolTableDelegate() = default;
128
129 // The name is already mangled and does not need further processing.
130 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
131 const ResourceName& name, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
132
133 virtual std::unique_ptr<SymbolTable::Symbol> FindById(
134 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
135
136 private:
137 DISALLOW_COPY_AND_ASSIGN(ISymbolTableDelegate);
138};
139
140class DefaultSymbolTableDelegate : public ISymbolTableDelegate {
141 public:
142 DefaultSymbolTableDelegate() = default;
143 virtual ~DefaultSymbolTableDelegate() = default;
144
145 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
146 const ResourceName& name,
147 const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
148 virtual std::unique_ptr<SymbolTable::Symbol> FindById(
149 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
150
151 private:
152 DISALLOW_COPY_AND_ASSIGN(DefaultSymbolTableDelegate);
153};
154
155// An interface that a symbol source implements in order to surface symbol information
156// to the symbol table.
Adam Lesinski64587af2016-02-18 18:33:06 -0800157class ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700158 public:
159 virtual ~ISymbolSource() = default;
Adam Lesinski64587af2016-02-18 18:33:06 -0800160
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700161 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700162 const ResourceName& name) = 0;
Chris Warrington481f0272018-02-06 14:03:39 +0000163 // Finds the name of a symbol from any package,
164 // for use as part of automatic conversion to namespaces.
165 // This returns the symbol from the highest priority package,
166 // which mimics the behavior of the resource merger and overlays.
167 virtual std::string GetPackageForSymbol(const ResourceName& name) = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700168 virtual std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) = 0;
Adam Lesinski76565542016-03-10 21:55:04 -0800169
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700170 // Default implementation tries the name if it exists, else the ID.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700171 virtual std::unique_ptr<SymbolTable::Symbol> FindByReference(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700172 const Reference& ref) {
173 if (ref.name) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700174 return FindByName(ref.name.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700175 } else if (ref.id) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700176 return FindById(ref.id.value());
Adam Lesinski76565542016-03-10 21:55:04 -0800177 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700178 return {};
179 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800180};
181
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700182// Exposes the resources in a ResourceTable as symbols for SymbolTable.
183// Instances of this class must outlive the encompassed ResourceTable.
184// Lookups by ID are ignored.
Adam Lesinski64587af2016-02-18 18:33:06 -0800185class ResourceTableSymbolSource : public ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700186 public:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700187 explicit ResourceTableSymbolSource(ResourceTable* table) : table_(table) {}
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700188
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700189 std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700190 const ResourceName& name) override;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700191
Chris Warrington481f0272018-02-06 14:03:39 +0000192 std::string GetPackageForSymbol(const ResourceName& name) override;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700193 std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) override {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700194 return {};
195 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800196
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700197 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700198 ResourceTable* table_;
Adam Lesinski64587af2016-02-18 18:33:06 -0800199
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700200 DISALLOW_COPY_AND_ASSIGN(ResourceTableSymbolSource);
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700201};
202
Adam Lesinski64587af2016-02-18 18:33:06 -0800203class AssetManagerSymbolSource : public ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700204 public:
205 AssetManagerSymbolSource() = default;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700206
Adam Lesinskid5083f62017-01-16 15:07:21 -0800207 bool AddAssetPath(const android::StringPiece& path);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800208 std::map<size_t, std::string> GetAssignedPackageIds() const;
Todd Kennedy32512992018-04-25 16:45:59 -0700209 bool IsPackageDynamic(uint32_t packageId) const;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700210
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700211 std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700212 const ResourceName& name) override;
Chris Warrington481f0272018-02-06 14:03:39 +0000213 std::string GetPackageForSymbol(const ResourceName& name) override {
214 return {};
215 }
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700216 std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) override;
217 std::unique_ptr<SymbolTable::Symbol> FindByReference(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700218 const Reference& ref) override;
Adam Lesinski64587af2016-02-18 18:33:06 -0800219
Adam Lesinskic6284372017-12-04 13:46:23 -0800220 android::AssetManager* GetAssetManager() {
221 return &assets_;
222 }
223
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700224 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700225 android::AssetManager assets_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700226
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700227 DISALLOW_COPY_AND_ASSIGN(AssetManagerSymbolSource);
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700228};
229
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700230} // namespace aapt
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700231
232#endif /* AAPT_PROCESS_SYMBOLTABLE_H */