summaryrefslogtreecommitdiff
path: root/src/domutils.h
blob: a3abcc8f8f0bbbd315fca0a6b18e1aa3dc05cb8e (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
// 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;
}

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

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

inline void
appendPointElement(QDomDocument &doc, QDomElement &parent, const QString &name, QPointF value)
{
	if (!value.isNull()) {
		QDomElement element = doc.createElement(name);
		appendFloatElement(doc, element, "x", value.x());
		appendFloatElement(doc, element, "y", value.y());
		parent.appendChild(element);
	}
}

inline QPointF
readPointElement(QDomElement &parent, const QString &name)
{
	QDomElement element = parent.firstChildElement(name);
	if (!element.isNull()) {
		qreal x = readFloatElement(element, "x");
		qreal y = readFloatElement(element, "y");
		return QPointF(x, y);
	}
	return QPointF();
}

#endif