blob: 60ddafc178b2f5da2b3b1b8384efa4f57a613916 (
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#ifndef SWIFTEN_StanzaParser_H
#define SWIFTEN_StanzaParser_H
#include <boost/noncopyable.hpp>
#include "Swiften/Base/String.h"
#include "Swiften/Elements/Stanza.h"
#include "Swiften/Parser/ElementParser.h"
#include "Swiften/Parser/AttributeMap.h"
namespace Swift {
class PayloadParser;
class PayloadParserFactoryCollection;
class StanzaParser : public ElementParser, public boost::noncopyable {
public:
StanzaParser(PayloadParserFactoryCollection* factories);
~StanzaParser();
void handleStartElement(const String& element, const String& ns, const AttributeMap& attributes);
void handleEndElement(const String& element, const String& ns);
void handleCharacterData(const String& data);
virtual boost::shared_ptr<Element> getElement() const = 0;
virtual void handleStanzaAttributes(const AttributeMap&) {}
virtual boost::shared_ptr<Stanza> getStanza() const {
return boost::dynamic_pointer_cast<Stanza>(getElement());
}
private:
bool inPayload() const {
return currentDepth_ > 1;
}
bool inStanza() const {
return currentDepth_ > 0;
}
private:
int currentDepth_;
PayloadParserFactoryCollection* factories_;
std::auto_ptr<PayloadParser> currentPayloadParser_;
};
}
#endif
|