summaryrefslogtreecommitdiffstats
blob: d144cbdb339cccffbcdb52ee031640ad0bb95202 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Parser/PayloadParsers/JingleReasonParser.h>

#include <Swiften/Base/Log.h>

namespace Swift {
	JingleReasonParser::JingleReasonParser() : level(0), parseText(false) {
		
	}
	
	void JingleReasonParser::handleStartElement(const std::string& element, const std::string&, const AttributeMap&) {
		if (level == 1) {
			if (element == "text") {
				parseText = true;
			} else {
				// reason type
				getPayloadInternal()->type = stringToReasonType(element);
			}
		}
		++level;
	}
	
	void JingleReasonParser::handleEndElement(const std::string& element, const std::string&) {
		--level;		
		if (element == "text") {
			parseText = false;
			getPayloadInternal()->text = text;
		}
	}
	
	void JingleReasonParser::handleCharacterData(const std::string& data) {
		if (parseText) {
			text += data;
		}
	}
	
	JinglePayload::Reason::Type JingleReasonParser::stringToReasonType(const std::string& type) const {
		if (type == "alternative-session") {
			return JinglePayload::Reason::AlternativeSession;
		} else if (type == "busy") {
			return JinglePayload::Reason::Busy;
		} else if (type == "cancel") {
			return JinglePayload::Reason::Cancel;
		} else if (type == "connectivity-error") {
			return JinglePayload::Reason::ConnectivityError;
		} else if (type == "decline") {
			return JinglePayload::Reason::Decline;
		} else if (type == "expired") {
			return JinglePayload::Reason::Expired;
		} else if (type == "failed-application") {
			return JinglePayload::Reason::FailedApplication;
		} else if (type == "failed-transport") {
			return JinglePayload::Reason::FailedTransport;
		} else if (type == "general-error") {
			return JinglePayload::Reason::GeneralError;
		} else if (type == "gone") {
			return JinglePayload::Reason::Gone;
		} else if (type == "incompatible-parameters") {
			return JinglePayload::Reason::IncompatibleParameters;
		} else if (type == "media-error") {
			return JinglePayload::Reason::MediaError;
		} else if (type == "security-error") {
			return JinglePayload::Reason::SecurityError;
		} else if (type == "success") {
			return JinglePayload::Reason::Success;
		} else if (type == "timeout") {
			return JinglePayload::Reason::Timeout;
		} else if (type == "unsupported-applications") {
			return JinglePayload::Reason::UnsupportedApplications;
		} else if (type == "unsupported-transports") {
			return JinglePayload::Reason::UnsupportedTransports;
		} else {
			return JinglePayload::Reason::UnknownType;
		}
	}
}