/* * Copyright (c) 2013-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma clang diagnostic ignored "-Wunused-private-field" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace Swift; PubSubParser::PubSubParser(PayloadParserFactoryCollection* parsers) : parsers(parsers), level(0) { } PubSubParser::~PubSubParser() { } void PubSubParser::handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes) { if (level == 1) { if (element == "items" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "create" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "publish" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "affiliations" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "retract" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "options" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "configure" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "default" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "subscriptions" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "subscribe" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "unsubscribe" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } if (element == "subscription" && ns == "http://jabber.org/protocol/pubsub") { currentPayloadParser = std::make_shared(parsers); } } if (level >= 1 && currentPayloadParser) { currentPayloadParser->handleStartElement(element, ns, attributes); } ++level; } void PubSubParser::handleEndElement(const std::string& element, const std::string& ns) { --level; if (currentPayloadParser) { if (level >= 1) { currentPayloadParser->handleEndElement(element, ns); } if (level == 1) { if (currentPayloadParser) { if (element == "options" && ns == "http://jabber.org/protocol/pubsub") { optionsPayload = std::dynamic_pointer_cast(currentPayloadParser->getPayload()); } else if (element == "configure" && ns == "http://jabber.org/protocol/pubsub") { configurePayload = std::dynamic_pointer_cast(currentPayloadParser->getPayload()); } else { getPayloadInternal()->setPayload(std::dynamic_pointer_cast(currentPayloadParser->getPayload())); } } currentPayloadParser.reset(); } if (level == 0) { if (std::shared_ptr create = std::dynamic_pointer_cast(getPayloadInternal()->getPayload())) { if (configurePayload) { create->setConfigure(configurePayload); } } if (std::shared_ptr subscribe = std::dynamic_pointer_cast(getPayloadInternal()->getPayload())) { if (optionsPayload) { subscribe->setOptions(optionsPayload); } } } } } void PubSubParser::handleCharacterData(const std::string& data) { if (level > 1 && currentPayloadParser) { currentPayloadParser->handleCharacterData(data); } }