blob: bd252d245dc85bb76e3461441d5375be50d26dfb [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 {
56 Symbol() : Symbol(Maybe<ResourceId>{}) {}
Adam Lesinski626b3db2016-04-07 13:24:59 -070057
Adam Lesinskicacb28f2016-10-19 12:18:14 -070058 explicit Symbol(const Maybe<ResourceId>& i) : Symbol(i, nullptr) {}
Adam Lesinski626b3db2016-04-07 13:24:59 -070059
Adam Lesinskicacb28f2016-10-19 12:18:14 -070060 Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr)
61 : Symbol(i, attr, false) {}
Adam Lesinski626b3db2016-04-07 13:24:59 -070062
Adam Lesinskicacb28f2016-10-19 12:18:14 -070063 Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr,
64 bool pub)
Adam Lesinskice5e56e2016-10-21 17:56:45 -070065 : id(i), attribute(attr), is_public(pub) {}
Adam Lesinski626b3db2016-04-07 13:24:59 -070066
Adam Lesinskicacb28f2016-10-19 12:18:14 -070067 Symbol(const Symbol&) = default;
68 Symbol(Symbol&&) = default;
69 Symbol& operator=(const Symbol&) = default;
70 Symbol& operator=(Symbol&&) = default;
Adam Lesinski626b3db2016-04-07 13:24:59 -070071
Adam Lesinskicacb28f2016-10-19 12:18:14 -070072 Maybe<ResourceId> id;
73 std::shared_ptr<Attribute> attribute;
Adam Lesinskice5e56e2016-10-21 17:56:45 -070074 bool is_public = false;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070075 };
Adam Lesinski64587af2016-02-18 18:33:06 -080076
Adam Lesinski1e4b0e52017-04-27 15:01:10 -070077 SymbolTable(NameMangler* mangler);
78
79 // Overrides the default ISymbolTableDelegate, which allows a custom defined strategy for
80 // looking up resources from a set of sources.
81 void SetDelegate(std::unique_ptr<ISymbolTableDelegate> delegate);
Adam Lesinski64587af2016-02-18 18:33:06 -080082
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080083 // Appends a symbol source. The cache is not cleared since entries that
84 // have already been found would take precedence due to ordering.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070085 void AppendSource(std::unique_ptr<ISymbolSource> source);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080086
87 // Prepends a symbol source so that its symbols take precedence. This will
88 // cause the existing cache to be cleared.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070089 void PrependSource(std::unique_ptr<ISymbolSource> source);
Adam Lesinski64587af2016-02-18 18:33:06 -080090
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080091 // 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* FindByName(const ResourceName& name);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080094
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.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070097 const Symbol* FindById(const ResourceId& id);
Adam Lesinski64587af2016-02-18 18:33:06 -080098
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -080099 // Let's the ISymbolSource decide whether looking up by name or ID is faster,
100 // if both are available.
101 // NOTE: Never hold on to the result between calls to FindByXXX. The
102 // results are stored in a cache which may evict entries on subsequent calls.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700103 const Symbol* FindByReference(const Reference& ref);
Adam Lesinski76565542016-03-10 21:55:04 -0800104
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700105 private:
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800106 NameMangler* mangler_;
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700107 std::unique_ptr<ISymbolTableDelegate> delegate_;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700108 std::vector<std::unique_ptr<ISymbolSource>> sources_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700109
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700110 // We use shared_ptr because unique_ptr is not supported and
111 // we need automatic deletion.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700112 android::LruCache<ResourceName, std::shared_ptr<Symbol>> cache_;
113 android::LruCache<ResourceId, std::shared_ptr<Symbol>> id_cache_;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700114
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700115 DISALLOW_COPY_AND_ASSIGN(SymbolTable);
Adam Lesinski64587af2016-02-18 18:33:06 -0800116};
117
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700118// Allows the customization of the lookup strategy/order of a symbol from a set of
119// symbol sources.
120class ISymbolTableDelegate {
121 public:
122 ISymbolTableDelegate() = default;
123 virtual ~ISymbolTableDelegate() = default;
124
125 // The name is already mangled and does not need further processing.
126 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
127 const ResourceName& name, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
128
129 virtual std::unique_ptr<SymbolTable::Symbol> FindById(
130 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
131
132 private:
133 DISALLOW_COPY_AND_ASSIGN(ISymbolTableDelegate);
134};
135
136class DefaultSymbolTableDelegate : public ISymbolTableDelegate {
137 public:
138 DefaultSymbolTableDelegate() = default;
139 virtual ~DefaultSymbolTableDelegate() = default;
140
141 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
142 const ResourceName& name,
143 const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
144 virtual std::unique_ptr<SymbolTable::Symbol> FindById(
145 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
146
147 private:
148 DISALLOW_COPY_AND_ASSIGN(DefaultSymbolTableDelegate);
149};
150
151// An interface that a symbol source implements in order to surface symbol information
152// to the symbol table.
Adam Lesinski64587af2016-02-18 18:33:06 -0800153class ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700154 public:
155 virtual ~ISymbolSource() = default;
Adam Lesinski64587af2016-02-18 18:33:06 -0800156
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700157 virtual std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700158 const ResourceName& name) = 0;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700159 virtual std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) = 0;
Adam Lesinski76565542016-03-10 21:55:04 -0800160
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700161 // Default implementation tries the name if it exists, else the ID.
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700162 virtual std::unique_ptr<SymbolTable::Symbol> FindByReference(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700163 const Reference& ref) {
164 if (ref.name) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700165 return FindByName(ref.name.value());
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700166 } else if (ref.id) {
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700167 return FindById(ref.id.value());
Adam Lesinski76565542016-03-10 21:55:04 -0800168 }
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700169 return {};
170 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800171};
172
Adam Lesinski1e4b0e52017-04-27 15:01:10 -0700173// Exposes the resources in a ResourceTable as symbols for SymbolTable.
174// Instances of this class must outlive the encompassed ResourceTable.
175// Lookups by ID are ignored.
Adam Lesinski64587af2016-02-18 18:33:06 -0800176class ResourceTableSymbolSource : public ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700177 public:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700178 explicit ResourceTableSymbolSource(ResourceTable* table) : table_(table) {}
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700179
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700180 std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700181 const ResourceName& name) override;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700182
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700183 std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) override {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700184 return {};
185 }
Adam Lesinski64587af2016-02-18 18:33:06 -0800186
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700187 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700188 ResourceTable* table_;
Adam Lesinski64587af2016-02-18 18:33:06 -0800189
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700190 DISALLOW_COPY_AND_ASSIGN(ResourceTableSymbolSource);
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700191};
192
Adam Lesinski64587af2016-02-18 18:33:06 -0800193class AssetManagerSymbolSource : public ISymbolSource {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700194 public:
195 AssetManagerSymbolSource() = default;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700196
Adam Lesinskid5083f62017-01-16 15:07:21 -0800197 bool AddAssetPath(const android::StringPiece& path);
Adam Lesinskiceb9b2f2017-02-16 12:05:42 -0800198 std::map<size_t, std::string> GetAssignedPackageIds() const;
Adam Lesinski1ab598f2015-08-14 14:26:04 -0700199
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700200 std::unique_ptr<SymbolTable::Symbol> FindByName(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700201 const ResourceName& name) override;
Adam Lesinskice5e56e2016-10-21 17:56:45 -0700202 std::unique_ptr<SymbolTable::Symbol> FindById(ResourceId id) override;
203 std::unique_ptr<SymbolTable::Symbol> FindByReference(
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700204 const Reference& ref) override;
Adam Lesinski64587af2016-02-18 18:33:06 -0800205
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 */