blob: 637b45ae5078074513d0beeb81fb2bba838ef7f3 (
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include "Swiften/Parser/StanzaParser.h"
#include <iostream>
#include <cassert>
#include "Swiften/Parser/PayloadParser.h"
#include "Swiften/Parser/PayloadParserFactory.h"
#include "Swiften/Parser/PayloadParserFactoryCollection.h"
#include "Swiften/Parser/UnknownPayloadParser.h"
namespace Swift {
StanzaParser::StanzaParser(PayloadParserFactoryCollection* factories) :
currentDepth_(0), factories_(factories) {
}
StanzaParser::~StanzaParser() {
}
void StanzaParser::handleStartElement(const String& element, const String& ns, const AttributeMap& attributes) {
if (inStanza()) {
if (!inPayload()) {
assert(!currentPayloadParser_.get());
PayloadParserFactory* payloadParserFactory = factories_->getPayloadParserFactory(element, ns, attributes);
if (payloadParserFactory) {
currentPayloadParser_.reset(payloadParserFactory->createPayloadParser());
}
else {
currentPayloadParser_.reset(new UnknownPayloadParser());
}
}
assert(currentPayloadParser_.get());
currentPayloadParser_->handleStartElement(element, ns, attributes);
}
else {
AttributeMap::const_iterator from = attributes.find("from");
if (from != attributes.end()) {
getStanza()->setFrom(JID(from->second));
}
AttributeMap::const_iterator to = attributes.find("to");
if (to != attributes.end()) {
getStanza()->setTo(JID(to->second));
}
AttributeMap::const_iterator id = attributes.find("id");
if (id != attributes.end()) {
getStanza()->setID(id->second);
}
handleStanzaAttributes(attributes);
}
++currentDepth_;
}
void StanzaParser::handleEndElement(const String& element, const String& ns) {
assert(inStanza());
if (inPayload()) {
assert(currentPayloadParser_.get());
currentPayloadParser_->handleEndElement(element, ns);
--currentDepth_;
if (!inPayload()) {
boost::shared_ptr<Payload> payload(currentPayloadParser_->getPayload());
if (payload) {
getStanza()->addPayload(payload);
}
currentPayloadParser_.reset();
}
}
else {
--currentDepth_;
}
}
void StanzaParser::handleCharacterData(const String& data) {
if (currentPayloadParser_.get()) {
currentPayloadParser_->handleCharacterData(data);
}
}
}
|