Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
671 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
10 | ** |
||
11 | ** This program is distributed in the hope that it will be useful, |
||
12 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
14 | ** GNU General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
19 | |||
93 | Werner | 20 | #ifndef XMLHELPER_H |
21 | #define XMLHELPER_H |
||
22 | |||
23 | #include <QtXml> |
||
24 | |||
25 | class XmlHelper |
||
26 | { |
||
27 | public: |
||
28 | XmlHelper(); |
||
194 | werner | 29 | ~XmlHelper(); |
93 | Werner | 30 | XmlHelper(const QString &fileName) {loadFromFile(fileName);} |
31 | XmlHelper(QDomElement topNode); |
||
32 | void loadFromFile(const QString &fileName); |
||
280 | werner | 33 | // relative top nodes |
34 | QDomElement top() const { return mTopNode;} |
||
35 | void setCurrentNode(const QString &path) { mCurrentTop = node(path); } ///< sets @p path as the current (relative) node. |
||
36 | void setCurrentNode(const QDomElement &node) { mCurrentTop = node; } ///< sets node as the current (relative) top node. |
||
172 | werner | 37 | /// returns true if the current (relative!) node is valid (i.e. not null). |
187 | iland | 38 | bool isValid() const { return !mCurrentTop.isNull(); } |
104 | Werner | 39 | bool hasNode(const QString &path) const; ///< returns true if @p path exists. |
280 | werner | 40 | // read access |
41 | QDomElement node(const QString &path) const; ///< retrieve node defined by path (see class description) |
||
104 | Werner | 42 | QString value(const QString &path, const QString &defaultValue="") const; ///< retrieve value (as string) from node @p path. |
185 | werner | 43 | bool valueBool(const QString &path, const bool defaultValue=false) const; ///< retrieve value (as bool) from node @p path. |
44 | double valueDouble(const QString &path, const double defaultValue=0.) const; ///< retrieve value (as double) from node @p path. |
||
1102 | werner | 45 | int valueInt(const QString &path, const int defaultValue=0) const; ///< retrieve value (as int) from node @p path. |
280 | werner | 46 | // write access |
47 | bool setNodeValue(QDomElement &node, const QString &value); ///< set value of 'node'. return true on success. |
||
48 | bool setNodeValue(const QString &path, const QString &value); ///< set value of node indicated by 'path'. return true on success. |
||
49 | // special parameters |
||
145 | Werner | 50 | double paramValue(const QString ¶mName, const double defaultValue=0.) const; ///< get value of special "parameter" space |
51 | QString paramValueString(const QString ¶mName, const QString &defaultValue="") const; ///< get value of special "parameter" space |
||
171 | werner | 52 | bool paramValueBool(const QString ¶mName, const bool &defaultValue=true) const; ///< get value of special "parameter" space |
280 | werner | 53 | // helpers |
54 | QString dump(const QString &path, int levels=-1); |
||
93 | Werner | 55 | private: |
777 | werner | 56 | void dump_rec(QDomElement c, QStringList &stack, QStringList &out); |
93 | Werner | 57 | QDomDocument mDoc; |
58 | QDomElement mCurrentTop; |
||
59 | QDomElement mTopNode; |
||
137 | Werner | 60 | QHash<const QString, QString> mParamCache; |
93 | Werner | 61 | }; |
62 | |||
63 | #endif // XMLHELPER_H |