summaryrefslogtreecommitdiff
path: root/src/domutils.h
blob: 4b7c0ed411f376a97f5dc14099b4a591b1bda9fd (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
// Copyright (C) 2008  Lukas Lalinsky
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

#ifndef DOMUTILS_H
#define DOMUTILS_H

#include <QDebug>
#include <QDomDocument>
#include <QDomElement>
#include <QMetaEnum>
#include <QMetaObject>

inline void
appendStringElement(QDomDocument &doc, QDomElement &parent, const QString &name, const QString &value)
{
	if (!value.isEmpty()) {
		QDomElement element = doc.createElement(name);
		element.appendChild(doc.createTextNode(value));
		parent.appendChild(element);
	}
}

inline QString
readStringElement(QDomElement &parent, const QString &name, const QString &defaultValue = QString())
{
	QDomElement element = parent.firstChildElement(name);
	if (!element.isNull()) {
		return element.text();
	}
	return defaultValue;
}

inline const char *
enumNameFromValue(const QObject *obj, const char *enumerator, int value)
{
	const QMetaObject *metaObj = obj->metaObject();
	int enumeratorIndex = metaObj->indexOfEnumerator(enumerator);
	return metaObj->enumerator(enumeratorIndex).valueToKey(value);
}

inline int
enumValueFromName(const QObject *obj, const char *enumerator, const char *key)
{
	const QMetaObject *metaObj = obj->metaObject();
	int enumeratorIndex = metaObj->indexOfEnumerator(enumerator);
	return metaObj->enumerator(enumeratorIndex).keyToValue(key);
}

template <typename T> inline void
appendEnumElement(QDomDocument doc, QDomElement element, const QString &name, T value, const QObject *obj, const char *enumName)
{
	appendStringElement(doc, element, name, enumNameFromValue(obj, enumName, value));
}

template <typename T> inline T
readEnumElement(QDomElement &parent, const QString &name, T defaultValue, const QObject *obj, const char *enumName)
{
	QDomElement element = parent.firstChildElement(name);
	if (!element.isNull()) {
		return T(enumValueFromName(obj, enumName, element.text().toLatin1().constData()));
	}
	return defaultValue;
}

inline void
appendBoolElement(QDomDocument doc, QDomElement element, const QString &name, bool value, const QString &trueName = "True", const QString &falseName = "False")
{
	appendStringElement(doc, element, name, value ? trueName : falseName);
}

inline bool
readBoolElement(QDomElement &parent, const QString &name, bool defaultValue = false, const QString &trueName = "True", const QString &falseName = "False")
{
	QDomElement element = parent.firstChildElement(name);
	if (!element.isNull()) {
		QString value = element.text();
		if (value == trueName) {
			return true;
		}
		else if (value == falseName) {
			return false;
		}
		else {
			qWarning() << "Invalid value for" << name <<  ":" << value << "(must be either" << trueName << "or" << falseName << ")";
		}
	}
	return defaultValue;
}

inline void
appendFloatElement(QDomDocument &doc, QDomElement &parent, const QString &name, qreal value)
{
	QDomElement element = doc.createElement(name);
	element.appendChild(doc.createTextNode(QString::number(double(value))));
	parent.appendChild(element);
}

inline qreal
readFloatElement(QDomElement &parent, const QString &name, qreal defaultValue = 0)
{
	QDomElement element = parent.firstChildElement(name);
	if (!element.isNull()) {
		return element.text().toDouble();
	}
	return defaultValue;
}

#endif