blob: 688798145a45f2abbb88f130a6018e077001fcaf (
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
  | 
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */
#pragma once
#include <boost/noncopyable.hpp>
#include <boost/shared_ptr.hpp>
#include <string>
#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 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 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_;
			boost::shared_ptr<PayloadParser> currentPayloadParser_;
	};
}
  |