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

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

#include "Swiften/JID/JID.h"
#include "Swiften/Network/Connection.h"

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

	class LinkLocalConnector : public boost::enable_shared_from_this<LinkLocalConnector> {
		public:
			LinkLocalConnector(
					const JID& remoteJID,
					const String& hostname,
					int port,
					boost::shared_ptr<DNSSDService> resolver,
					boost::shared_ptr<Connection> connection);

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

			void connect();
			void queueElement(boost::shared_ptr<Element> element);

			const std::vector<boost::shared_ptr<Element> >& getQueuedElements() const {
				return queuedElements_;
			}

			boost::shared_ptr<Connection> getConnection() const {
				return connection_;
			}

			boost::signal<void (bool)> onConnectFinished;

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

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