summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/WindowsManifestMerger.cpp
diff options
context:
space:
mode:
authorEric Beckmann <ecbeckmann@google.com>2017-07-25 23:06:46 +0000
committerEric Beckmann <ecbeckmann@google.com>2017-07-25 23:06:46 +0000
commit455210e18fe7217dbb94fd6abfd62f61b16e59a6 (patch)
tree812a00235fdc56e68917039017c07a166a77e1eb /llvm/lib/Support/WindowsManifestMerger.cpp
parent8dc8394d5f7583a0dcf6cb943145ecf3c6ed9d11 (diff)
downloadbcm5719-llvm-455210e18fe7217dbb94fd6abfd62f61b16e59a6.tar.gz
bcm5719-llvm-455210e18fe7217dbb94fd6abfd62f61b16e59a6.zip
Revert "llvm-mt: implement simple merging of manifests, not factoring namespaces."
This reverts commit 813308e240792ca70ed2f998f21df24a5061ada0. llvm-svn: 309050
Diffstat (limited to 'llvm/lib/Support/WindowsManifestMerger.cpp')
-rw-r--r--llvm/lib/Support/WindowsManifestMerger.cpp150
1 files changed, 6 insertions, 144 deletions
diff --git a/llvm/lib/Support/WindowsManifestMerger.cpp b/llvm/lib/Support/WindowsManifestMerger.cpp
index b003fdd7dd5..60cddd10596 100644
--- a/llvm/lib/Support/WindowsManifestMerger.cpp
+++ b/llvm/lib/Support/WindowsManifestMerger.cpp
@@ -16,11 +16,6 @@
#include <stdarg.h>
-#define TO_XML_CHAR(X) reinterpret_cast<const unsigned char *>(X)
-#define FROM_XML_CHAR(X) reinterpret_cast<const char *>(X)
-
-using namespace llvm;
-
namespace llvm {
char WindowsManifestError::ID = 0;
@@ -29,148 +24,16 @@ WindowsManifestError::WindowsManifestError(const Twine &Msg) : Msg(Msg.str()) {}
void WindowsManifestError::log(raw_ostream &OS) const { OS << Msg; }
-static bool xmlStringsEqual(const unsigned char *A, const unsigned char *B) {
- return strcmp(FROM_XML_CHAR(A), FROM_XML_CHAR(B)) == 0;
-}
-
-bool isMergeableElement(const unsigned char *ElementName) {
- for (StringRef S : {"application", "assembly", "assemblyIdentity",
- "compatibility", "noInherit", "requestedExecutionLevel",
- "requestedPrivileges", "security", "trustInfo"}) {
- if (S == FROM_XML_CHAR(ElementName))
- return true;
- }
- return false;
-}
-
-XMLNodeImpl getChildWithName(XMLNodeImpl Parent,
- const unsigned char *ElementName) {
-#if LLVM_LIBXML2_ENABLED
- for (XMLNodeImpl Child = Parent->children; Child; Child = Child->next)
- if (xmlStringsEqual(Child->name, ElementName)) {
- return Child;
- }
-#endif
- return nullptr;
-}
-
-const unsigned char *getAttribute(XMLNodeImpl Node,
- const unsigned char *AttributeName) {
-#if LLVM_LIBXML2_ENABLED
- for (xmlAttrPtr Attribute = Node->properties; Attribute != nullptr;
- Attribute = Attribute->next) {
- if (xmlStringsEqual(Attribute->name, AttributeName))
- return Attribute->children->content;
- }
-#endif
- return nullptr;
-}
-
-Error mergeAttributes(XMLNodeImpl OriginalNode, XMLNodeImpl AdditionalNode) {
-#if LLVM_LIBXML2_ENABLED
- for (xmlAttrPtr Attribute = AdditionalNode->properties; Attribute != nullptr;
- Attribute = Attribute->next) {
- if (const unsigned char *OriginalValue =
- getAttribute(OriginalNode, Attribute->name)) {
- // Attributes of the same name must also have the same value. Otherwise
- // an error is thrown.
- if (!xmlStringsEqual(OriginalValue, Attribute->children->content))
- return make_error<WindowsManifestError>(
- Twine("conflicting attributes for ") +
- FROM_XML_CHAR(OriginalNode->name));
- } else {
- char *NameCopy = strdup(FROM_XML_CHAR(Attribute->name));
- char *ContentCopy = strdup(FROM_XML_CHAR(Attribute->children->content));
- xmlNewProp(OriginalNode, TO_XML_CHAR(NameCopy), TO_XML_CHAR(ContentCopy));
- }
- }
-#endif
- return Error::success();
-}
-
-Error treeMerge(XMLNodeImpl OriginalRoot, XMLNodeImpl AdditionalRoot) {
-#if LLVM_LIBXML2_ENABLED
- XMLNodeImpl AdditionalFirstChild = AdditionalRoot->children;
- for (XMLNodeImpl Child = AdditionalFirstChild; Child; Child = Child->next) {
- XMLNodeImpl OriginalChildWithName;
- if (!isMergeableElement(Child->name) ||
- !(OriginalChildWithName =
- getChildWithName(OriginalRoot, Child->name))) {
- XMLNodeImpl NewChild = xmlCopyNode(Child, 1);
- if (!NewChild)
- return make_error<WindowsManifestError>(Twine("error when copying ") +
- FROM_XML_CHAR(Child->name));
- if (NewChild->ns)
- xmlFreeNs(NewChild->ns); // xmlCopyNode explicitly defines default
- // namespace, undo this here.
- if (!xmlAddChild(OriginalRoot, NewChild))
- return make_error<WindowsManifestError>(Twine("could not merge ") +
- FROM_XML_CHAR(NewChild->name));
- } else if (auto E = treeMerge(OriginalChildWithName, Child)) {
- return E;
- }
- }
- if (auto E = mergeAttributes(OriginalRoot, AdditionalRoot))
- return E;
-#endif
- return Error::success();
-}
-
-void stripCommentsAndText(XMLNodeImpl Root) {
- xmlNode StoreNext;
- for (XMLNodeImpl Child = Root->children; Child; Child = Child->next) {
- if (!xmlStringsEqual(Child->name, TO_XML_CHAR("text")) &&
- !xmlStringsEqual(Child->name, TO_XML_CHAR("comment"))) {
- stripCommentsAndText(Child);
- } else {
- StoreNext.next = Child->next;
- XMLNodeImpl Remove = Child;
- Child = &StoreNext;
- xmlUnlinkNode(Remove);
- xmlFreeNode(Remove);
- }
- }
-}
-
-WindowsManifestMerger::~WindowsManifestMerger() {
-#if LLVM_LIBXML2_ENABLED
- for (auto &Doc : MergedDocs)
- xmlFreeDoc(Doc);
-#endif
-}
-
Error WindowsManifestMerger::merge(const MemoryBuffer &Manifest) {
#if LLVM_LIBXML2_ENABLED
- if (Manifest.getBufferSize() == 0)
- return make_error<WindowsManifestError>(
- "attempted to merge empty manifest");
xmlSetGenericErrorFunc((void *)this, WindowsManifestMerger::errorCallback);
XMLDocumentImpl ManifestXML =
xmlReadMemory(Manifest.getBufferStart(), Manifest.getBufferSize(),
- "manifest.xml", nullptr, XML_PARSE_NOBLANKS);
+ "manifest.xml", nullptr, 0);
xmlSetGenericErrorFunc(nullptr, nullptr);
if (auto E = getParseError())
return E;
- XMLNodeImpl AdditionalRoot = xmlDocGetRootElement(ManifestXML);
- stripCommentsAndText(AdditionalRoot);
- if (CombinedDoc == nullptr) {
- CombinedDoc = ManifestXML;
- } else {
- XMLNodeImpl CombinedRoot = xmlDocGetRootElement(CombinedDoc);
- if (xmlStringsEqual(CombinedRoot->name, AdditionalRoot->name) &&
- isMergeableElement(AdditionalRoot->name)) {
- if (auto E = treeMerge(CombinedRoot, AdditionalRoot)) {
- return E;
- }
- } else {
- XMLNodeImpl NewChild = xmlCopyNode(AdditionalRoot, 1);
- if (!NewChild)
- return make_error<WindowsManifestError>("could not copy manifest");
- if (!xmlAddChild(CombinedRoot, NewChild))
- return make_error<WindowsManifestError>("could not append manifest");
- }
- }
- MergedDocs.push_back(ManifestXML);
+ CombinedRoot = xmlDocGetRootElement(ManifestXML);
#endif
return Error::success();
}
@@ -179,16 +42,15 @@ std::unique_ptr<MemoryBuffer> WindowsManifestMerger::getMergedManifest() {
#if LLVM_LIBXML2_ENABLED
unsigned char *XmlBuff;
int BufferSize = 0;
- if (CombinedDoc) {
+ if (CombinedRoot) {
std::unique_ptr<xmlDoc> OutputDoc(xmlNewDoc((const unsigned char *)"1.0"));
- xmlDocSetRootElement(OutputDoc.get(), xmlDocGetRootElement(CombinedDoc));
- xmlKeepBlanksDefault(0);
- xmlDocDumpFormatMemory(OutputDoc.get(), &XmlBuff, &BufferSize, 1);
+ xmlDocSetRootElement(OutputDoc.get(), CombinedRoot);
+ xmlDocDumpMemory(OutputDoc.get(), &XmlBuff, &BufferSize);
}
if (BufferSize == 0)
return nullptr;
return MemoryBuffer::getMemBuffer(
- StringRef(FROM_XML_CHAR(XmlBuff), (size_t)BufferSize));
+ StringRef(reinterpret_cast<const char *>(XmlBuff), (size_t)BufferSize));
#else
return nullptr;
#endif
OpenPOWER on IntegriCloud