summaryrefslogtreecommitdiffstats
blob: af521b0728d430a32782a7bf802aa85c6fd8dabd (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
#include "Swiften/LinkLocal/LinkLocalConnector.h"

#include <boost/bind.hpp>

#include "Swiften/Network/Connection.h"
#include "Swiften/Network/ConnectionFactory.h"
#include "Swiften/Network/HostAddress.h"
#include "Swiften/Network/HostAddressPort.h"
#include "Swiften/LinkLocal/DNSSDService.h"

namespace Swift {

LinkLocalConnector::LinkLocalConnector(
		const JID& remoteJID,
		const String& hostname,
		int port,
		boost::shared_ptr<DNSSDService> resolver,
		boost::shared_ptr<Connection> connection) : 
			remoteJID_(remoteJID),
			hostname_(hostname),
			port_(port),
			resolver_(resolver),
			connection_(connection),
			resolving_(false) {
}

void LinkLocalConnector::connect() {
	resolving_ = true;
	resolver_->onHostnameResolved.connect(boost::bind(&LinkLocalConnector::handleHostnameResolved, boost::dynamic_pointer_cast<LinkLocalConnector>(shared_from_this()), _1, _2));
	resolver_->resolveHostname(hostname_);
}

void LinkLocalConnector::handleHostnameResolved(const String& hostname, const boost::optional<HostAddress>& address) {
	if (resolving_) {
		if (hostname == hostname_) {
			resolving_ = false;
			if (address) {
				connection_->onConnectFinished.connect(boost::bind(boost::ref(onConnectFinished), _1));
				connection_->connect(HostAddressPort(*address, port_));
			}
			else {
				onConnectFinished(false);
			}
		}
	}
}

void LinkLocalConnector::handleConnected(bool error) {
	onConnectFinished(error);
}

void LinkLocalConnector::queueElement(boost::shared_ptr<Element> element) {
	queuedElements_.push_back(element);
}


}