summaryrefslogtreecommitdiffstats
blob: d3fed0b0249e4d976de9d34f5c2798f77ca7f0ce (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
#pragma once

#include <boost/shared_ptr.hpp>
#include <boost/signal.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <vector>

#include "Swiften/LinkLocal/LinkLocalSession.h"
#include "Swiften/JID/JID.h"

namespace Swift {
	class ConnectionFactory;
	class HostAddress;
	class String;
	class Element;
	class PayloadParserFactoryCollection;
	class PayloadSerializerCollection;
	class DNSSDService;

	class OutgoingLinkLocalSession : public LinkLocalSession {
		public:
			OutgoingLinkLocalSession(
					const JID& localJID,
					const JID& remoteJID,
					const String& hostname,
					int port,
					boost::shared_ptr<DNSSDService> resolver,
					PayloadParserFactoryCollection* payloadParserFactories, 
					PayloadSerializerCollection* payloadSerializers,
					ConnectionFactory* connectionFactory);

			const JID& getRemoteJID() const {
				return remoteJID_;
			}

			void start();

			void sendElement(boost::shared_ptr<Element> stanza);

		private:
			void handleElement(boost::shared_ptr<Element>);
			void handleStreamStart(const ProtocolHeader&);
			void handleHostnameResolved(const String& hostname, const boost::optional<HostAddress>& address);
			void handleConnected(bool error);

		private:
			bool resolving_;
			JID remoteJID_;
			String hostname_;
			int port_;
			boost::shared_ptr<DNSSDService> resolver_;
			std::vector<boost::shared_ptr<Element> > queuedElements_;
			ConnectionFactory* connectionFactory_;
	};
}