1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "Maybe.h"
#include "NameMangler.h"
#include "Resource.h"
#include "ResourceTable.h"
#include "ResourceTableResolver.h"
#include "ResourceValues.h"
#include "Util.h"
#include <androidfw/AssetManager.h>
#include <androidfw/ResourceTypes.h>
#include <memory>
#include <vector>
namespace aapt {
ResourceTableResolver::ResourceTableResolver(
std::shared_ptr<const ResourceTable> table,
const std::vector<std::shared_ptr<const android::AssetManager>>& sources) :
mTable(table), mSources(sources) {
for (const auto& assetManager : mSources) {
const android::ResTable& resTable = assetManager->getResources(false);
const size_t packageCount = resTable.getBasePackageCount();
for (size_t i = 0; i < packageCount; i++) {
std::u16string packageName = resTable.getBasePackageName(i).string();
mIncludedPackages.insert(std::move(packageName));
}
}
}
Maybe<ResourceId> ResourceTableResolver::findId(const ResourceName& name) {
Maybe<Entry> result = findAttribute(name);
if (result) {
return result.value().id;
}
return {};
}
Maybe<IResolver::Entry> ResourceTableResolver::findAttribute(const ResourceName& name) {
auto cacheIter = mCache.find(name);
if (cacheIter != std::end(mCache)) {
return Entry{ cacheIter->second.id, cacheIter->second.attr.get() };
}
ResourceName mangledName;
const ResourceName* nameToSearch = &name;
if (name.package != mTable->getPackage()) {
// This may be a reference to an included resource or
// to a mangled resource.
if (mIncludedPackages.find(name.package) == mIncludedPackages.end()) {
// This is not in our included set, so mangle the name and
// check for that.
mangledName.entry = name.entry;
NameMangler::mangle(name.package, &mangledName.entry);
mangledName.package = mTable->getPackage();
mangledName.type = name.type;
nameToSearch = &mangledName;
} else {
const CacheEntry* cacheEntry = buildCacheEntry(name);
if (cacheEntry) {
return Entry{ cacheEntry->id, cacheEntry->attr.get() };
}
return {};
}
}
const ResourceTableType* type;
const ResourceEntry* entry;
std::tie(type, entry) = mTable->findResource(*nameToSearch);
if (type && entry) {
Entry result = {};
if (mTable->getPackageId() != ResourceTable::kUnsetPackageId &&
type->typeId != ResourceTableType::kUnsetTypeId &&
entry->entryId != ResourceEntry::kUnsetEntryId) {
result.id = ResourceId(mTable->getPackageId(), type->typeId, entry->entryId);
}
if (!entry->values.empty()) {
visitFunc<Attribute>(*entry->values.front().value, [&result](Attribute& attr) {
result.attr = &attr;
});
}
return result;
}
return {};
}
Maybe<ResourceName> ResourceTableResolver::findName(ResourceId resId) {
for (const auto& assetManager : mSources) {
const android::ResTable& table = assetManager->getResources(false);
android::ResTable::resource_name resourceName;
if (!table.getResourceName(resId.id, false, &resourceName)) {
continue;
}
const ResourceType* type = parseResourceType(StringPiece16(resourceName.type,
resourceName.typeLen));
assert(type);
return ResourceName{
{ resourceName.package, resourceName.packageLen },
*type,
{ resourceName.name, resourceName.nameLen } };
}
return {};
}
/**
* This is called when we need to lookup a resource name in the AssetManager.
* Since the values in the AssetManager are not parsed like in a ResourceTable,
* we must create Attribute objects here if we find them.
*/
const ResourceTableResolver::CacheEntry* ResourceTableResolver::buildCacheEntry(
const ResourceName& name) {
for (const auto& assetManager : mSources) {
const android::ResTable& table = assetManager->getResources(false);
const StringPiece16 type16 = toString(name.type);
ResourceId resId {
table.identifierForName(
name.entry.data(), name.entry.size(),
type16.data(), type16.size(),
name.package.data(), name.package.size())
};
if (!resId.isValid()) {
continue;
}
CacheEntry& entry = mCache[name];
entry.id = resId;
//
// Now check to see if this resource is an Attribute.
//
const android::ResTable::bag_entry* bagBegin;
ssize_t bags = table.lockBag(resId.id, &bagBegin);
if (bags < 1) {
table.unlockBag(bagBegin);
return &entry;
}
// Look for the ATTR_TYPE key in the bag and check the types it supports.
uint32_t attrTypeMask = 0;
for (ssize_t i = 0; i < bags; i++) {
if (bagBegin[i].map.name.ident == android::ResTable_map::ATTR_TYPE) {
attrTypeMask = bagBegin[i].map.value.data;
}
}
entry.attr = util::make_unique<Attribute>(false);
if (attrTypeMask & android::ResTable_map::TYPE_ENUM ||
attrTypeMask & android::ResTable_map::TYPE_FLAGS) {
for (ssize_t i = 0; i < bags; i++) {
if (Res_INTERNALID(bagBegin[i].map.name.ident)) {
// Internal IDs are special keys, which are not enum/flag symbols, so skip.
continue;
}
android::ResTable::resource_name symbolName;
bool result = table.getResourceName(bagBegin[i].map.name.ident, false,
&symbolName);
assert(result);
const ResourceType* type = parseResourceType(
StringPiece16(symbolName.type, symbolName.typeLen));
assert(type);
entry.attr->symbols.push_back(Attribute::Symbol{
Reference(ResourceNameRef(
StringPiece16(symbolName.package, symbolName.packageLen),
*type,
StringPiece16(symbolName.name, symbolName.nameLen))),
bagBegin[i].map.value.data
});
}
}
entry.attr->typeMask |= attrTypeMask;
table.unlockBag(bagBegin);
return &entry;
}
return nullptr;
}
} // namespace aapt
|