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
|
/*
* 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 "Debug.h"
#include "ResourceTable.h"
#include "ResourceValues.h"
#include "Util.h"
#include <algorithm>
#include <iostream>
#include <map>
#include <memory>
#include <queue>
#include <set>
#include <vector>
namespace aapt {
struct PrintVisitor : ConstValueVisitor {
void visit(const Attribute& attr, ValueVisitorArgs&) override {
std::cout << "(attr) type=";
attr.printMask(std::cout);
static constexpr uint32_t kMask = android::ResTable_map::TYPE_ENUM |
android::ResTable_map::TYPE_FLAGS;
if (attr.typeMask & kMask) {
for (const auto& symbol : attr.symbols) {
std::cout << "\n "
<< symbol.symbol.name.entry << " (" << symbol.symbol.id << ") = "
<< symbol.value;
}
}
}
void visit(const Style& style, ValueVisitorArgs&) override {
std::cout << "(style)";
if (style.parent.name.isValid() || style.parent.id.isValid()) {
std::cout << " parent=";
if (style.parent.name.isValid()) {
std::cout << style.parent.name << " ";
}
if (style.parent.id.isValid()) {
std::cout << style.parent.id;
}
}
for (const auto& entry : style.entries) {
std::cout << "\n ";
if (entry.key.name.isValid()) {
std::cout << entry.key.name.package << ":" << entry.key.name.entry;
}
if (entry.key.id.isValid()) {
std::cout << "(" << entry.key.id << ")";
}
std::cout << "=" << *entry.value;
}
}
void visit(const Array& array, ValueVisitorArgs&) override {
array.print(std::cout);
}
void visit(const Plural& plural, ValueVisitorArgs&) override {
plural.print(std::cout);
}
void visit(const Styleable& styleable, ValueVisitorArgs&) override {
styleable.print(std::cout);
}
void visitItem(const Item& item, ValueVisitorArgs& args) override {
item.print(std::cout);
}
};
void Debug::printTable(const std::shared_ptr<ResourceTable>& table) {
std::cout << "Package name=" << table->getPackage();
if (table->getPackageId() != ResourceTable::kUnsetPackageId) {
std::cout << " id=" << std::hex << table->getPackageId() << std::dec;
}
std::cout << std::endl;
for (const auto& type : *table) {
std::cout << " type " << type->type;
if (type->typeId != ResourceTableType::kUnsetTypeId) {
std::cout << " id=" << std::hex << type->typeId << std::dec;
}
std::cout << " entryCount=" << type->entries.size() << std::endl;
std::vector<const ResourceEntry*> sortedEntries;
for (const auto& entry : type->entries) {
auto iter = std::lower_bound(sortedEntries.begin(), sortedEntries.end(), entry.get(),
[](const ResourceEntry* a, const ResourceEntry* b) -> bool {
return a->entryId < b->entryId;
});
sortedEntries.insert(iter, entry.get());
}
for (const ResourceEntry* entry : sortedEntries) {
ResourceId id = { table->getPackageId(), type->typeId, entry->entryId };
ResourceName name = { table->getPackage(), type->type, entry->name };
std::cout << " spec resource " << id << " " << name;
if (entry->publicStatus.isPublic) {
std::cout << " PUBLIC";
}
std::cout << std::endl;
PrintVisitor visitor;
for (const auto& value : entry->values) {
std::cout << " (" << value.config << ") ";
value.value->accept(visitor, {});
std::cout << std::endl;
}
}
}
}
static size_t getNodeIndex(const std::vector<ResourceName>& names, const ResourceName& name) {
auto iter = std::lower_bound(names.begin(), names.end(), name);
assert(iter != names.end() && *iter == name);
return std::distance(names.begin(), iter);
}
void Debug::printStyleGraph(const std::shared_ptr<ResourceTable>& table,
const ResourceName& targetStyle) {
std::map<ResourceName, std::set<ResourceName>> graph;
std::queue<ResourceName> stylesToVisit;
stylesToVisit.push(targetStyle);
for (; !stylesToVisit.empty(); stylesToVisit.pop()) {
const ResourceName& styleName = stylesToVisit.front();
std::set<ResourceName>& parents = graph[styleName];
if (!parents.empty()) {
// We've already visited this style.
continue;
}
const ResourceTableType* type;
const ResourceEntry* entry;
std::tie(type, entry) = table->findResource(styleName);
if (entry) {
for (const auto& value : entry->values) {
visitFunc<Style>(*value.value, [&](const Style& style) {
if (style.parent.name.isValid()) {
parents.insert(style.parent.name);
stylesToVisit.push(style.parent.name);
}
});
}
}
}
std::vector<ResourceName> names;
for (const auto& entry : graph) {
names.push_back(entry.first);
}
std::cout << "digraph styles {\n";
for (const auto& name : names) {
std::cout << " node_" << getNodeIndex(names, name)
<< " [label=\"" << name << "\"];\n";
}
for (const auto& entry : graph) {
const ResourceName& styleName = entry.first;
size_t styleNodeIndex = getNodeIndex(names, styleName);
for (const auto& parentName : entry.second) {
std::cout << " node_" << styleNodeIndex << " -> "
<< "node_" << getNodeIndex(names, parentName) << ";\n";
}
}
std::cout << "}" << std::endl;
}
} // namespace aapt
|