2013-12-17 01:30:11 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2013 Kitware, Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
|
|
|
|
#ifndef cmCPackWIXPatchParser_h
|
|
|
|
#define cmCPackWIXPatchParser_h
|
|
|
|
|
|
|
|
#include <cmXMLParser.h>
|
|
|
|
|
|
|
|
#include <CPack/cmCPackLog.h>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
struct cmWIXPatchElement
|
|
|
|
{
|
|
|
|
~cmWIXPatchElement();
|
|
|
|
|
|
|
|
typedef std::list<cmWIXPatchElement*> child_list_t;
|
|
|
|
typedef std::map<std::string, std::string> attributes_t;
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
child_list_t children;
|
|
|
|
attributes_t attributes;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** \class cmWIXPatchParser
|
|
|
|
* \brief Helper class that parses XML patch files (CPACK_WIX_PATCH_FILE)
|
|
|
|
*/
|
|
|
|
class cmWIXPatchParser : public cmXMLParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::map<std::string, cmWIXPatchElement> fragment_map_t;
|
|
|
|
|
2013-12-20 21:12:01 +04:00
|
|
|
cmWIXPatchParser(fragment_map_t& Fragments, cmCPackLog* logger);
|
2013-12-17 01:30:11 +04:00
|
|
|
|
|
|
|
private:
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void StartElement(const std::string& name, const char **atts);
|
2013-12-17 01:30:11 +04:00
|
|
|
|
|
|
|
void StartFragment(const char **attributes);
|
|
|
|
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void EndElement(const std::string& name);
|
2013-12-17 01:30:11 +04:00
|
|
|
virtual void ReportError(int line, int column, const char* msg);
|
|
|
|
|
2014-02-25 02:21:12 +04:00
|
|
|
void ReportValidationError(std::string const& message);
|
2013-12-17 01:30:11 +04:00
|
|
|
|
|
|
|
bool IsValid() const;
|
|
|
|
|
|
|
|
cmCPackLog* Logger;
|
|
|
|
|
|
|
|
enum ParserState
|
|
|
|
{
|
|
|
|
BEGIN_DOCUMENT,
|
|
|
|
BEGIN_FRAGMENTS,
|
|
|
|
INSIDE_FRAGMENT
|
|
|
|
};
|
|
|
|
|
2013-12-20 21:12:01 +04:00
|
|
|
ParserState State;
|
2013-12-17 01:30:11 +04:00
|
|
|
|
2013-12-20 21:12:01 +04:00
|
|
|
bool Valid;
|
2013-12-17 01:30:11 +04:00
|
|
|
|
2013-12-20 21:12:01 +04:00
|
|
|
fragment_map_t& Fragments;
|
2013-12-17 01:30:11 +04:00
|
|
|
|
2013-12-20 21:12:01 +04:00
|
|
|
std::list<cmWIXPatchElement*> ElementStack;
|
2013-12-17 01:30:11 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|