blob: 7b83e99731efb57865f3ed26d91445f404a9efe5 (
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-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <memory>
#include <string>
#include <boost/noncopyable.hpp>
#include <Swiften/Base/API.h>
#include <Swiften/Elements/Stanza.h>
#include <Swiften/Parser/AttributeMap.h>
#include <Swiften/Parser/ElementParser.h>
namespace Swift {
class PayloadParser;
class PayloadParserFactoryCollection;
class SWIFTEN_API StanzaParser : public ElementParser, public boost::noncopyable {
public:
StanzaParser(PayloadParserFactoryCollection* factories);
~StanzaParser();
void handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes);
void handleEndElement(const std::string& element, const std::string& ns);
void handleCharacterData(const std::string& data);
virtual std::shared_ptr<ToplevelElement> getElement() const = 0;
virtual void handleStanzaAttributes(const AttributeMap&) {}
virtual std::shared_ptr<Stanza> getStanza() const {
return std::dynamic_pointer_cast<Stanza>(getElement());
}
private:
bool inPayload() const {
return currentDepth_ > 1;
}
bool inStanza() const {
return currentDepth_ > 0;
}
private:
int currentDepth_;
PayloadParserFactoryCollection* factories_;
std::shared_ptr<PayloadParser> currentPayloadParser_;
};
}
|