cmake/Source/CPack/WiX/cmWIXPatch.cxx

96 lines
2.5 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-04-27 22:25:09 +02:00
#include "cmWIXPatch.h"
#include <CPack/cmCPackGenerator.h>
2016-07-09 11:21:54 +02:00
cmWIXPatch::cmWIXPatch(cmCPackLog* logger)
: Logger(logger)
2015-04-27 22:25:09 +02:00
{
}
2016-03-13 13:35:51 +01:00
bool cmWIXPatch::LoadFragments(std::string const& patchFilePath)
2015-04-27 22:25:09 +02:00
{
cmWIXPatchParser parser(Fragments, Logger);
2016-07-09 11:21:54 +02:00
if (!parser.ParseFile(patchFilePath.c_str())) {
cmCPackLogger(cmCPackLog::LOG_ERROR, "Failed parsing XML patch file: '"
<< patchFilePath << "'" << std::endl);
2016-03-13 13:35:51 +01:00
return false;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
return true;
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
void cmWIXPatch::ApplyFragment(std::string const& id,
cmWIXSourceWriter& writer)
2015-04-27 22:25:09 +02:00
{
cmWIXPatchParser::fragment_map_t::iterator i = Fragments.find(id);
2016-07-09 11:21:54 +02:00
if (i == Fragments.end())
return;
2015-04-27 22:25:09 +02:00
const cmWIXPatchElement& fragment = i->second;
2016-03-13 13:35:51 +01:00
this->ApplyElementChildren(fragment, writer);
Fragments.erase(i);
}
2016-07-09 11:21:54 +02:00
void cmWIXPatch::ApplyElementChildren(const cmWIXPatchElement& element,
cmWIXSourceWriter& writer)
2016-03-13 13:35:51 +01:00
{
2016-07-09 11:21:54 +02:00
for (cmWIXPatchElement::child_list_t::const_iterator j =
element.children.begin();
j != element.children.end(); ++j) {
cmWIXPatchNode* node = *j;
switch (node->type()) {
case cmWIXPatchNode::ELEMENT:
ApplyElement(dynamic_cast<const cmWIXPatchElement&>(*node), writer);
break;
case cmWIXPatchNode::TEXT:
writer.AddTextNode(dynamic_cast<const cmWIXPatchText&>(*node).text);
break;
2015-04-27 22:25:09 +02:00
}
2016-03-13 13:35:51 +01:00
}
2015-04-27 22:25:09 +02:00
}
2016-07-09 11:21:54 +02:00
void cmWIXPatch::ApplyElement(const cmWIXPatchElement& element,
cmWIXSourceWriter& writer)
2015-04-27 22:25:09 +02:00
{
writer.BeginElement(element.name);
2016-07-09 11:21:54 +02:00
for (cmWIXPatchElement::attributes_t::const_iterator i =
element.attributes.begin();
i != element.attributes.end(); ++i) {
2015-04-27 22:25:09 +02:00
writer.AddAttribute(i->first, i->second);
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-03-13 13:35:51 +01:00
this->ApplyElementChildren(element, writer);
2015-04-27 22:25:09 +02:00
writer.EndElement(element.name);
}
bool cmWIXPatch::CheckForUnappliedFragments()
{
std::string fragmentList;
2016-07-09 11:21:54 +02:00
for (cmWIXPatchParser::fragment_map_t::const_iterator i = Fragments.begin();
i != Fragments.end(); ++i) {
if (!fragmentList.empty()) {
2015-04-27 22:25:09 +02:00
fragmentList += ", ";
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
fragmentList += "'";
fragmentList += i->first;
fragmentList += "'";
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
if (!fragmentList.empty()) {
cmCPackLogger(cmCPackLog::LOG_ERROR,
"Some XML patch fragments did not have matching IDs: "
<< fragmentList << std::endl);
return false;
}
2015-04-27 22:25:09 +02:00
return true;
}