summaryrefslogtreecommitdiff
path: root/shared/xmlBase.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:01:29 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:01:29 +0200
commit9a2a524f1e311853d08050be2dcdddc09ac7759a (patch)
treed8e4a24169fce88c2d89931d58514889a0bcb0ea /shared/xmlBase.h
parent2.3 (diff)
downloadFreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.tar.gz
FreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.tar.bz2
FreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.zip
3.0
Diffstat (limited to 'shared/xmlBase.h')
-rw-r--r--shared/xmlBase.h182
1 files changed, 91 insertions, 91 deletions
diff --git a/shared/xmlBase.h b/shared/xmlBase.h
index ed838843..3a01c515 100644
--- a/shared/xmlBase.h
+++ b/shared/xmlBase.h
@@ -10,108 +10,108 @@
namespace xmlAccess
{
- enum XmlType
- {
- XML_GUI_CONFIG,
- XML_BATCH_CONFIG,
- XML_GLOBAL_SETTINGS,
- XML_REAL_CONFIG,
- XML_OTHER
- };
+enum XmlType
+{
+ XML_GUI_CONFIG,
+ XML_BATCH_CONFIG,
+ XML_GLOBAL_SETTINGS,
+ XML_REAL_CONFIG,
+ XML_OTHER
+};
- XmlType getXmlType(const wxString& filename);
+XmlType getXmlType(const wxString& filename);
- bool loadXmlDocument(const wxString& fileName, const XmlType type, TiXmlDocument& document);
- void getDefaultXmlDocument(const XmlType type, TiXmlDocument& document);
- bool saveXmlDocument(const wxString& fileName, const TiXmlDocument& document);
+bool loadXmlDocument(const wxString& fileName, const XmlType type, TiXmlDocument& document);
+void getDefaultXmlDocument(const XmlType type, TiXmlDocument& document);
+bool saveXmlDocument(const wxString& fileName, const TiXmlDocument& document);
//------------------------------------------------------------------------------------------
- //small helper functions
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, std::string& output);
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, wxString& output);
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, int& output);
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, unsigned int& output);
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, long& output);
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, bool& output);
- bool readXmlElement(const std::string& name, const TiXmlElement* parent, std::vector<wxString>& output);
-
- bool readXmlAttribute(const std::string& name, const TiXmlElement* node, std::string& output);
- bool readXmlAttribute(const std::string& name, const TiXmlElement* node, wxString& output);
- bool readXmlAttribute(const std::string& name, const TiXmlElement* node, int& output);
- bool readXmlAttribute(const std::string& name, const TiXmlElement* node, unsigned int& output);
- bool readXmlAttribute(const std::string& name, const TiXmlElement* node, bool& output);
-
- void addXmlElement(const std::string& name, const std::string& value, TiXmlElement* parent);
- void addXmlElement(const std::string& name, const wxString& value, TiXmlElement* parent);
- void addXmlElement(const std::string& name, const int value, TiXmlElement* parent);
- void addXmlElement(const std::string& name, const unsigned int value, TiXmlElement* parent);
- void addXmlElement(const std::string& name, const long value, TiXmlElement* parent);
- void addXmlElement(const std::string& name, const bool value, TiXmlElement* parent);
- void addXmlElement(const std::string& name, const std::vector<wxString>& value, TiXmlElement* parent);
-
- void addXmlAttribute(const std::string& name, const std::string& value, TiXmlElement* node);
- void addXmlAttribute(const std::string& name, const wxString& value, TiXmlElement* node);
- void addXmlAttribute(const std::string& name, const int value, TiXmlElement* node);
- void addXmlAttribute(const std::string& name, const unsigned int value, TiXmlElement* node);
- void addXmlAttribute(const std::string& name, const bool value, TiXmlElement* node);
-
-
-
- class XmlParser
+//small helper functions
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, std::string& output);
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, wxString& output);
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, int& output);
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, unsigned int& output);
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, long& output);
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, bool& output);
+bool readXmlElement(const std::string& name, const TiXmlElement* parent, std::vector<wxString>& output);
+
+bool readXmlAttribute(const std::string& name, const TiXmlElement* node, std::string& output);
+bool readXmlAttribute(const std::string& name, const TiXmlElement* node, wxString& output);
+bool readXmlAttribute(const std::string& name, const TiXmlElement* node, int& output);
+bool readXmlAttribute(const std::string& name, const TiXmlElement* node, unsigned int& output);
+bool readXmlAttribute(const std::string& name, const TiXmlElement* node, bool& output);
+
+void addXmlElement(const std::string& name, const std::string& value, TiXmlElement* parent);
+void addXmlElement(const std::string& name, const wxString& value, TiXmlElement* parent);
+void addXmlElement(const std::string& name, const int value, TiXmlElement* parent);
+void addXmlElement(const std::string& name, const unsigned int value, TiXmlElement* parent);
+void addXmlElement(const std::string& name, const long value, TiXmlElement* parent);
+void addXmlElement(const std::string& name, const bool value, TiXmlElement* parent);
+void addXmlElement(const std::string& name, const std::vector<wxString>& value, TiXmlElement* parent);
+
+void addXmlAttribute(const std::string& name, const std::string& value, TiXmlElement* node);
+void addXmlAttribute(const std::string& name, const wxString& value, TiXmlElement* node);
+void addXmlAttribute(const std::string& name, const int value, TiXmlElement* node);
+void addXmlAttribute(const std::string& name, const unsigned int value, TiXmlElement* node);
+void addXmlAttribute(const std::string& name, const bool value, TiXmlElement* node);
+
+
+
+class XmlParser
+{
+public:
+ XmlParser(const TiXmlElement* rootElement) : root(rootElement) {}
+
+ void logError(const std::string& nodeName);
+ bool errorsOccured() const;
+ const wxString getErrorMessageFormatted() const;
+
+protected:
+ //another level of indirection: if errors occur during xml parsing they are logged
+ template <class T>
+ void readXmlElementLogging(const std::string& name, const TiXmlElement* parent, T& output)
{
- public:
- XmlParser(const TiXmlElement* rootElement) : root(rootElement) {}
-
- void logError(const std::string& nodeName);
- bool errorsOccured() const;
- const wxString getErrorMessageFormatted() const;
-
- protected:
- //another level of indirection: if errors occur during xml parsing they are logged
- template <class T>
- void readXmlElementLogging(const std::string& name, const TiXmlElement* parent, T& output)
- {
- if (!readXmlElement(name, parent, output))
- logError(name);
- }
-
- template <class T>
- void readXmlAttributeLogging(const std::string& name, const TiXmlElement* node, T& output)
- {
- if (!readXmlAttribute(name, node, output))
- logError(name);
- }
-
- const TiXmlElement* const root;
- std::vector<wxString> failedNodes;
- };
+ if (!readXmlElement(name, parent, output))
+ logError(name);
+ }
+ template <class T>
+ void readXmlAttributeLogging(const std::string& name, const TiXmlElement* node, T& output)
+ {
+ if (!readXmlAttribute(name, node, output))
+ logError(name);
+ }
- class XmlError //Exception class
+ const TiXmlElement* const root;
+ std::vector<wxString> failedNodes;
+};
+
+
+class XmlError //Exception class
+{
+public:
+ enum Severity
{
- public:
- enum Severity
- {
- WARNING = 77,
- FATAL
- };
-
- XmlError(const wxString& message, Severity sev = FATAL) : errorMessage(message), m_severity(sev) {}
-
- const wxString& show() const
- {
- return errorMessage;
- }
- Severity getSeverity() const
- {
- return m_severity;
- }
- private:
- const wxString errorMessage;
- const Severity m_severity;
+ WARNING = 77,
+ FATAL
};
+
+ XmlError(const wxString& message, Severity sev = FATAL) : errorMessage(message), m_severity(sev) {}
+
+ const wxString& show() const
+ {
+ return errorMessage;
+ }
+ Severity getSeverity() const
+ {
+ return m_severity;
+ }
+private:
+ const wxString errorMessage;
+ const Severity m_severity;
+};
}
bgstack15