blob: 13380c886dc0a50a65e91d43c9543c44d0e1b595 (
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
|
#include "Swiften/Parser/PayloadParsers/ErrorParser.h"
namespace Swift {
ErrorParser::ErrorParser() : level_(TopLevel) {
}
void ErrorParser::handleStartElement(const String&, const String&, const AttributeMap& attributes) {
if (level_ == TopLevel) {
String type = attributes.getAttribute("type");
if (type == "continue") {
getPayloadInternal()->setType(Error::Continue);
}
else if (type == "modify") {
getPayloadInternal()->setType(Error::Modify);
}
else if (type == "auth") {
getPayloadInternal()->setType(Error::Auth);
}
else if (type == "wait") {
getPayloadInternal()->setType(Error::Wait);
}
else {
getPayloadInternal()->setType(Error::Cancel);
}
}
++level_;
}
void ErrorParser::handleEndElement(const String& element, const String&) {
--level_;
if (level_ == PayloadLevel) {
if (element == "text") {
getPayloadInternal()->setText(currentText_);
}
else if (element == "bad-request") {
getPayloadInternal()->setCondition(Error::BadRequest);
}
else if (element == "conflict") {
getPayloadInternal()->setCondition(Error::Conflict);
}
else if (element == "feature-not-implemented") {
getPayloadInternal()->setCondition(Error::FeatureNotImplemented);
}
else if (element == "forbidden") {
getPayloadInternal()->setCondition(Error::Forbidden);
}
else if (element == "gone") {
getPayloadInternal()->setCondition(Error::Gone);
}
else if (element == "internal-server-error") {
getPayloadInternal()->setCondition(Error::InternalServerError);
}
else if (element == "item-not-found") {
getPayloadInternal()->setCondition(Error::ItemNotFound);
}
else if (element == "jid-malformed") {
getPayloadInternal()->setCondition(Error::JIDMalformed);
}
else if (element == "not-acceptable") {
getPayloadInternal()->setCondition(Error::NotAcceptable);
}
else if (element == "not-allowed") {
getPayloadInternal()->setCondition(Error::NotAllowed);
}
else if (element == "not-authorized") {
getPayloadInternal()->setCondition(Error::NotAuthorized);
}
else if (element == "payment-required") {
getPayloadInternal()->setCondition(Error::PaymentRequired);
}
else if (element == "recipient-unavailable") {
getPayloadInternal()->setCondition(Error::RecipientUnavailable);
}
else if (element == "redirect") {
getPayloadInternal()->setCondition(Error::Redirect);
}
else if (element == "registration-required") {
getPayloadInternal()->setCondition(Error::RegistrationRequired);
}
else if (element == "remote-server-not-found") {
getPayloadInternal()->setCondition(Error::RemoteServerNotFound);
}
else if (element == "remote-server-timeout") {
getPayloadInternal()->setCondition(Error::RemoteServerTimeout);
}
else if (element == "resource-constraint") {
getPayloadInternal()->setCondition(Error::ResourceConstraint);
}
else if (element == "service-unavailable") {
getPayloadInternal()->setCondition(Error::ServiceUnavailable);
}
else if (element == "subscription-required") {
getPayloadInternal()->setCondition(Error::SubscriptionRequired);
}
else if (element == "unexpected-request") {
getPayloadInternal()->setCondition(Error::UnexpectedRequest);
}
else {
getPayloadInternal()->setCondition(Error::UndefinedCondition);
}
}
}
void ErrorParser::handleCharacterData(const String& data) {
currentText_ += data;
}
}
|