diff options
author | Tarun Gupta <tarun1995gupta@gmail.com> | 2017-06-19 11:28:01 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2017-07-06 11:53:33 (GMT) |
commit | 610a2169757b578c6246c0d277f95a79695652ba (patch) | |
tree | 98cc8e92a786d4a06e7aa29ab3c52d73c22e4908 /Swiften/Parser/PayloadParsers/MIXLeaveParser.cpp | |
parent | ba67437900cfabb1ce9e115c0ec5029c76696b8b (diff) | |
download | swift-610a2169757b578c6246c0d277f95a79695652ba.zip swift-610a2169757b578c6246c0d277f95a79695652ba.tar.bz2 |
Adds MIXLeave Element, its Parser and Serializerswift-5.0alpha
License:
This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details.
Test-Information:
Added tests for MIXLeave Parser and Serializer based on examples in XEP 0369, which passes.
Tested on Ubuntu 16.04 LTS.
Change-Id: Ie9eb3341b23099de4dda2b9915d28115dbfe5837
Diffstat (limited to 'Swiften/Parser/PayloadParsers/MIXLeaveParser.cpp')
-rw-r--r-- | Swiften/Parser/PayloadParsers/MIXLeaveParser.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Swiften/Parser/PayloadParsers/MIXLeaveParser.cpp b/Swiften/Parser/PayloadParsers/MIXLeaveParser.cpp new file mode 100644 index 0000000..6330925 --- /dev/null +++ b/Swiften/Parser/PayloadParsers/MIXLeaveParser.cpp @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2017 Tarun Gupta + * Licensed under the simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#include <Swiften/Parser/PayloadParsers/MIXLeaveParser.h> + +#include <boost/optional.hpp> + +namespace Swift { + +MIXLeaveParser::MIXLeaveParser() : level_(0) { +} + +MIXLeaveParser::~MIXLeaveParser() { +} + +void MIXLeaveParser::handleStartElement(const std::string&, const std::string&, const AttributeMap& attributes) { + if (level_ == 0) { + if (auto attributeValue = attributes.getAttributeValue("channel")) { + if (auto jid = JID::parse(*attributeValue)) { + getPayloadInternal()->setChannel(*jid); + } + } + } + ++level_; +} + +void MIXLeaveParser::handleEndElement(const std::string&, const std::string&) { + --level_; +} + +void MIXLeaveParser::handleCharacterData(const std::string&) { + +} +} |