summaryrefslogtreecommitdiff
path: root/shared/xmlBase.h
blob: 5fc13b6534656d1267188243089dbc3f2a123c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#ifndef XMLBASE_H_INCLUDED
#define XMLBASE_H_INCLUDED

#include "tinyxml/tinyxml.h"
#include <string>
#include <vector>
#include <wx/string.h>


namespace xmlAccess
{

    enum XmlType
    {
        XML_GUI_CONFIG,
        XML_BATCH_CONFIG,
        XML_GLOBAL_SETTINGS,
        XML_REAL_CONFIG,
        XML_OTHER
    };

    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);


//------------------------------------------------------------------------------------------

    //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, 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 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)
        {
            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;
    };


    class XmlError //Exception class
    {
    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;
    };
}


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;
};


#endif // XMLBASE_H_INCLUDED
bgstack15