blob: b676efb8d0251b5e38c6e4f4b8ccbd3c2c61f2dc [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;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070071 };
Adam Lesinski64587af2016-02-18 18:33:06 -080072
Adam Lesinski1e4b0e52017-04-27 15:01:10 -070073 SymbolTable(NameMangler* mangler);
74
75 // Overrides the default ISymbolTableDelegate, which allows a custom defined strategy for
76 // looking up resources from a set of sources.
77 void SetDelegate(std::unique_ptr<ISymbolTableDelegate> delegate);
Adam Lesinski64587af2016-02-18 18:33:06 -080078
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080079 // Appends a symbol source. The cache is not cleared since entries that
80 // have already been found would take precedence due to ordering.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070081 void AppendSource(std::unique_ptr<ISymbolSource> source);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080082
83 // Prepends a symbol source so that its symbols take precedence. This will
84 // cause the existing cache to be cleared.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070085 void PrependSource(std::unique_ptr<ISymbolSource> source);
Adam Lesinski64587af2016-02-18 18:33:06 -080086
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080087 // NOTE: Never hold on to the result between calls to FindByXXX. The
88 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070089 const Symbol* FindByName(const ResourceName& name);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080090
91 // NOTE: Never hold on to the result between calls to FindByXXX. The
92 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070093 const Symbol* FindById(const ResourceId& id);
Adam Lesinski64587af2016-02-18 18:33:06 -080094
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080095 // Let's the ISymbolSource decide whether looking up by name or ID is faster,
96 // if both are available.
97 // NOTE: Never hold on to the result between calls to FindByXXX. The
98 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070099 const Symbol* FindByReference(const Reference& ref);
Adam Lesinski76565542016-03-10 21:55:04 -0800100
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700101 private:
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800102 NameMangler* mangler_;
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700103 std::unique_ptr<ISymbolTableDelegate> delegate_;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700104 std::vector<std::unique_ptr<ISymbolSource>> sources_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700105
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700106 // We use shared_ptr because unique_ptr is not supported and
107 // we need automatic deletion.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700108 android::LruCache<ResourceName, std::shared_ptr<Symbol>> cache_;
109 android::LruCache<ResourceId, std::shared_ptr<Symbol>> id_cache_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700110
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700111 DISALLOW_COPY_AND_ASSIGN(SymbolTable);
Adam Lesinski64587af2016-02-18 18:33:06 -0800112};
113
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700114// Allows the customization of the lookup strategy/order of a symbol from a set of
115// symbol sources.
116class ISymbolTableDelegate {
117 public:
118 ISymbolTableDelegate() = default;
119 virtual ~ISymbolTableDelegate() = default;
120
121 // The name is already mangled and does not need further processing.
122 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
123 const ResourceName& name, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
124
125 virtual std::unique_ptr<SymbolTable::Symbol> FindById(
126 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
127
128 private:
129 DISALLOW_COPY_AND_ASSIGN(ISymbolTableDelegate);
130};
131
132class DefaultSymbolTableDelegate : public ISymbolTableDelegate {
133 public:
134 DefaultSymbolTableDelegate() = default;
135 virtual ~DefaultSymbolTableDelegate() = default;
136
137 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
138 const ResourceName& name,
139 const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
140 virtual std::unique_ptr<SymbolTable::Symbol> FindById(
141 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
142
143 private:
144 DISALLOW_COPY_AND_ASSIGN(DefaultSymbolTableDelegate);
145};
146
147// An interface that a symbol source implements in order to surface symbol information
148// to the symbol table.
Adam Lesinski64587af2016-02-18 18:33:06 -0800149class ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700150 public:
151 virtual ~ISymbolSource() = default;
Adam Lesinski64587af2016-02-18 18:33:06 -0800152
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700153 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700154 const ResourceName& name) = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700155 virtual std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) = 0;
Adam Lesinski76565542016-03-10 21:55:04 -0800156
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700157 // Default implementation tries the name if it exists, else the ID.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700158 virtual std::unique_ptr<SymbolTable::Symbol> FindByReference(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700159 const Reference& ref) {
160 if (ref.name) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700161 return FindByName(ref.name.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700162 } else if (ref.id) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700163 return FindById(ref.id.value());
Adam Lesinski76565542016-03-10 21:55:04 -0800164 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700165 return {};
166 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800167};
168
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700169// Exposes the resources in a ResourceTable as symbols for SymbolTable.
170// Instances of this class must outlive the encompassed ResourceTable.
171// Lookups by ID are ignored.
Adam Lesinski64587af2016-02-18 18:33:06 -0800172class ResourceTableSymbolSource : public ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700173 public:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700174 explicit ResourceTableSymbolSource(ResourceTable* table) : table_(table) {}
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700175
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700176 std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700177 const ResourceName& name) override;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700178
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700179 std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) override {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700180 return {};
181 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800182
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700183 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700184 ResourceTable* table_;
Adam Lesinski64587af2016-02-18 18:33:06 -0800185
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700186 DISALLOW_COPY_AND_ASSIGN(ResourceTableSymbolSource);
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700187};
188
Adam Lesinski64587af2016-02-18 18:33:06 -0800189class AssetManagerSymbolSource : public ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700190 public:
191 AssetManagerSymbolSource() = default;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700192
Adam Lesinskid5083f62017-01-16 15:07:21 -0800193 bool AddAssetPath(const android::StringPiece& path);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800194 std::map<size_t, std::string> GetAssignedPackageIds() const;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700195
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700196 std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700197 const ResourceName& name) override;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700198 std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) override;
199 std::unique_ptr<SymbolTable::Symbol> FindByReference(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700200 const Reference& ref) override;
Adam Lesinski64587af2016-02-18 18:33:06 -0800201
Adam Lesinskic6284372017-12-04 13:46:23 -0800202 android::AssetManager* GetAssetManager() {
203 return &assets_;
204 }
205
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700206 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700207 android::AssetManager assets_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700208
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700209 DISALLOW_COPY_AND_ASSIGN(AssetManagerSymbolSource);
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700210};
211
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700212} // namespace aapt
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700213
214#endif /* AAPT_PROCESS_SYMBOLTABLE_H */