2014-02-25 02:21:12 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2014 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
|
|
|
|
#include "cmWIXPatch.h"
|
|
|
|
|
|
|
|
#include <CPack/cmCPackGenerator.h>
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmWIXPatch::cmWIXPatch(cmCPackLog* logger)
|
|
|
|
: Logger(logger)
|
2014-02-25 02:21:12 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-12-15 01:04:41 +03:00
|
|
|
bool cmWIXPatch::LoadFragments(std::string const& patchFilePath)
|
2014-02-25 02:21:12 +04:00
|
|
|
{
|
|
|
|
cmWIXPatchParser parser(Fragments, Logger);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!parser.ParseFile(patchFilePath.c_str())) {
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Failed parsing XML patch file: '"
|
|
|
|
<< patchFilePath << "'" << std::endl);
|
2015-12-15 01:04:41 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-12-15 01:04:41 +03:00
|
|
|
|
|
|
|
return true;
|
2014-02-25 02:21:12 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmWIXPatch::ApplyFragment(std::string const& id,
|
|
|
|
cmWIXSourceWriter& writer)
|
2014-02-25 02:21:12 +04:00
|
|
|
{
|
|
|
|
cmWIXPatchParser::fragment_map_t::iterator i = Fragments.find(id);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (i == Fragments.end())
|
|
|
|
return;
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
const cmWIXPatchElement& fragment = i->second;
|
2015-10-12 22:53:08 +03:00
|
|
|
|
|
|
|
this->ApplyElementChildren(fragment, writer);
|
|
|
|
|
|
|
|
Fragments.erase(i);
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmWIXPatch::ApplyElementChildren(const cmWIXPatchElement& element,
|
|
|
|
cmWIXSourceWriter& writer)
|
2015-10-12 22:53:08 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03: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;
|
2014-02-25 02:21:12 +04:00
|
|
|
}
|
2015-10-12 22:53:08 +03:00
|
|
|
}
|
2014-02-25 02:21:12 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmWIXPatch::ApplyElement(const cmWIXPatchElement& element,
|
|
|
|
cmWIXSourceWriter& writer)
|
2014-02-25 02:21:12 +04:00
|
|
|
{
|
|
|
|
writer.BeginElement(element.name);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cmWIXPatchElement::attributes_t::const_iterator i =
|
|
|
|
element.attributes.begin();
|
|
|
|
i != element.attributes.end(); ++i) {
|
2014-02-25 02:21:12 +04:00
|
|
|
writer.AddAttribute(i->first, i->second);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-25 02:21:12 +04:00
|
|
|
|
2015-10-12 22:53:08 +03:00
|
|
|
this->ApplyElementChildren(element, writer);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
writer.EndElement(element.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmWIXPatch::CheckForUnappliedFragments()
|
|
|
|
{
|
|
|
|
std::string fragmentList;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cmWIXPatchParser::fragment_map_t::const_iterator i = Fragments.begin();
|
|
|
|
i != Fragments.end(); ++i) {
|
|
|
|
if (!fragmentList.empty()) {
|
2014-02-25 02:21:12 +04:00
|
|
|
fragmentList += ", ";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
fragmentList += "'";
|
|
|
|
fragmentList += i->first;
|
|
|
|
fragmentList += "'";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-25 02:21:12 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fragmentList.empty()) {
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Some XML patch fragments did not have matching IDs: "
|
|
|
|
<< fragmentList << std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|