/* * Copyright (c) 2013 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 using namespace Swift; PubSubEventParser::PubSubEventParser(PayloadParserFactoryCollection* parsers) : parsers(parsers), level(0) { } PubSubEventParser::~PubSubEventParser() { } void PubSubEventParser::handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes) { if (level == 1) { if (element == "items" && ns == "http://jabber.org/protocol/pubsub#event") { currentPayloadParser = boost::make_shared(parsers); } if (element == "collection" && ns == "http://jabber.org/protocol/pubsub#event") { currentPayloadParser = boost::make_shared(parsers); } if (element == "purge" && ns == "http://jabber.org/protocol/pubsub#event") { currentPayloadParser = boost::make_shared(parsers); } if (element == "configuration" && ns == "http://jabber.org/protocol/pubsub#event") { currentPayloadParser = boost::make_shared(parsers); } if (element == "delete" && ns == "http://jabber.org/protocol/pubsub#event") { currentPayloadParser = boost::make_shared(parsers); } if (element == "subscription" && ns == "http://jabber.org/protocol/pubsub#event") { currentPayloadParser = boost::make_shared(parsers); } } if (level >= 1 && currentPayloadParser) { currentPayloadParser->handleStartElement(element, ns, attributes); } ++level; } void PubSubEventParser::handleEndElement(const std::string& element, const std::string& ns) { --level; if (currentPayloadParser) { if (level >= 1) { currentPayloadParser->handleEndElement(element, ns); } if (level == 1) { if (currentPayloadParser) { getPayloadInternal()->setPayload(boost::dynamic_pointer_cast(currentPayloadParser->getPayload())); } currentPayloadParser.reset(); } } } void PubSubEventParser::handleCharacterData(const std::string& data) { if (level > 1 && currentPayloadParser) { currentPayloadParser->handleCharacterData(data); } }