summaryrefslogtreecommitdiffstats
blob: 1a720a0fb1468d74e7dac73c0a47d2446e2bfdf6 (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
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * 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 "Swiften/Base/String.h"

namespace Swift {
	class DNSSDServiceID {
		public:
			static const char* PresenceServiceType;

			DNSSDServiceID(
				const String& name, 
				const String& domain, 
				const String& type = PresenceServiceType, 
				int networkInterface = -1) : 
					name(name), 
					domain(domain), 
					type(type), 
					networkInterface(networkInterface) {
			}

			bool operator==(const DNSSDServiceID& o) const {
				return name == o.name && domain == o.domain && type == o.type && (networkInterface != 0 && o.networkInterface != 0 ? networkInterface == o.networkInterface : true);
			}

			bool operator<(const DNSSDServiceID& o) const {
				if (o.name == name) {
					if (o.domain == domain) {
						if (o.type == type) {
							return networkInterface < o.networkInterface;
						}
						else {
							return type < o.type;
						}
					}
					else {
						return domain < o.domain;
					}
				}
				else {
					return o.name < name;
				}
			}

			const String& getName() const {
				return name;
			}

			const String& getDomain() const {
				return domain;
			}

			const String& getType() const {
				return type;
			}

			int getNetworkInterfaceID() const {
				return networkInterface;
			}

		private:
			String name;
			String domain;
			String type;
			int networkInterface;
	};
}