Aapt with -D option was not keeping the application and instrumentation subclasses, which were instead handled by mainDexClasses.rules. Instead, include them in the aapt -D output. Change-Id: Ia3b89fc2edd45d379c4d06f0bf674716646fcb3d
269 lines
9.2 KiB
C++
269 lines
9.2 KiB
C++
/*
|
|
* 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 "java/ProguardRules.h"
|
|
#include "util/Util.h"
|
|
#include "xml/XmlDom.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace aapt {
|
|
namespace proguard {
|
|
|
|
class BaseVisitor : public xml::Visitor {
|
|
public:
|
|
BaseVisitor(const Source& source, KeepSet* keepSet) : mSource(source), mKeepSet(keepSet) {
|
|
}
|
|
|
|
virtual void visit(xml::Text*) override {};
|
|
|
|
virtual void visit(xml::Namespace* node) override {
|
|
for (const auto& child : node->children) {
|
|
child->accept(this);
|
|
}
|
|
}
|
|
|
|
virtual void visit(xml::Element* node) override {
|
|
if (!node->namespaceUri.empty()) {
|
|
Maybe<xml::ExtractedPackage> maybePackage = xml::extractPackageFromNamespace(
|
|
node->namespaceUri);
|
|
if (maybePackage) {
|
|
// This is a custom view, let's figure out the class name from this.
|
|
std::string package = maybePackage.value().package + "." + node->name;
|
|
if (util::isJavaClassName(package)) {
|
|
addClass(node->lineNumber, package);
|
|
}
|
|
}
|
|
} else if (util::isJavaClassName(node->name)) {
|
|
addClass(node->lineNumber, node->name);
|
|
}
|
|
|
|
for (const auto& child: node->children) {
|
|
child->accept(this);
|
|
}
|
|
}
|
|
|
|
protected:
|
|
void addClass(size_t lineNumber, const std::string& className) {
|
|
mKeepSet->addClass(Source(mSource.path, lineNumber), className);
|
|
}
|
|
|
|
void addMethod(size_t lineNumber, const std::string& methodName) {
|
|
mKeepSet->addMethod(Source(mSource.path, lineNumber), methodName);
|
|
}
|
|
|
|
private:
|
|
Source mSource;
|
|
KeepSet* mKeepSet;
|
|
};
|
|
|
|
struct LayoutVisitor : public BaseVisitor {
|
|
LayoutVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) {
|
|
}
|
|
|
|
virtual void visit(xml::Element* node) override {
|
|
bool checkClass = false;
|
|
bool checkName = false;
|
|
if (node->namespaceUri.empty()) {
|
|
checkClass = node->name == "view" || node->name == "fragment";
|
|
} else if (node->namespaceUri == xml::kSchemaAndroid) {
|
|
checkName = node->name == "fragment";
|
|
}
|
|
|
|
for (const auto& attr : node->attributes) {
|
|
if (checkClass && attr.namespaceUri.empty() && attr.name == "class" &&
|
|
util::isJavaClassName(attr.value)) {
|
|
addClass(node->lineNumber, attr.value);
|
|
} else if (checkName && attr.namespaceUri == xml::kSchemaAndroid &&
|
|
attr.name == "name" && util::isJavaClassName(attr.value)) {
|
|
addClass(node->lineNumber, attr.value);
|
|
} else if (attr.namespaceUri == xml::kSchemaAndroid && attr.name == "onClick") {
|
|
addMethod(node->lineNumber, attr.value);
|
|
}
|
|
}
|
|
|
|
BaseVisitor::visit(node);
|
|
}
|
|
};
|
|
|
|
struct XmlResourceVisitor : public BaseVisitor {
|
|
XmlResourceVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) {
|
|
}
|
|
|
|
virtual void visit(xml::Element* node) override {
|
|
bool checkFragment = false;
|
|
if (node->namespaceUri.empty()) {
|
|
checkFragment = node->name == "PreferenceScreen" || node->name == "header";
|
|
}
|
|
|
|
if (checkFragment) {
|
|
xml::Attribute* attr = node->findAttribute(xml::kSchemaAndroid, "fragment");
|
|
if (attr && util::isJavaClassName(attr->value)) {
|
|
addClass(node->lineNumber, attr->value);
|
|
}
|
|
}
|
|
|
|
BaseVisitor::visit(node);
|
|
}
|
|
};
|
|
|
|
struct TransitionVisitor : public BaseVisitor {
|
|
TransitionVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) {
|
|
}
|
|
|
|
virtual void visit(xml::Element* node) override {
|
|
bool checkClass = node->namespaceUri.empty() &&
|
|
(node->name == "transition" || node->name == "pathMotion");
|
|
if (checkClass) {
|
|
xml::Attribute* attr = node->findAttribute({}, "class");
|
|
if (attr && util::isJavaClassName(attr->value)) {
|
|
addClass(node->lineNumber, attr->value);
|
|
}
|
|
}
|
|
|
|
BaseVisitor::visit(node);
|
|
}
|
|
};
|
|
|
|
struct ManifestVisitor : public BaseVisitor {
|
|
ManifestVisitor(const Source& source, KeepSet* keepSet, bool mainDexOnly)
|
|
: BaseVisitor(source, keepSet), mMainDexOnly(mainDexOnly) {
|
|
}
|
|
|
|
virtual void visit(xml::Element* node) override {
|
|
if (node->namespaceUri.empty()) {
|
|
bool getName = false;
|
|
if (node->name == "manifest") {
|
|
xml::Attribute* attr = node->findAttribute({}, "package");
|
|
if (attr) {
|
|
mPackage = attr->value;
|
|
}
|
|
} else if (node->name == "application") {
|
|
getName = true;
|
|
xml::Attribute* attr = node->findAttribute(xml::kSchemaAndroid, "backupAgent");
|
|
if (attr) {
|
|
Maybe<std::string> result = util::getFullyQualifiedClassName(mPackage,
|
|
attr->value);
|
|
if (result) {
|
|
addClass(node->lineNumber, result.value());
|
|
}
|
|
}
|
|
if (mMainDexOnly) {
|
|
xml::Attribute* defaultProcess = node->findAttribute(xml::kSchemaAndroid,
|
|
"process");
|
|
if (defaultProcess) {
|
|
mDefaultProcess = defaultProcess->value;
|
|
}
|
|
}
|
|
} else if (node->name == "activity" || node->name == "service" ||
|
|
node->name == "receiver" || node->name == "provider") {
|
|
getName = true;
|
|
|
|
if (mMainDexOnly) {
|
|
xml::Attribute* componentProcess = node->findAttribute(xml::kSchemaAndroid,
|
|
"process");
|
|
|
|
const std::string& process = componentProcess ? componentProcess->value
|
|
: mDefaultProcess;
|
|
getName = !process.empty() && process[0] != ':';
|
|
}
|
|
} else if (node-> name == "instrumentation") {
|
|
getName = true;
|
|
}
|
|
|
|
if (getName) {
|
|
xml::Attribute* attr = node->findAttribute(xml::kSchemaAndroid, "name");
|
|
getName = attr != nullptr;
|
|
|
|
if (getName) {
|
|
Maybe<std::string> result = util::getFullyQualifiedClassName(mPackage,
|
|
attr->value);
|
|
if (result) {
|
|
addClass(node->lineNumber, result.value());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
BaseVisitor::visit(node);
|
|
}
|
|
|
|
private:
|
|
std::string mPackage;
|
|
const bool mMainDexOnly;
|
|
std::string mDefaultProcess;
|
|
};
|
|
|
|
bool collectProguardRulesForManifest(const Source& source, xml::XmlResource* res,
|
|
KeepSet* keepSet, bool mainDexOnly) {
|
|
ManifestVisitor visitor(source, keepSet, mainDexOnly);
|
|
if (res->root) {
|
|
res->root->accept(&visitor);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool collectProguardRules(const Source& source, xml::XmlResource* res, KeepSet* keepSet) {
|
|
if (!res->root) {
|
|
return false;
|
|
}
|
|
|
|
switch (res->file.name.type) {
|
|
case ResourceType::kLayout: {
|
|
LayoutVisitor visitor(source, keepSet);
|
|
res->root->accept(&visitor);
|
|
break;
|
|
}
|
|
|
|
case ResourceType::kXml: {
|
|
XmlResourceVisitor visitor(source, keepSet);
|
|
res->root->accept(&visitor);
|
|
break;
|
|
}
|
|
|
|
case ResourceType::kTransition: {
|
|
TransitionVisitor visitor(source, keepSet);
|
|
res->root->accept(&visitor);
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool writeKeepSet(std::ostream* out, const KeepSet& keepSet) {
|
|
for (const auto& entry : keepSet.mKeepSet) {
|
|
for (const Source& source : entry.second) {
|
|
*out << "# Referenced at " << source << "\n";
|
|
}
|
|
*out << "-keep class " << entry.first << " { <init>(...); }\n" << std::endl;
|
|
}
|
|
|
|
for (const auto& entry : keepSet.mKeepMethodSet) {
|
|
for (const Source& source : entry.second) {
|
|
*out << "# Referenced at " << source << "\n";
|
|
}
|
|
*out << "-keepclassmembers class * { *** " << entry.first << "(...); }\n" << std::endl;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace proguard
|
|
} // namespace aapt
|