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
|
// SPDX-FileCopyrightText: 2009 Manjeet Dahiya <manjeetdahiya@gmail.com>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "QXmppIq.h"
#include "QXmppUtils.h"
#include <QDomElement>
#include <QXmlStreamWriter>
static const char *iq_types[] = {
"error",
"get",
"set",
"result"
};
class QXmppIqPrivate : public QSharedData
{
public:
QXmppIq::Type type;
};
///
/// Constructs a QXmppIq with the specified \a type.
///
/// \param type
///
QXmppIq::QXmppIq(QXmppIq::Type type)
: QXmppStanza(), d(new QXmppIqPrivate)
{
d->type = type;
generateAndSetNextId();
}
/// Constructs a copy of \a other.
QXmppIq::QXmppIq(const QXmppIq &other) = default;
/// Default move-constructor.
QXmppIq::QXmppIq(QXmppIq &&) = default;
QXmppIq::~QXmppIq() = default;
/// Assigns \a other to this IQ.
QXmppIq &QXmppIq::operator=(const QXmppIq &other) = default;
/// Move-assignment operator.
QXmppIq &QXmppIq::operator=(QXmppIq &&) = default;
///
/// Returns the IQ's type.
///
QXmppIq::Type QXmppIq::type() const
{
return d->type;
}
///
/// Sets the IQ's type.
///
/// \param type
///
void QXmppIq::setType(QXmppIq::Type type)
{
d->type = type;
}
///
/// Indicates if the QXmppStanza is a stanza in the XMPP sense (i. e. a message,
/// iq or presence)
///
/// \since QXmpp 1.0
///
bool QXmppIq::isXmppStanza() const
{
return true;
}
/// \cond
void QXmppIq::parse(const QDomElement &element)
{
QXmppStanza::parse(element);
const QString type = element.attribute("type");
for (int i = Error; i <= Result; i++) {
if (type == iq_types[i]) {
d->type = static_cast<Type>(i);
break;
}
}
parseElementFromChild(element);
}
void QXmppIq::parseElementFromChild(const QDomElement &element)
{
QXmppElementList extensions;
for (auto itemElement = element.firstChildElement();
!itemElement.isNull();
itemElement = itemElement.nextSiblingElement()) {
extensions.append(QXmppElement(itemElement));
}
setExtensions(extensions);
}
void QXmppIq::toXml(QXmlStreamWriter *xmlWriter) const
{
xmlWriter->writeStartElement("iq");
helperToXmlAddAttribute(xmlWriter, "id", id());
helperToXmlAddAttribute(xmlWriter, "to", to());
helperToXmlAddAttribute(xmlWriter, "from", from());
helperToXmlAddAttribute(xmlWriter, "type", iq_types[d->type]);
toXmlElementFromChild(xmlWriter);
error().toXml(xmlWriter);
xmlWriter->writeEndElement();
}
void QXmppIq::toXmlElementFromChild(QXmlStreamWriter *writer) const
{
const auto exts = extensions();
for (const QXmppElement &extension : exts) {
extension.toXml(writer);
}
}
/// \endcond
|