diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:06 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:06 +0200 |
commit | fbe76102e941b9f1edaf236788e42678f05fdf9a (patch) | |
tree | f5f538316019fa89be8dc478103490c3a826f3ac /shared/xmlBase.h | |
parent | 3.8 (diff) | |
download | FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.gz FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.bz2 FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.zip |
3.9
Diffstat (limited to 'shared/xmlBase.h')
-rw-r--r-- | shared/xmlBase.h | 210 |
1 files changed, 0 insertions, 210 deletions
diff --git a/shared/xmlBase.h b/shared/xmlBase.h deleted file mode 100644 index 8f7c4aa7..00000000 --- a/shared/xmlBase.h +++ /dev/null @@ -1,210 +0,0 @@ -// ************************************************************************** -// * This file is part of the FreeFileSync project. It is distributed under * -// * GNU General Public License: http://www.gnu.org/licenses/gpl.html * -// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) * -// ************************************************************************** -// -#ifndef XMLBASE_H_INCLUDED -#define XMLBASE_H_INCLUDED - -#include "tinyxml/tinyxml.h" -#include "globalFunctions.h" -#include <string> -#include <vector> -#include <wx/string.h> -#include "xmlError.h" - - -namespace xmlAccess -{ - -enum XmlType -{ - XML_GUI_CONFIG, - XML_BATCH_CONFIG, - XML_GLOBAL_SETTINGS, - XML_REAL_CONFIG, - XML_OTHER -}; - -XmlType getXmlType(const wxString& filename); //throw() - -void loadXmlDocument(const wxString& fileName, const XmlType type, TiXmlDocument& document); //throw (XmlError) -void getDefaultXmlDocument(const XmlType type, TiXmlDocument& document); -void saveXmlDocument(const wxString& fileName, const TiXmlDocument& document); //throw (XmlError) - - -//------------------------------------------------------------------------------------------ - -//small helper functions -template <class T> -bool readXmlElement(const std::string& name, const TiXmlElement* parent, T& output); -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, bool& output); -bool readXmlElement(const std::string& name, const TiXmlElement* parent, std::vector<wxString>& output); - - -template <class T> -bool readXmlAttribute(const std::string& name, const TiXmlElement* node, T& 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, bool& output); - -template <class T> -void addXmlElement(const std::string& name, T value, TiXmlElement* parent); -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 bool value, TiXmlElement* parent); -void addXmlElement(const std::string& name, const std::vector<wxString>& value, TiXmlElement* parent); - -template <class T> -void addXmlAttribute(const std::string& name, T value, TiXmlElement* node); -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 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) - { - 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 getRoot() const - { - return root; - } - -private: - const TiXmlElement* const root; - std::vector<wxString> failedNodes; -}; -} - - -class TiXmlHandleConst //like TiXmlHandle but respecting "const TiXmlElement*" -{ -public: - TiXmlHandleConst(const TiXmlElement* element) : m_element(element) {} - - TiXmlHandleConst FirstChild(const char* name) const - { - return TiXmlHandleConst(m_element != NULL ? m_element->FirstChildElement(name) : NULL); - } - - const TiXmlElement* ToElement() const - { - return m_element; - } - -private: - const TiXmlElement* const m_element; -}; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -//++++++++++++++ inline implementation +++++++++++++++++++++++++++++++++++++++ -template <class T> -inline -bool xmlAccess::readXmlElement(const std::string& name, const TiXmlElement* parent, T& output) -{ - std::string temp; - if (!readXmlElement(name, parent, temp)) - return false; - - output = globalFunctions::stringToNumber<T>(temp); - return true; -} - - -template <class T> -inline -void xmlAccess::addXmlElement(const std::string& name, T value, TiXmlElement* parent) -{ - addXmlElement(name, globalFunctions::numberToString<std::string::value_type>(value), parent); -} - - -template <class T> -inline -bool xmlAccess::readXmlAttribute(const std::string& name, const TiXmlElement* node, T& output) -{ - std::string dummy; - if (readXmlAttribute(name, node, dummy)) - { - output = globalFunctions::stringToNumber<T>(dummy); - return true; - } - else - return false; -} - - -template <class T> -inline -void xmlAccess::addXmlAttribute(const std::string& name, T value, TiXmlElement* node) -{ - addXmlAttribute(name, globalFunctions::numberToString<std::string::value_type>(value), node); -} - -#endif // XMLBASE_H_INCLUDED |