summaryrefslogtreecommitdiffstats
blob: 2ef1295392e7e81a80d445ee48a6c5177237fd41 (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
60
/*
 * 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 <vector>
#include <map>

#include "Swiften/Network/HostAddress.h"
#include "Swiften/Network/HostAddressPort.h"
#include "Swiften/Network/DomainNameResolver.h"
#include "Swiften/Network/DomainNameServiceQuery.h"
#include "Swiften/Network/DomainNameAddressQuery.h"
#include "Swiften/EventLoop/EventLoop.h"

namespace Swift {
	

	class StaticDomainNameResolver : public DomainNameResolver {
		public:
			typedef std::map<std::string, std::vector<HostAddress> > AddressesMap;
			typedef std::vector< std::pair<std::string, DomainNameServiceQuery::Result> > ServicesCollection;

		public:
			StaticDomainNameResolver(EventLoop* eventLoop);

			void addAddress(const std::string& domain, const HostAddress& address);
			void addService(const std::string& service, const DomainNameServiceQuery::Result& result);
			void addXMPPClientService(const std::string& domain, const HostAddressPort&);
			void addXMPPClientService(const std::string& domain, const std::string& host, int port);

			const AddressesMap& getAddresses() const {
				return addresses;
			}

			const ServicesCollection& getServices() const {
				return services;
			}

			bool getIsResponsive() const {
				return isResponsive;
			}

			void setIsResponsive(bool b) {
				isResponsive = b;
			}

			virtual boost::shared_ptr<DomainNameServiceQuery> createServiceQuery(const std::string& name);
			virtual boost::shared_ptr<DomainNameAddressQuery> createAddressQuery(const std::string& name);
			
		private:
			EventLoop* eventLoop;
			bool isResponsive;
			AddressesMap addresses;
			ServicesCollection services;
	};
}